0


Centos7,漫谈MySQL权限安全

5.配置hacluster账户密码

安装软件包的时候会自动创建一个hacluster账户,它的密码是禁用的。这个用户用于群集间通信的身份验证

必须在每个节点上设置密码以启用此账户。

[root@rs1 ~]# echo “a” | passwd --stdin hacluster

Changing password for user hacluster.

passwd: all authentication tokens updated successfully.

[root@rs2 ~]# echo “a” | passwd --stdin hacluster

Changing password for user hacluster.

passwd: all authentication tokens updated successfully.

6.集群及Pacemaker配置文件

群集的创建

1认证组成集群的节点

2配置和同步集群节点

3在集群节点中启动集群服务

1认证组成集群的节点

在任意一个节点上验证所有的节点

使用前面设置的hacluster账户

注意iptables规则

语法:pcs cluster auth node1 node2 noden -u username -p passwd

例:[root@rs1 ~]# pcs cluster auth rs1 rs2

Username: hacluster

Password:

rs1: Authorized

rs2: Authorized

2配置和同步集群节点

语法:pcs cluster setup [–start] [–local] --name cluster_name node1 node2 noden…

创建集群配置文件可以手动创建

[root@rs1 ~]# cd /etc/corosync/a

[root@rs1 corosync]# cat corosync.conf.example

也可以利用pcs setup 自动创建群集配置文件

[root@rs1 corosync]# pcs cluster setup --name cluster1 rs1 rs2

[root@rs1 corosync]# pwd

/etc/corosync

[root@rs1 corosync]# ls

corosync.conf corosync.conf.example.udpu uidgid.d

corosync.conf.example corosync.xml.example

3在集群节点中启动集群服务

语法:pcs cluster start [–all] [node1] [node2] […]

启动群集节点(也会同时启动pacemaker和corosync)

[root@rs1 corosync]# pcs cluster start --all

rs1: Starting Cluster (corosync)…

rs2: Starting Cluster (corosync)…

rs1: Starting Cluster (pacemaker)…

rs2: Starting Cluster (pacemaker)…

查看群集状态

[root@rs1 corosync]# pcs status

Cluster name: cluster1

WARNINGS:

No stonith devices and stonith-enabled is not false

Stack: corosync

Current DC: rs1 (version 1.1.20-5.el7-3c4c782f70) - partition with quorum

Last updated: Thu May 7 21:56:25 2020

Last change: Thu May 7 21:54:40 2020 by hacluster via crmd on rs1

2 nodes configured

0 resources configured

笔者福利

以下是小编自己针对马上即将到来的金九银十准备的一套“面试宝典”,不管是技术还是HR的问题都有针对性的回答。

有了这个,面试踩雷?不存在的!

回馈粉丝,诚意满满!!!

![](https://upload-images.jianshu.io/upload_images/13465705-035ef7d211a21fd9.png?imageMogr2/auto-orient/strip%7CimageView2/2/w/12 需要zi料+ 绿色徽【vip1024b】



ogr2/auto-orient/strip%7CimageView2/2/w/12 需要zi料+ 绿色徽【vip1024b】

[外链图片转存中…(img-tTheanEB-1710345641805)]
[外链图片转存中…(img-xllAAkmi-1710345641806)]
[外链图片转存中…(img-3NBlNgZb-1710345641806)]

标签: mysql 安全 数据库

本文转载自: https://blog.csdn.net/m0_60721695/article/details/136695210
版权归原作者 高工程序猿 所有, 如有侵权,请联系我们删除。

“Centos7,漫谈MySQL权限安全”的评论:

还没有评论