linux系統下安裝mysql
一.下載安裝裝包
1.MySQL-client-5.6.5_m8-1.linux2.6.i386.rpm
2.MySQL-server-5.6.5_m8-1.linux2.6.i386.rpm
二.開始安裝
1)安裝服務器端
在有兩個rmp文件的目錄下運行如下命令:
[root@localhost mysql]# rpm -ivh MySQL-server-5.6.5_m8-1.linux2.6.i386.rpm
顯示如下信息。
warning: MySQL-server-5.6.5_m8-1.linux2.6.i386.rpm: V3 DSA signature: NOKEY, key ID 5072e1f5 www.2cto.com
Preparing... ########################################### [100%]
1:MySQL-server ########################################### [100%]
。。。。。。(省略顯示)
/usr/bin/mysqladmin -u root password 'new-password'
/usr/bin/mysqladmin -u root -h test1 password 'new-password'
。。。。。。(省略顯示)
Starting mysqld daemon with databases from /var/lib/mysql
如出現如上信息,服務端安裝完畢。測試是否成功可運行netstat看Mysql端口是否打開,如打開表示服務已經啟動,安裝成功。Mysql默認的端口是3306。
啟動mysql
[root@localhost mysql]# /etc/init.d/mysql start
查看3306端口是否開啟
[root@localhost mysql]# netstat -nat
www.2cto.com
2)安裝客戶端
運行如下命令:
[root@test1 local]# rpm -ivh MySQL-client-5.6.5_m8-1.linux2.6.i386.rpm
warning:MySQL-client-5.6.5_m8-1.linux2.6.i386.rpm: V3 DSA signature: NOKEY, key ID 5072e1f5
Preparing... ########################################### [100%]
1:MySQL-client ########################################### [100%]
顯示安裝完畢。
三.登錄mysql
[root@localhost mysql]# mysql
Welcome to the MySQL monitor. Commands end with ; or \g.
Your MySQL connection id is 1 to server version: 4.0.16-standard
Type 'help;' or '\h' for help. Type '\c' to clear the buffer.
mysql>
出現了“mysql>”提示符,恭喜你,安裝成功!