タイトル | : Mysql |
記事No | : 207 |
投稿日 | : 2005/04/28(Thu) 17:44 |
投稿者 | : Linux初心者 |
お世話になっております。Linux初心者です。 今度はMySQLのエラーです。 ---------------------------------- $ su # useradd mysql # su mysql $ tar -zxvf mysql-3.23.52.tar.gz $ cd mysql-3.23.52/ $ ./configure --prefix=/usr/local/mysql --with-charset=ujis --with-extra-charsets=all --with-mysqld-user=mysql --without-bench --localstatedir=/home/mysql/data $ make $ su # make install ---------------------------------------- 以下のコマンドでインストールしました コンパイルなどにエラーは見られなかったのですが、、
.bash_profileに ------------------------------------- PATH=$PATH:/usr/local/mysql/bin export MANPATH=$MANPATH:/usr/local/mysql/man ------------------------------------- を記述し $source .bash_profile $/usr/local/mysql/bin/mysql_install_db --user=mysql install_dbのコマンドを打ってみると ---------------------------------------------------------- 時間: /usr/local/mysql/libexec/mysqld: Shutdown Complete
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 www.xxx.jp password 'new-password ' See the manual for more instructions.
NOTE: If you are upgrading from a MySQL <= 3.22.10 you should run the /usr/local/mysql/bin/mysql_fix_privilege_tables. Otherwise you will not be able to use the new GRANT command!
You can start the MySQL daemon with: cd /usr/local/mysql ; /usr/local/mysql/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 /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 https://order.mysql.com ----------------------------------------------------------- このコマンドをみたいなことが書いてあるようなので打ってみると /usr/local/mysql/bin/mysqladmin -u root password 'xxxxx' ----------------------------------------------------------- /usr/local/mysql/bin/mysqladmin: connect to server at 'localhost' failed error: 'Can't connect to local MySQL server through socket '/tmp/mysql.sock' (2) ' Check that mysqld is running and that the socket: '/tmp/mysql.sock' exists! ----------------------------------------------------------- /tmp/mysql.sock は存在している!といわれました /tmp/mysql.sockを探してみると見当たりません。 色々検索にかけて見てるのですが、mysqldを起動〜〜が多く サイトがあまり見つかりません。 どうか皆様のお力をお貸し下さい。
|