我的系统管理员在我们的 64 位 Solaris 机器上为我安装了RApache 。我这里可以访问RApacheInfo页面,说明模块安装成功。httpd.conf 中有以下条目:
<Directory /websites/zbroom>
SetHandler r-script
RHandler brew::brew
</Directory>
这应该需要通过brew包的 brew 函数来解析目录中的所有文件。从我的测试页面可以看出,R 代码被忽略了。没有抛出任何错误(Apache 日志中没有任何内容)。
这是测试代码:
<html><head><title>R test</title></head>
<body>
<p>here is some normal text</p>
<%=rnorm(100) %>
<% print(rnorm(100)) %>
<p>Between this text and the first text there should be some R output.</p>
</body>
</html>
我需要更改什么才能评估和打印 R 代码?