Comments on How to Install Nginx, PHP and MySQL (LEMP Stack) on OpenSUSE Leap 42.1

LEMP or Linux, Engine-x, MySQL, and PHP is a collection of software installed on the Linux operating system to get your PHP based web applications up and running on the fast Nginx web server. In this tutorial, I will show you how to install Nginx, MariaDB, and PHP-FPM on openSUSE leap 42.1. Then I will configure the OpenSUSE firewall with SuSEfirewall2 to allow access to the Nginx web server and show you how you can add a new virtual host configuration on the Nginx web server.

2 Comment(s)

Add comment

Please register in our forum first to comment.

Comments

By: savage

Great article...one issue with phpadmin, you need to add rights to php5--- chown -R nginx /var/lib/php5 (it´s written to wwrun so you´ll get errors)

 

By: Rudy Rockstar

It may be wise to change

/usr/bin/mysqladmin -u root password 'aqwe123'

to the more security conscious

/usr/bin/mysqladmin -u root password

The user would be prompted to enter password and confirmation and the password is not stored in command line history.