Comments on Installing Apache2 With PHP5 And MySQL Support On OpenSUSE 12.1 (LAMP)

Installing Apache2 With PHP5 And MySQL Support On OpenSUSE 12.1 (LAMP) 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.

1 Comment(s)

Add comment

Please register in our forum first to comment.

Comments

By: Sourav Mondal

Hello guys,

I have done my server (Open Suse 13.1) installation with those following comment.

Just execute one by one it will be install properly.

sudo zypper install mysql mysql-client mysql-community-server

chkconfig --add mysql

 

sudo systemctl enable mysql.service

sudo systemctl start mysql.service

sudo mysql_secure_installation

 

 

sudo zypper install apache2

chkconfig --add apache2

 

sudo systemctl enable apache2.service

sudo systemctl start apache2.service

 

sudo zypper install apache2-mod_php5

 

sudo zypper install http://download.opensuse.org/repositories/server:/php:/applications/openSUSE_13.1/noarch/phpPgAdmin-5.1-25.1.noarch.rpm

 

sudo zypper install vsftpd

 

sudo systemctl restart apache2.service