Displaying 3 results from an estimated 3 matches for "rreqhandler".
Did you mean:
pre_handler
2006 Feb 03
2
Infinite loop running Mod_R/Rapache
...o script to work correctly. I am running debian, the
latest build of R, apache 2 with prefork mpm, and the latest mod_r. Is
anyone else using this module successfully? I added:
LoadModule R_module mod_R.so
<Location /test/hello>
SetHandler r-handler
Rsource /var/www/html/test.R
RreqHandler handler
</Location>
to my http.conf and
test.R in /var/www/html is:
handler<-function(r){
apache.write(r,"<h1>Hello World!</h1>")
OK
}
When I start apache2, my /tmp directory fills with rtmp directories
until memory is exausted. The first time it created 32,0...
2005 Aug 02
0
[ANNOUNCE] mod_R: The R/Apache Integration Project
...rectives",package="RApache") once mod_R is installed
for a little more detail. Add something similar to this to the apache
config file:
LoadModule R_Module /path/to/mod_R.so
<Location /URL>
SetHandler r-handler
Rsource /path/to/R/code.R
RreqHandler function-name
Rlibrary library-name
</Location>
Also, libR.so _MUST_ be found in the shared library path as it is
linked to by mod_R, RApache and the rest of the packages containing
shared libraries. You can either set LD_LIBRARY_PATH like this:
$ export LD_LIBRA...
2005 Aug 02
0
[ANNOUNCE] mod_R: The R/Apache Integration Project
...rectives",package="RApache") once mod_R is installed
for a little more detail. Add something similar to this to the apache
config file:
LoadModule R_Module /path/to/mod_R.so
<Location /URL>
SetHandler r-handler
Rsource /path/to/R/code.R
RreqHandler function-name
Rlibrary library-name
</Location>
Also, libR.so _MUST_ be found in the shared library path as it is
linked to by mod_R, RApache and the rest of the packages containing
shared libraries. You can either set LD_LIBRARY_PATH like this:
$ export LD_LIBRA...