Comments on Installing Apache2 With PHP5 And MySQL Support On Fedora 14 (LAMP)

Installing Apache2 With PHP5 And MySQL Support On Fedora 14 (LAMP) LAMP is short for Linux, Apache, MySQL, PHP. This tutorial shows how you can install an Apache2 webserver on a Fedora 14 server with PHP5 support (mod_php) and MySQL support.

2 Comment(s)

Add comment

Please register in our forum first to comment.

Comments

By: Simon Thomas

I'm sure I read somewhere that operating a service via

/etc/init.d/<service name> <command>

e.g.

/etc/init.d/httpd start

 has been deprecated and should no longer been used.

 Running

service <service name> <command>

e.g.

service httpd restart

 as root does the same thing in a non-deprecated way.

By: Marios Zindilis

Those who might want to get an idea on what the numbers mean in the command:

chkconfig --levels 235 httpd on

 can take a look at the Wikipedia article on runlevels. You might even discover that you need less runlevels there. See the section for your distribution specifically.