VMware Images:
|
Installing Apache2 With PHP5 And MySQL Support On OpenSUSE 12.1 (LAMP)
|
Submitted by falko (Contact Author) (Forums) on Tue, 2012-03-06 20:46. :: SuSE | Web Server | Apache | MySQL | PHP
Installing Apache2 With PHP5 And MySQL Support On OpenSUSE 12.1 (LAMP)Version 1.0 LAMP is short for Linux, Apache, MySQL, PHP. This tutorial shows how you can install an Apache2 webserver on an OpenSUSE 12.1 server with PHP5 support (mod_php) and MySQL support. I do not issue any guarantee that this will work for you!
1 Preliminary NoteIn this tutorial I use the hostname server1.example.com with the IP address 192.168.0.100. These settings might differ for you, so you have to replace them where appropriate.
2 Installing MySQL 5First we install MySQL 5 like this: yast2 -i mysql mysql-client mysql-community-server Then we create the system startup links for MySQL (so that MySQL starts automatically whenever the system boots) and start the MySQL server: systemctl enable mysql.service To secure the MySQL installation, run: mysql_secure_installation Now you will be asked several questions: server1:~ # mysql_secure_installation Now your MySQL setup should be secured.
3 Installing Apache2Apache2 is available as an OpenSUSE package, therefore we can install it like this: yast2 -i apache2 Now configure your system to start Apache at boot time... systemctl enable apache2.service ... and start Apache: systemctl start apache2.service Now direct your browser to http://192.168.0.100, and you should see the Apache2 placeholder page (don't worry about the 403 error, this happens because there's no index file (e.g. index.html) in the document root directory): Apache's default document root is /srv/www/htdocs/ on OpenSUSE, and the configuration file is /etc/apache2/httpd.conf. Additional configurations are stored in the /etc/apache2/conf.d/ directory.
4 Installing PHP5We can install PHP5 and the Apache PHP5 module as follows: yast2 -i apache2-mod_php5 We must restart Apache afterwards: systemctl restart apache2.service
|





Recent comments
2 days 8 hours ago
2 days 17 hours ago
2 days 20 hours ago
2 days 21 hours ago
2 days 23 hours ago
3 days 45 min ago
3 days 2 hours ago
3 days 3 hours ago
3 days 19 hours ago
3 days 20 hours ago