[root]# rpm -q glibc glibc-2.3.3-3vl1.3 |
[root]# ./scripts/mysql_install_db --user=mysql --datadir=/home/mysql Installing all prepared tables ./bin/mysqld: error while loading shared libraries: libstdc++.so.6: cannot openshared object file: No such file or directory ./bin/mysql_create_system_tables: line 766: 1500 パイプが切断されました cat <<END_OF_DATA use mysql; set table_type=myisam; 以下略 |
checking for MySQL support... yes checking for specified location of the MySQL UNIX socket... /var/lib/mysql checking for MySQL UNIX socket location... /var/lib/mysql checking for mysql_close in -lmysqlclient... no checking for mysql_error in -lmysqlclient... no configure: error: mysql configure failed. Please check config.log for more information. |
[root]# cd /usr/local [root]# mkdir mysql [root]# cd mysql [root]# tar zxvf mysql-standard-4.1.21-pc-linux-gnu-i686.tar.gz 結果は略 |
[root]# ln -snf mysql-standard-4.1.21-pc-linux-gnu-i686 mysql |
[root]# cd /usr/local/bin [root]# ln -sf ../mysql/mysql/bin/* . [root]# ls -l 合計 0 lrwxrwxrwx 1 root root 30 Aug 17 18:32 safe_mysqld -> ../mysql/mysql/bin/safe_mysqld* lrwxrwxrwx 1 root root 28 Aug 17 18:32 resolveip -> ../mysql/mysql/bin/resolveip* 以下略 |
[root]# groupadd -g 505 mysql [root]# useradd -u 505 -g mysql -s /bin/false -d /home/mysql mysql |
[client] port = 3306 socket = /tmp/mysql.sock # The MySQL server [mysqld] port = 3306 socket = /tmp/mysql.sock |
[root]# ./scripts/mysql_install_db --user=mysql --datadir=/home/mysql Installing all prepared tables Fill help 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: ./bin/mysqladmin -u root password 'new-password' ./bin/mysqladmin -u root -h vine32 password 'new-password' See the manual for more instructions. You can start the MySQL daemon with: cd . ; ./bin/mysqld_safe & You can test the MySQL daemon with the benchmarks in the 'sql-bench' directory: cd sql-bench ; perl run-all-tests Please report any problems with the ./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 |
[root]# cd /etc/rc.d/init.d [root]# ln -s /usr/local/mysql/mysql/support-files/mysql.server mysql-server [root]# chkconfig --add mysql-server [root]# chkconfig --list mysql-server mysql-server 0:off 1:off 2:on 3:on 4:on 5:on 6:off |
[root]# mysql-server start Starting MySQL SUCCESS! |
checking whether to enable LIBXML support... yes checking libxml2 install dir... no checking for xml2-config path... configure: error: xml2-config not found. Please check your libxml2 installation. |
[root]# apt-get install libxml-devel パッケージリストを読みこんでいます... 完了 依存情報ツリーを作成しています... 完了 以下のパッケージが新たにインストールされます: libxml-devel アップグレード: 0 個, 新規インストール: 1 個, 削除: 0 個, 保留: 0 個 344kB のアーカイブを取得する必要があります。 展開後に 1602kB のディスク容量が追加消費されます。 取得:1 http://www.ring.gr.jp 3.2/i386/devel libxml-devel 1.8.17-0vl4 [344kB] 344kB を 0s 秒で取得しました (513kB/s) 変更を適用しています... 準備中... ########################################### [100%] 1:libxml-devel ########################################### [100%] 完了 [root]# apt-get install libxml2-devel パッケージリストを読みこんでいます... 完了 依存情報ツリーを作成しています... 完了 以下のパッケージが新たにインストールされます: libxml2-devel アップグレード: 0 個, 新規インストール: 1 個, 削除: 0 個, 保留: 0 個 1499kB のアーカイブを取得する必要があります。 展開後に 7918kB のディスク容量が追加消費されます。 取得:1 http://www.ring.gr.jp 3.2/i386/devel libxml2-devel 2.6.15-0vl1 [1499kB] 1499kB を 1s 秒で取得しました (1364kB/s) 変更を適用しています... 準備中... ########################################### [100%] 1:libxml2-devel ########################################### [100%] 完了 |
configure --with-apxs2=/usr/local/apache2/bin/apxs --enable-zend-multibyte --with-mysql=/usr/local/mysql/mysql --enable-track-vars --enable-mbstring --enable-mbregex --with-png-dir=/usr/local/lib --with-jpeg-dir=/usr/local/lib --with-zlib-dir=/usr --with-zlib --with-gd --with-mysql-sock=/tmp |