To install WordPress blog system on Ubuntu 6.10 server with LAMP is super easy.
Let’s do the following steps to install it.
1) Download WordPress and unzip it.
2) Create a database on my MySQL server. I use Webmin to create it.
3) Rename the wp-config-sample.php file to wp-config.php.
4) Open wp-config.php and fill the MySQL information into it.

// ** MySQL settings ** //
define('DB_NAME', 'wordpress');
define('DB_USER', 'wordpress');
define('DB_PASSWORD', 'wordpresspassword');
define('DB_HOST', 'localhost');

5) Upload all filles to WWW folder.
Mine is /var/www/
6) Enter http://example.com/wp-admin/install.php to start installation script.
7) The final WordPress blog is here
I spend about 5 minutes to complete installation.

David Yin

David is a blogger, geek, and web developer — founder of FreeInOutBoard.com. If you like his post, you can say thank you here

Leave a Reply

Your email address will not be published. Required fields are marked *