Do you want to host your own blog? It is easy.
mysql> grant all privileges on *.* to 'mtuser'@'localhost' identified by 'mtpasswd' with grant option;
mysql> quit;
We now need create database and tables. This time connect MySQL with the new account just created.
mysql> create database mt;
- Install Linux. e.g. Fedora Core 4 including Apache HTTP server, MySQL
- Download free award winning blog software from http://www.sixapart.com/movabletype/
- Open the tar.gz to /var/www/cgi-bin by cd /var/www/cgi-bin; tar -xzvf MT-x.y.z.tar.gz;
- Change the folder name for simplicity (Optional) by mv MT-x.y.z mt
- Setup MySQL
mysql> grant all privileges on *.* to 'mtuser'@'localhost' identified by 'mtpasswd' with grant option;
mysql> quit;
We now need create database and tables. This time connect MySQL with the new account just created.
mysql> create database mt;
- Move mt-static under mt folder to /var/www/html
- Config MT by editing mt-config.cgi. You can start it based on mt-config.cgi-original. Edit the cgi path and database information.
- Now start Apache server by /etc/init.d/httpd start
- Access MT from web http://localhost/cgi-bin/mt/mt-check.cgi to check your MT environments. http://localhost/cgi-bin/mt/mt.cgi will initialize the system.
- Login with username Melody and password Nelson. And you are in! Remember to change the username and password.
Comments
Post a Comment