centos mysql安裝及配置
Mysql具有簡單易學(xué)、體積小等優(yōu)點(diǎn),深受編程開發(fā)初學(xué)者的喜愛。下面是學(xué)習(xí)啦小編跟大家分享的是centos mysql 安裝及配置,歡迎大家來閱讀學(xué)習(xí)。
centos mysql 安裝及配置
工具/原料
接入Internet的Centos計(jì)算機(jī)
安裝Mysql
1Centos 6.6下安裝Mysql很簡單,
yum list mysql-server
2當(dāng)只有一個(gè)時(shí)候就可以直接
yum install mysql-server
進(jìn)行安裝
3過程中選擇Y繼續(xù)安裝,最后安裝成功
設(shè)置Mysql的服務(wù)
1先啟動(dòng)Mysql服務(wù)
service mysqld start
2連接一下試一下,直接
mysql
然后
\q
關(guān)閉連接
3設(shè)置Mysql開機(jī)啟動(dòng)
chkconfig mysqld on
4開啟3306端口并保存
/sbin/iptables -I INPUT -p tcp --dport 3306 -j ACCEPT
/etc/rc.d/init.d/iptables save
修改密碼并設(shè)置遠(yuǎn)程訪問
1連接mysql數(shù)據(jù)庫
設(shè)置密碼
use mysql;
update user set password=password('密碼') where user='root';
flush privileges;
2設(shè)置Mysql遠(yuǎn)程訪問
grant all privileges on *.* to 'root'@'%' identified by '123456' with grant option;
解決Mysql亂碼問題
找一個(gè)配置文件,復(fù)制到/etc/目錄,命名為my.cnf
(有時(shí)候沒有my.cnf)
cp /usr/share/doc/mysql-server-5.1.73/my-medium.cnf /etc/my.cnf
vim my.cnf
在[client]和[mysqld]下面都添加上
default-character-set=utf8
3最后按Esc輸入
:wq
保存退出
centos mysql 安裝及配置相關(guān)文章: