Loading

yum安装mysql-server

yum install mysql-server mysql
vi /etc/my.cnf
	[client]
	default-character-set=utf8
service mysqld start
chkconfig mysqld on
mysql
grant all privileges on *.* to root@'localhost' identified by 'root';
flush privileges;

 

posted @ 2019-05-05 09:11  LB477  阅读(148)  评论(0编辑  收藏  举报