RApache配置问题

时间:2010-08-04 15:15:56

标签: configuration r rapache

我的系统管理员在我们的64位Solaris机箱上为我安装了RApache。我可以在此处访问RApacheInfo页面,表明该模块已成功安装。 httpd.conf中有以下条目:

<Directory /websites/zbroom>
  SetHandler r-script
  RHandler brew::brew
</Directory>

应该要求通过brew包的brew函数解析目录中的所有文件。从test page可以看出,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代码?

1 个答案:

答案 0 :(得分:0)

根据Dirk的建议,我发布了Google RApache group。似乎问题是配置不错,但Apache需要重新启动才能生效。叹了口气,至少修复很容易。