views:

70

answers:

2

I want to uninstall rapache, make uninstall doesn't seem to do anything and a look at the rapache documentation and a google search turns up nothing. Any help would be great

+1  A: 

Just delete the file mod_R.so from /usr/lib/apache2/modules, if you're on ubuntu and using the supplied apache2 package. Otherwise you'll have to hunt for the modules directory where you installed apache.

That's it!

Jeff
+2  A: 

As Jeff said, find mod_R.so and delete it. You will also want to remove any RApache directives that you added to configuration files. I use a separate file, /etc/apache2/conf.d/rapache.conf, so I can just delete or comment out that file. Finally of course, you restart/reload apache2 (sudo /etc/init.d/apache2 restart).

neilfws