MysqlAB
http://www.mysql.com/
事前にグループとユーザーを作成
groupadd mysql
adduser -g mysql -s /bin/nologin mysql
passwd mysql
/usr/local/src にアーカイブをダウンロード後展開
cd /usr/local/src
tar xvfz mysql-x.xx.xx.tar.gz
cd mysql-x.xx.xx
./configure –with-charset=ujis -with-extra-charsets=all –with-mysqld-user=mysql –prefix=/usr/local/mysql
make
make install
初期化
/usr/local/mysql/bin/mysql_install_db –user=mysql
所有者変更
chown -R mysql /usr/local/mysql/var
chgrp -R mysql /usr/local/mysql/var
起動
/usr/local/mysql/bin/mysqld_safe –user=mysql &
※参考
停止: /usr/local/mysql/bin/mysqladmin shutdown -u root -p
実行ファイルのリンク作成
ln -s /usr/local/mysql/bin/mysql /usr/bin/mysql
実行
mysqlで
Welcome to the MySQL monitor. Commands end with ; or \g.
Your MySQL connection id is 2 to server version: x.x.xx
Type ‘help;’ or ‘\h’ for help. Type ‘\c’ to clear the buffer.
mysql>
と表示されればOK
自動起動
/etc/rc.d/rc.local に追記
/usr/local/mysql/bin/mysqld_safe –user=mysql &
rootパスワード設定
/usr/local/mysql/bin/mysqladmin -u root password ‘[PassWord]’