※ssh設定などの説明は省略します。
- sshでxserverにログイン
-
$ find /opt/php-*/bin -type f -name 'php'
でphpのバージョンリストを検索
-
$mkdir $HOME/bin
でホームディレクトリ下にbinディレクトリを作成(既にある場合は省略)
-
$ln -s /opt/php-7.2.6/bin/php $HOME/bin/php
でシンボリックリンクを作成
-
$vi ~/.bash_profile
をvi等で開き、最下行に
export PATH=$HOME/bin:$PATH
を追加
-
$ source ~/.bash_profile
で反映
Laravelでcomposerを使用する際に必要でした。