美文网首页生信linux
linux服务器中安装Rstudio-Server教程

linux服务器中安装Rstudio-Server教程

作者: 小杜的生信筆記 | 来源:发表于2020-02-10 11:53 被阅读0次

    时间:2020年2月10日
    前言:下载新买了一台腾讯云的服务器,近一天时间进行配置成基础的生信分析的机子,看到在服务器上可以安装网页的Rstudio-Server,出于好奇以及,因此在网上查了教程,根据大神们的教程走一遍流程,真的很香哦!

    1. 在新服务器上新建一个用户

    #新建用户
    sudo useradd kanghua
    # 设置密码
    sudo passwd *密码*
    

    2. 安装R版本

    使用yum search 寻找R的版本

    yum list |grep "^R"
    R.x86_64                                               
    R-RInside.x86_64                                            
    R-RInside-devel.x86_64                                    
    R-RInside-examples.x86_64            
    

    3. 安装R

    yum install -y R.x86_64
    

    4. 下载及安装网页版的Rstudio-server

    到官网下载最新版本:https://www.rstudio.com/products/rstudio/download-server/

    wget https://download2.rstudio.org/server/centos6/x86_64/rstudio-server-rhel-1.2.5033-x86_64.rpm
    yum install -y rstudio-server-rhel-1.2.5033-x86_64.rpm
    

    5. 开启8787端口

    这里直接使用基因学苑:通哥的安装办法

    systemctl enable rstudio-server.service
    systemctl start rstudio-server.service
    systemctl status rstudio-server
    firewalld
    firewall-cmd --permanent --add-port=8787/tcp
    firewall-cmd --permanent --add-port=8787/udp
    firewall-cmd --reload
    

    配置设后重启Rstudio-server,使用rstudio-server restart重启服务,没有任何信息就表示安装成功了。
    还可以使用rstudio-server verify-installation来验证,出现

    Server is running and must be stopped before running verify-installation ## 表示安装成功。
    

    6. 使用浏览器进行登录访问

    IP为:http://<服务器ip>:8787

    进入登录界面

    image.png

    输入用户及密码即可

    image.png

    进入访问界面,即可操作,操作与win版本一致,没有区别

    7. R中一些有帮助的命令

    R.home() ## 查看R的安装目录
    R.Version()[13] ## 查看R版本
    Sys.getenv("R_HOME")
    .Library ##查看lib位置
    .libPaths() ##查看lib位置
    

    参考:
    基因学苑-通哥
    简书中文章

    相关文章

      网友评论

        本文标题:linux服务器中安装Rstudio-Server教程

        本文链接:https://www.haomeiwen.com/subject/bmcaxhtx.html