設置R & RStudio服務器& Amazon EC2上的閃亮(服務器)很簡單,請參閱https://blogs.aws.amazon.com/bigdata/post/Tx3IJSB6BMHWZE5/Running-R-on-AWS。這將設置一個Amazon Linux實例(RedHat/CentOS)。Amazon EC2上的R(RedHat/Centos實例)
當指定在 「步驟3:配置實例詳細信息」 以下細節 - > 「高級詳細信息」,R & RStudio被自動安裝:
#!/bin/bash
#install R
yum install -y R
#install RStudio-Server
wget https://download2.rstudio.org/rstudio-server-rhel-0.99.903-x86_64.rpm
yum install -y --nogpgcheck rstudio-server-rhel-0.99.903-x86_64.rpm
#install shiny and shiny-server
R -e "install.packages('shiny', repos='http://cran.rstudio.com/')"
wget https://download3.rstudio.org/centos5.9/x86_64/shiny-server-1.4.2.786-rh5-x86_64.rpm
yum install -y --nogpgcheck shiny-server-1.4.2.786-rh5-x86_64.rpm
#add user(s)
useradd username
echo username:password | chpasswd
然而,安裝ř版本已過期(即R 3.2.5)。 如何更改此命令以確保安裝最新的R版本?
是否必須是RH/CentOS的? –
download2.rstudio.org上沒有看到任何大於0.99.903的內容 此頁面還有:https://www.rstudio.com/products/rstudio/download-server/ 顯示通過指定的URL下載的版本是最新的一個。 你確定你的R已經過時了嗎? –
我想知道RH/Centos,因爲它是默認的Amazon AMI,並且因爲預裝了Java之類的東西而很方便。 – majom