安装Mariadb

使用yum安装

1 yum install mariadb-server.x86_64

设置开机启动和启动

1 # systemctl start mariadb
2 # systemctl enable mariadb
3 # systemctl status mariadb

进行安全设置

1 mysql_secure_installation

错误处理

连接局域网上的MySQL时报错

ERROR 1130 (HY000): Host '192.168.2.1' is not allowed to connect to this MySQL server

解决办法

在mysql所在机器上,进行授权。

登录MySQL

1 mysql -uroot -p

切换到mysql数据库

1 use mysql

授权

1 GRANT ALL PRIVILEGES ON *.* TO 'root'@'%';
2 FLUSH PRIVILEGES;

 

posted @ 2019-08-03 20:05  梦人亭  阅读(100)  评论(0编辑  收藏  举报