image
第一步:启动数据库,并输入 数据库的 登录用户名及密码;
1.启动数据库:

1.   启动命令    [root@localhost src]# systemctl  start  mariadb
2.   重启命令    [root@localhost src]# systemctl  restart  mariadb
3.   关闭命令    [root@localhost src]# systemctl  stop  mariadb
4.   设定开机自起 [root@localhost src]# systemctl  enable mariadb 
5.   关闭开机自起 [root@localhost src]# systemctl  disable mariadb 
6.   登录数据库,输入用户名及密码

mysql -u -p;
第二步:配置数据库权限
1.切换指定数据库,如mysql
image
切换至mysql数据库
image
2.修改数据库表
1)检查数据表
show tables;
2)查询user表中的host/root/password
image
3)将host=“localhost” 改为 “%”,这样操作是为了将本地ip可以访问的权限修改为 任意的ip都可以访问!
image
4)刷新数据库访问权限
image

第三步:配置防火墙策略
检查防火墙状态:
firewall-cmd --state
开机是否自动启动防火墙
systemctl disable firewalld.service
systemctl enable firewalld.service

手动开关闭防火墙
systemctl stop firewalld.service
systemctl start firewalld.service

第四步:主从库设置指令
129 主库
SHOW MASTER STATUS;

130 从库

CHANGE MASTER TO MASTER_HOST="192.168.126.129",
MASTER_PORT=3306,
MASTER_USER="root",
MASTER_PASSWORD="root",
MASTER_LOG_FILE="mysql-bin.000002",
MASTER_LOG_POS=245;

START SLAVE;

SHOW SLAVE STATUS;

STOP SLAVE;


qintian
4 声望0 粉丝

陌生人,当你看到这里说明你可能遇到难题了!或许有想要放弃、松懈的时候,但你要相信在某一领域潜心深耕,等熬过无人问津的日子,精彩终究会不期而至!最终再说一句:每一个奋斗路上的陌生人,不在于你做了多少“...