Installing NGINX, PHP and MYSQL on Linux Mint 9
For Development purposes, I try to install NGINX, PHP and MYSQL on My Linux Mint 9. Following instruction on HowToForge Site , bellow are all steps I made to install NGINX, PHP and MYSQL: (All commands, need root privilege, and run from terminal) 1. run "apt-get install mysql-server mysql-client" to install MySql server and client. And you will be asked to provide root password, at the end of this process. 2. run "apt-get install nginx" to install Nginx 3. run "/etc/init.d/nginx start" to start Nginx 4. go to your browser and open http://localhost, then you will see "Welcome to nginx!" page. It means that nginx is running successfully. 5. run "update-rc.d nginx defaults" to make nginx start at boot time. 6. run "apt-get install php5-cgi php5-mysql php5-curl php5-gd php5-idn php-pear php5-imagick php5-imap php5-mcrypt php5-memcache php5-mhash php5-ming php5-pspell php5-recode php5-snmp php5-sqlite php5-tidy php5-xmlrpc php5...