使用yum安装mariadb
- yum -y install mariadb mariadb-server
- systemctl start mariadb
- systemctl enable mariadb
初始化配置mariadb
- mysql_secure_installation
重置密码
- 以安全模式进入mariadb
- systemctl status mariadb
- systemctl stop mariadb
- mysqld_safe --skip-grant-tables
- 新建一个ssh连接窗口,进入bash,连接数据库
- mysql -uroot -p
- 重置密码,退出mariadb数据库
- use mysql;
- update user set password=PASSWORD('123456') where user='root';
- update user set authentication_string=PASSWORD('123456') where user='root';
- flush privileges;
- quit
- 重启mariadb数据库,使用密码进入mariadb数据库
- systemctl restart mariadb
- mysql -uroot -p
查看mariadb进程是否正常
-
查看mariadb数据库的进程
ps aux | grep mysql
-
查看mariadb数据库的端口
ss -tnulp | grep 3306