Instalasi Wordpress
Install Wordpress in Ubuntu By: Onno W. Purbo
- apt-get install libmysqlclient15-dev
- apt-get install libphp-adodb
- apt-get install libgd2-xpm libgd2-xpm-dev
- apt-get install php5-mysql
- apt-get install php5-gd
- apt-get install php5-curl
- apt-get install php-image-graph php-image-canvas php-pear
- cp wordpress-2.1.1.tar.gz /var/www/
- cd /var/www
- tar zxvf wordpress-2.1.1.tar.gz
- cd /var/www/wordpress
- cp wp-config-sample.php wp-config.php
- vi wp-config.php
define('DB_NAME', 'wordpress'); define('DB_USER', 'wordpress'); define('DB_PASSWORD', 'wordpress'); define('DB_HOST', 'localhost');
mysql
mysql> SET PASSWORD FOR root@localhost=PASSWORD('password');
Alternatively
- mysql -u root -p
Enter password: mysql> create database wordpress; mysql> grant INSERT,SELECT on root.* to wordpress@localhost; mysql> SET PASSWORD FOR wordpress@localhost=PASSWORD('password_from_wordpress.conf'); mysql> grant CREATE, INSERT, SELECT, DELETE, UPDATE on wordpress.* to wordpress@localhost; mysql> grant CREATE, INSERT, SELECT, DELETE, UPDATE on wordpress.* to wordpress; mysql> exit
Web Access http://localhost/wordpress install.php First Step Weblog title Your e-mail Second admin 633615 wp-login.php