Selasa, 21 Oktober 2008

Menginstall Wordpress Di Ubuntu

Install Wordpress di komputer local, system Ubuntu 8.04, bertujuan untuk latihan ngeblog bagi “neobie” wordpress seperti saya
Install apache, mysql, php
Masuk ke konsole sebagai root

# apt-get install apache2# apt-get install mysql# apt-get install php5# apt-get install php5-mysql# apt-get install unzip
Download paket wordpress
# wget http://wordpress.org/latest.zip
# cp latest.zip /var/www (kopi ke direktory web apache)
# cd /var/www
# unzip latest.zip
akan muncul direktory dari pengextrakan file wordpress tadi
# /var/www# lslatest.zip wordpress
masuk ke direktory wordpress
# cd wordpress
Pembuatan Database Mysql
# /var/www# mysql -u ”root” -pEnter password:Welcome to the MySQL monitor. Commands end with ; or \g.Your MySQL connection id is 8Server version: 5.0.51a-3ubuntu5.1 (Ubuntu)
Type ‘help;’ or ‘\h’ for help. Type ‘\c’ to clear the buffer.
mysql>
buat data base
mysql>create database wordpress;
membuat user untuk database wordpress
mysql> grant all on wordpress.* to root@localhost identified by ‘password’;
mysql> exit
kembali ke direktory wordpress
masuk ke folder wordress
# cd /var/www/wordpress
ganti file cp wp-config-sample.php menjadi wp-config.php
# cp cp wp-config-sample.php wp-config.php
edit file wp-config.php
# pico wp-config.php, dan ganti beberapa parameter seperti dibawah ini
simpan filenya, dan sekarang buka jendala internet/firefox dengan address http://localhost/wordpress
ikuti langkah instalasi sampai selesai

Tidak ada komentar: