DebianでGeeklog用にMySqlを設定する方法です。
1.MySqlをインストールする
$ aptitude install mysql-server mysql-client php4-mysql
2.MySqlのrootユーザにパスワードを設定する
$ mysqladmin -u root password 'パスワード'
2.Geeklog用のデータベースを作る
$ mysql -u root -p Enter password: Welcome to the MySQL monitor. Commands end with ; or g. Your MySQL connection id is 10 to server version: 4.0.24_Debian-10sarge1-log Type 'help;' or 'h' for help. Type 'c' to clear the buffer. mysql> create database geeklog;
3.Geeklog用のMySqlユーザを作る
mysql> grant all privileges on geeklog.* to geeklog@localhost identified by 'パスワード'; Query OK, 0 rows affected (0.00 sec) mysql> quit Bye
4.接続を確認する
$ mysql -u geeklog -p -h localhost geeklog
以上