2013年10月28日 星期一

2013年10月22日 星期二

Install LAMP on Ubuntu

Copy from http://www.howtoforge.com/ubuntu_lamp_for_newbies for note.

Install Apache

1. Open up the Terminal (Applications > Accessories > Terminal).
2. Type the following command in Terminal
sudo apt-get install apache2
3. The Terminal will then ask you for you're password, type it and then press enter.

Testing Apache

1. Open up any web browser and then enter the following into the web address:
http://localhost/












Install PHP

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
Step 3. In order for PHP to work and be compatible with Apache we must restart it. Type the following code in Terminal to do this:
sudo /etc/init.d/apache2 restart

Test PHP

Step 1. In the terminal copy/paste the following line:
sudo gedit /var/www/testphp.php
This will open up a file called phptest.php.
Step 2. Copy/Paste this line into the phptest file:
<?php phpinfo(); ?>
Step 3. Save and close the file.
Step 4. Now open you're web browser and type the following into the web address:
http://localhost/testphp.php
The page should look like this:
















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

It would tip you to set password for 'root' and continue the installing.














Step 2 (optional). In order for other computers on your network to view the server you have created, you must first edit the "Bind Address". Begin by opening up Terminal to edit the my.cnf file.
gksudo gedit /etc/mysql/my.cnf
Change the line
bind-address = 127.0.0.1
And change the 127.0.0.1 to your IP address.

Step 3 (optional). Login mysql and set password for root
mysql -u root -p
Following that copy/paste this line:
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
It would ask you to choice http server type and input mysql password to set config.

Now just restart Apache and you are all set!
sudo /etc/init.d/apache2 restart

2013年10月16日 星期三

Get web content by telnet

We can get http content by telnet.

1. telnet to host server.
    telnet www.yahoo.com 80
2. send request
    GET / HTTP/1.1
    Host: www.yahoo.com