輸入yum install mysql-server
按Y繼續(xù)
安裝完成,設(shè)置開(kāi)機(jī)啟動(dòng)Mysql,輸入 chkconfig --levels 235 mysqld on
然后啟動(dòng)tomcat,輸入service mysqld start
啟動(dòng)完畢,然后登錄MYsql設(shè)置密碼
輸入set password for 'root'@'localhost' = password('12345678');
來(lái)設(shè)置密碼
至此,mysql安裝完畢!然后創(chuàng)建數(shù)據(jù)庫(kù),首先用show databases;查看數(shù)據(jù)庫(kù)
然后使用create database 數(shù)據(jù)庫(kù)名;
來(lái)創(chuàng)建數(shù)據(jù)庫(kù),
使用grant all privileges on 數(shù)據(jù)庫(kù)名.* to root@localhost identified by ' 密碼';
給剛創(chuàng)建的數(shù)據(jù)庫(kù)分配用戶
此處分配的是超級(jí)用戶root,下圖紅色區(qū)域?yàn)閿?shù)據(jù)庫(kù)名。
總結(jié)
以上所述是小編給大家介紹的在CentOS VPS上通過(guò)SSH安裝 MySQL的方法圖解,希望對(duì)大家有所幫助,如果大家有任何疑問(wèn)請(qǐng)給我留言,小編會(huì)及時(shí)回復(fù)大家的。在此也非常感謝大家對(duì)腳本之家網(wǎng)站的支持!