●MySQLインストール
useradd -M -o -r -d /var/lib/mysql -s /sbin/nologin -c "MySQL" -u 27 mysql
cd /usr/src
wget http://mysql.he.net/Downloads/mysql-4.0.24.tar.gz
tar -zxf mysql-4.0.24.tar.gz
cd /usr/src/mysql-4.0.24
./configure --with-charset=ujis -with-extra-charsets=all
--prefix=/usr --sysconfdir=/etc --libexecdir=/usr/sbin
--localstatedir=/var/lib/mysql
--with-unix-socket-path=/var/lib/mysql/mysql.sock
--enable-thread-safe-client
--enable-local-infile
--enable-assembler
--without-debug
--without-bench
--enable-large-files=yes
--enable-largefile=yes
--with-mysqld-user=mysql
--with-innodb --without-docs
make testdir=/usr/lib/mysql/mysql-test &&
make testdir=/usr/lib/mysql/mysql-test install
# make clean