Installing LAMP On Ubuntu
Installing LAMP On Ubuntu
I will show you how to install a LAMP system. LAMP stands for Linux, Apache, MySQL, PHP.Install Apache
To start off we will install Apache.1. Open up the Terminal (Applications > Accessories > Terminal).
2. Copy/Paste the following line of code into Terminal and then press enter:
sudo apt-get install apache2
Testing Apache
To make sure everything installed correctly we will now test Apache to ensure it is working properly.1. Open up any web browser and then enter the following into the web address:
http://localhost/
Install PHP
In this part we will install PHP 5.Step 1. Again open up the Terminal (Applications > Accessories > Terminal).
Step 2. Copy/Paste the following line into Terminal and press enter:
sudo apt-get install php5 libapache2-mod-php5
sudo /etc/init.d/apache2 restart
Test PHP
To ensure there are no issues with PHP let's give it a quick test run.Step 1. In the terminal copy/paste the following line:
sudo gedit /var/www/testphp.php
Step 2. Copy/Paste this line into the phptest file:
Step 4. Now open you're web browser and type the following into the web address:
http://localhost/testphp.php
Congrats you have now installed both Apache and PHP!
Install MySQL
To finish this guide up we will install MySQL. (Note - Out of Apache and PHP, MySQL is the most difficult to set up. I will provide some great resources for anyone having trouble at the end of this guide.)Step 1. Once again open up the amazing Terminal and then copy/paste this line:
sudo apt-get install mysql-server
gksudo gedit /etc/mysql/my.cnf
bind-address = 127.0.0.1
And change the 127.0.0.1 to your IP address. Step 3. This is where things may start to get tricky. Begin by typing the following into Terminal:
mysql -u root
mysql> SET PASSWORD FOR 'root'@'localhost' = PASSWORD('yourpassword');
(Make sure to change yourpassword to a password of your choice.) Step 4. We are now going to install a program called phpMyAdmin which is an easy tool to edit your databases. Copy/paste the following line into Terminal:
sudo apt-get install libapache2-mod-auth-mysql php5-mysql phpmyadmin
gksudo gedit /etc/php5/apache2/php.ini
Change this line:
;extension=mysql.so
To look like this:extension=mysql.so
Now just restart Apache and you are all set!sudo /etc/init.d/apache2 restart
jika ingin mereset password anda, buka web ini :
https://help.ubuntu.com/community/MysqlPasswordReset
Tidak ada komentar:
Posting Komentar