[Zope] Newbie question

Patrick Phalen zope@teleo.net
Mon, 27 Dec 1999 14:14:32 -0800


[CURTIS David, on Mon, 27 Dec 1999]

:: I have decided to use Zserve instead of Apache,  I am new to Linux
and do not know how to remove Apache.  I have tried rpm -e
apache(version).rpm .


It's rpm -e apache(version)   (no .rpm)

However, you don't need to uninstall apache unless you're short on disk
space. You might decide later you need it. Instead, you can turn off the
firing up of the httpd daemon.

Read /etc/inittab to confirm your default runlevel (3 or 5).

From the shell:

% /bin/su -
% cd /etc/rc.d/rc3.d
% ls
% mv S85httpd K85httpd (or whatever number httpd has)
and/or:
% cd ../rc5.d and do the same thing

When you reboot, Apache will be dormant. Or else, you can:
% /sbin/init 1
% /sbin/init 3 (or 5)