Getting started with apache2 php5 and mysql5 in ubuntu
These are the set of scripts I executed in ubuntu to install the ff: 1.) apache2 2.) php5 3.) mysql5 >sudo apt-get install apache2 /...
https://www.czetsuyatech.com/2012/10/ubuntu-getting-started-with-apache-php-mysql.html
These are the set of scripts I executed in ubuntu to install the ff:
1.) apache2
2.) php5
3.) mysql5
1.) apache2
2.) php5
3.) mysql5
>sudo apt-get install apache2 //installs in /etc/apache2 >sudo apt-get install php5 //installs in /etc/php5 >sudo apt-get install libapache2-mod-php5 php5-curl >sudo apt-get mysql-server //installs in /etc/mysql >sudo apt-get install php5-mysql //install mysql and mysqli >sudo service apache2 restart
Post a Comment