Ubuntu Server下搭建R语言服务器RApache(3)

R CMD build .(注意大小写)
 
成功后会生成一个压缩文件,test_1.0.tar.gz

Ubuntu Server下搭建R语言服务器RApache

然后执行
 
R CMD checktest_1.0.tar.gz
 
如果会出现以下信息(我在桌面版的Ubuntu的时候没有出现,有server版的时候出现了)
 
 
 
* checking PDF version of manual ... WARNING
 
LaTeX errors when creating PDF version.
 
就执行以下命令,安装一个东西
 
 
 
apt-get install texlive-latex-base
 
 
 
apt-get install texlive-latex-recommended
 
 
 
apt-get install texlive-latex-extra
 
 
 
apt-get install texlive-fonts-recommended
 
apt-get install texlive-fonts-extra
 
安装完成后,再执行上面那个命令。
 
如果没有问题,就执行
 
 
 
R CMD INSTALL test_1.0.tar.gz

Ubuntu Server下搭建R语言服务器RApache

安装成功后,我们还要配置一下apache
 
打开apache下面的httpd.conf,加上以下配置
 
 
 
<IfModule mod_R.c>
 
      <Location /RTest>
 
            SetHandler r-handler
 
            RHandler test::test_fn
 
        </Location>
 
</IfModule>
 
加入成功,启动apache
 
service apache2 start,如果启动没有问题,就打开浏览器
 
输入
 
如果出现了
 [1] "Hello World"
几个字,就说明你的RApache已经搭建成功了。
 
下面再给出相关RApache搭建,配置的链接

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:http://www.heiqu.com/731eaa7d0291fcf4c107b800aac283d4.html