【MySQL】Linux 5.1作業系統安裝成功之後配置MySQL資料庫過程

secooler發表於2009-06-24
博文目的:安裝完Linux作業系統後,明明在安裝過程中選擇了MySQL元件,但是怎麼就是進入不到MySQL資料庫中呢?OK,普及工作開始。
這裡我最新安裝的作業系統版本為:
[root@testdb ~]# cat /etc/redhat-release
Red Hat Enterprise Linux Server release 5.1 (Tikanga)

1.複製 my.cnf
[root@testdb ~]# cp /usr/share/doc/mysql-server-5.0.22/my-medium.cnf /etc/my.cnf

2.初始化資料庫
/usr/bin/mysql_install_db --user=mysql

3.啟動 MySQL 服務
/usr/bin/mysqld_safe --user=mysql &

4.停止 MySQL 服務
/usr/bin/mysqladmin shutdown

5.設定 MySQL 服務開機自啟動
# cp mysql.server /etc/rc.d/init.d/mysqld
設定使mysql每次啟動都能自動執行
# chkconfig --add mysqld
# chkconfig --level 345 mysqld on
透過 service mysql start | stop | restart 管理 mysql 服務
# service mysqld start   //啟動mysqld服務
# service mysqld stop    //停止mysqld服務
# service mysqld restart //重啟mysqld服務

6.能夠進入到MySQL資料庫啦!
[root@testdb ~]# mysql
Welcome to the MySQL monitor.  Commands end with ; or \g.
Your MySQL connection id is 4 to server version: 5.0.22-log

Type 'help;' or '\h' for help. Type '\c' to clear the buffer.

mysql>

-- The End --

來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/519536/viewspace-607470/,如需轉載,請註明出處,否則將追究法律責任。

相關文章