LinuxでMySQL5.1インストールと設定

1.パッケージを解凍、インストール
tar zxvf mysql-5.1.50-linux-i686-glibc23.tar.gz
cp -rf mysql-5.1.50-linux-i686-glibc23 /usr/local/
cd /usr/local/
mv mysql-5.1.50-linux-i686-glibc23/ mysql

2.ユーザの追加
groupadd mysql
useradd -g mysql mysql
cd mysql/
cp support-files/my-medium.cnf /etc/my.cnf
sed -i 's/log-bin=mysql-bin/#log-bin=mysql-bin/g’ /etc/my.cnf
sed -i 's/binlog_format=mixed/#binlog_format=mixed/g’ /etc/my.cnf
sed -i 's/skip-locking/skip-locking/nmax_connections = 1000/nwait_timeout = 5/g’ /etc/my.cnf

3.データベースを初期化
scripts/mysql_install_db –user=mysql
4.mysqladminのインストール
cp support-files/mysql.server /etc/rc.d/init.d/mysqld
chmod 755 /etc/rc.d/init.d/mysqld
chkconfig –add mysqld
chkconfig mysqld on
service mysqld start
bin/mysqladmin -u root password startnews24

Source

Posted by arkgame