進度條

在AWS上安裝Ruby On Rails(二) - 安裝Rails

更新日期:

1. 用ssh進入console

 

2. 更新yum

$ sudo yum update -y 

 

3. 安裝postgresql 

$ sudo yum install postgresql96 postgresql96-server postgresql96-libs postgresql96-contrib postgresql96-devel -y

 

4. 安裝rvm

$ gpg2 --recv-keys 409B6B1796C275462A1703113804BB82D39DC0E3

$ \curl -L https://get.rvm.io | bash -s stable

$ source /home/ec2-user/.rvm/scripts/rvm

 

5. 安裝ruby

$ rvm list known

$ rvm install 2.4

$ rvm use 2.4 --default

 

6. 安裝nodejs

$ sudo yum install -y epel-release

$ sudo yum install -y --enablerepo=epel nodejs npm

 

7. 安裝rails

$ gem install rails --no-rdoc

 

8. 隨意一的地方產生rails 專案做測試

$ cd SomeWhere....

$ rails new newsite

 

9. 安裝文字瀏覽器做測試

$ sudo yum install lynx

 

10. 背景執行

$ rails s &

$ lynx 127.0.0.1:3000

 

11. 關掉背景執行rails

$ ps -aux | grep rails

$ kill 數字