Page 1 of 1

Start only apache at boot

PostPosted: 08. October 2004 11:20
by MrEddy
Hi,

i've follow the faq for starting xampp at boot and it works but i need only apache with ssl to start, how can i do it ?

thanks

PostPosted: 08. October 2004 11:42
by Oswald
Dear Eddy!

I assume the easiest way is to modify the XAMPP start script.

Edit /opt/lampp/lampp and find the following lines:

Code: Select all
                $0 startapache %
                $0 startmysql %
                $0 startftp %
                $iswebmin && $0 startwebmin %


Place a # in front of the startmysql and startftp lines. Like this:

Code: Select all
                $0 startapache %
                #$0 startmysql %
                #$0 startftp %
                $iswebmin && $0 startwebmin %


Thats all. The only problem (but I know no way around) is: after an upgrade this file gets overwritten and you need to make this changes again by yourself.

Greetings
Oswald

PostPosted: 08. October 2004 12:58
by MrEddy
thanks, it's work and for upgrading it's nothing, i will make this change again.
But just for infos, what is webmin ? the xampp interface ?

PostPosted: 08. October 2004 13:01
by Oswald
It's an GUI for Unix administration.

Greetings
Oswald