IBM eServer xSeries 235 |
SolarisTM 10 x86 5/08 |
Mysql-5.0.67
必要なソフトウェア:
インストール:
使用gcc: gcc-3.4.6
環境変数: こちら
作業ディレクトリを作成する。
$ mkdir /opt/src/mysql-5.0.67
作成した作業ディレクトリに移動する。
$ cd /opt/src/mysql-5.0.67
アーカイブをダウンロードする。
$ wget http://download.softagency.net/MySQL/Downloads/MySQL-5.0/mysql-5.0.67.tar.gz
解凍展開する。
$ tar xozf mysql-5.0.67.tar.gz
展開されたディレクトリに移動する。
最適化スクリプトを実行する。
$ ./configure \
--prefix=/usr/local/mysql \
--libexecdir=/usr/local/mysql/bin \
--with-extra-charsets=complex \
--enable-thread-safe-client \
--enable-local-infile \
--enable-shared=yes \
--with-innodb \
--with-charset=ujis \
--with-extra-charsets=all \
--with-mysqld-user=mysql \
--with-openssl=/usr/local/ssl \
--with-openssl-includes=/usr/local/ssl/include \
--with-openssl-libs=/usr/local/ssl/lib
もしもdataディレクトリをデフォルトの /usr/local/mysl/data 以外に
格納する場合(例:/export/mysl/)は、--datadir=/data/mysql を追加する。
コンパイルする。
SuperUseになる。
インストールする。
設定ファイルの見本をコピーする。
# cp /opt/src/mysql-5.0.67/mysql-5.0.67/support-files/my-medium.cnf /etc/my.cnf
設定から起動:
mysql グループを作成する。
mysql ユーザーを作成する。
# useradd -d /usr/local/mysql -g mysql -s /bin/false mysql
mysqlディレクトリのユーザーを変更する。
# chown -R mysql:mysql /usr/local/mysql
opensslのライブラリを/usr/local/lib/内にコピーしておく。
# cd /usr/local/ssl/lib
# cp -rfapu ./* /usr/local/lib/
DBをインストールする。
# /usr/local/mysql/bin/mysql_install_db --user=mysql
Installing MySQL system tables...
To start mysqld at boot time you have to copy
support-files/mysql.server to the right place for your system
PLEASE REMEMBER TO SET A PASSWORD FOR THE MySQL root USER !
To do so, start the server, then issue the following commands:
/usr/local/mysql/bin/mysqladmin -u root password 'new-password'
/usr/local/mysql/bin/mysqladmin -u root -h ns2 password 'new-password'
Alternatively you can run:
/usr/local/mysql/bin/mysql_secure_installation
which will also give you the option of removing the test
databases and anonymous user created by default. This is
strongly recommended for production servers.
See the manual for more instructions.
You can start the MySQL daemon with:
cd /usr/local/mysql ; /usr/local/mysql/bin/mysqld_safe &
You can test the MySQL daemon with mysql-test-run.pl
cd mysql-test ; perl mysql-test-run.pl
Please report any problems with the /usr/local/mysql/bin/mysqlbug script!
The latest information about MySQL is available on the web at
http://www.mysql.com
Support MySQL by buying support/licenses at http://shop.mysql.com
起動スクリプトをコピーする。
# cp /opt/src/mysql-5.0.67/mysql-5.0.67/support-files/mysql.server /etc/init.d/
コピーした起動スクリプトに実行権限を与える。
# chmod u+x /etc/init.d/mysql.server
ディレクトリを移動する。
OS起動時に自動起動するように、起動スクリプトのシンボリックリンクを作成する。
# ln -s ../init.d/mysql.server ./S99mysql.server
起動させる。
# /etc/rc2.d/S99mysql.server start