Railsアプリの移行テスト② RVM環境の構築
今回は、移行テスト用のユーザーアカウントを作成し、RVM環境を構築しました。
(1)RVMのインストール
※インストール方法
https://rvm.io/rvm/install
1)シングルユーザー(一般ユーザー)でRVMをインストール
①GPGキーをインストール
$ gpg --keyserver hkp://pool.sks-keyservers.net --recv-keys 409B6B1796C275462A1703113804BB82D39DC0E3 7D2BAF1CF37B13E2069D6956105BD0E739499BDB
→エラー発生
gpgkeys: HTTP fetch error 6: Couldn't resolve host 'pool.sks-keyservers.net'
gpg: no valid OpenPGP data found.
②代替方法でGPGキーをインストール
※参考情報
https://computingforgeeks.com/how-to-install-ruby-on-ubuntu-linux/
curl -sSL https://rvm.io/mpapis.asc | gpg2 --import -
curl -sSL https://rvm.io/pkuczynski.asc | gpg2 --import -
③RVMをダウンロードし、インストールスクリプト実行
$ curl -sSL https://get.rvm.io | bash -s stable --ruby
:
Downloading https://github.com/rvm/rvm/archive/1.29.12.tar.gz
Downloading https://github.com/rvm/rvm/releases/download/1.29.12/1.29.12.tar.gz.asc
:
Installing RVM to /home/test/.rvm/
:
Installation of RVM in /home/test/.rvm/ is almost complete:
:
* To start using RVM you need to run `source /home/test/.rvm/scripts/rvm`
in all your open shell windows, in rare cases you need to reopen all shell windows.
④初期設定スクリプトの実行
$ source /home/test/.rvm/scripts/rvm
⑤rvmコマンドの実行確認
$ rvm -v
rvm 1.29.12 (latest) by Michal Papis, Piotr Kuczynski, Wayne E. Seguin [https://rvm.io]
(2)RVMのアップグレード
$ rvm get stable
| 構成 | 07:31 | comments:0 | trackbacks:0 | TOP↑