|
Home > Archive > Open Enterprise Server Webserver > April 2005 > Starting Apache webserver AFTER nss
You are viewing an archived Text-only version of the thread.
To view this thread in it's original format and/or if you want to reply to
this thread please [click here]
| Author |
Starting Apache webserver AFTER nss
|
|
| Jason Long 2005-04-14, 5:45 pm |
| OES/Linux seems to be configured to start Apache before NSS. This is not
working, since my Apache document root is on an NSS volume. Apache fails
to start. Later, after the system is booted up, I have to start Apache
manually.
I've tried changing the order manually by renaming the symbolic link in
/etc/rc.d/rc5.d to a higher numbered script, but it keeps getting
renamed back to what it was by some automated process.
How can I configure Apache to start after NSS is up and running?
Jason Long
Messiah College
| |
| Steve Aitken 2005-04-14, 8:45 pm |
| Hi Jason,
You could try the following:
Edit the /etc/rc.d/apache2 file and change the required start line to
the following
# Required-Start: $local_fs $remote_fs $network novell-nss
and reinitialise the scripts by doing
chkconfig --del apache2
chkconfig --add apache2
chkconfig apache2 on
Cheers,
Steve
On Thu, 14 Apr 2005 19:28:52 GMT, Jason Long <jlong@messiah.edu>
wrote:
>OES/Linux seems to be configured to start Apache before NSS. This is not
>working, since my Apache document root is on an NSS volume. Apache fails
>to start. Later, after the system is booted up, I have to start Apache
>manually.
>
>I've tried changing the order manually by renaming the symbolic link in
>/etc/rc.d/rc5.d to a higher numbered script, but it keeps getting
>renamed back to what it was by some automated process.
>
>How can I configure Apache to start after NSS is up and running?
>
>
>Jason Long
>Messiah College
| |
| Jason Long 2005-04-18, 5:45 pm |
| Steve Aitken wrote:
> Hi Jason,
>
> You could try the following:
>
> Edit the /etc/rc.d/apache2 file and change the required start line to
> the following
>
> # Required-Start: $local_fs $remote_fs $network novell-nss
>
> and reinitialise the scripts by doing
>
> chkconfig --del apache2
> chkconfig --add apache2
> chkconfig apache2 on
>
> Cheers,
>
> Steve
>
Ok, that worked, but with the following modification:
Instead of
# Required-Start: $local_fs $remote_fs $network novell-nss
do
# Required-Start: $local_fs $remote_fs $network nss
Thanks!
[vbcol=seagreen]
> On Thu, 14 Apr 2005 19:28:52 GMT, Jason Long <jlong@messiah.edu>
> wrote:
>
>
Jason Long
Messiah College
| |
| Steve Aitken 2005-04-19, 5:45 pm |
| Thanks for the update Jason. Nice to know everything is working ok
now.
Cheers,
Steve
On Mon, 18 Apr 2005 18:44:58 GMT, Jason Long <jlong@messiah.edu>
wrote:
>Steve Aitken wrote:
>
>Ok, that worked, but with the following modification:
>Instead of
># Required-Start: $local_fs $remote_fs $network novell-nss
>
>do
># Required-Start: $local_fs $remote_fs $network nss
>
>
>Thanks!
>
>
>
>
>Jason Long
>Messiah College
|
|
|
|
|