MySQL安裝及後續配置

rpm -qa | grep mysql  檢查已安裝的mysql版本node

rpm -e --nodeps mysql-libs-5.1.71 卸載mysql

tar -zxvf MySQL.tar.gz 解壓sql

安裝順序:數據庫

client---servercentos

 

service mysql status 檢查狀態tcp

 

service mysql start 啓動ide

 

service mysql stop 關閉spa

 

mysql -u root -p 登陸server

 

初始密碼在/root/.mysql_secret下ip

 

set password=password('新密碼'); 改密碼

 

chkconfig --add mysql 加入到系統服務

 

chkconfig mysql on 自啓動

 

chkconfig 查看列表

 

 

 

grant all privileges on *.* to 'root帳號' @'%(ip地址,%表明全部)' identified by '密碼'; 開啓遠程鏈接

 

flush privileges; 生效

 

 

/sbin/iptables -I INPUT -p tcp --dport 3306 -j ACCEPT 開啓centos下的3306端口

/etc/rc.d/init.d/iptables save 保存

/etc/init.d/iptables status 查看狀態

 

MySQL中中文亂碼問題:

 

修改mysql配置文件/etc/my.cnf  (my.cnf路徑有時候不同,有時候是在/usr/下面,配置usr下的my.cnf頁能夠)

 

sudo cp /usr/local/mysql/support-files/my-medium.cnf /etc/my.cnf

sudo vi /etc/my.cnf

 

[client]部分加入:

default-character-set=utf8

 

[mysqld]部分加入:

character-set-server=utf8

 

 修改完畢以後再啓動mysql 並創建新的數據庫

 

想起來再補充

相關文章
相關標籤/搜索