没有合适的资源?快使用搜索试试~ 我知道了~
资源推荐
资源详情
资源评论



















cent7 离线 rpm 包安装 mariadb10.1-galera 集群
机器规划:mariadb1:192.168.27.143 mariadb2:192.168.27.144 mariadb3:192.168.27.145
1.三台机器先分别独立安装自己的数据库并设置 root 密码:123(都为 123)
mariadb1 机器:
[root@mariadb1 ~]# cat /etc/hosts
127.0.0.1 localhost localhost.localdomain localhost4 localhost4.localdomain4
::1 localhost localhost.localdomain localhost6 localhost6.localdomain6
192.168.27.143 mariadb1
192.168.27.144 mariadb2
192.168.27.145 mariadb3
[root@mariadb1 ~]# systemctl stop firewalld
[root@mariadb1 ~]# rz
上传包
[root@mariadb1 ~]# ls
mariadb-rpms-10.1.30.tar.gz
[root@mariadb1 ~]# tar -zxf mariadb-rpms-10.1.30.tar.gz
[root@mariadb1 ~]# ls
mariadb-rpms mariadb-rpms-10.1.30.tar.gz
[root@mariadb1 ~]# cd mariadb-rpms
[root@mariadb1 mariadb-rpms]# ls
boost-program-options-1.53.0-26.el7.x86_64.rpm MariaDB-10.1.30-centos73-x86_64-common.rpm
perl-DBI-1.627-4.el7.x86_64.rpm
galera-25.3.22-1.rhel7.el7.centos.x86_64.rpm MariaDB-10.1.30-centos73-x86_64-server.rpm
perl-IO-Compress-2.061-2.el7.noarch.rpm
jemalloc-3.6.0-1.el7.x86_64.rpm perl-Compress-Raw-Bzip2-2.061-3.el7.x86_64.rpm
perl-Net-Daemon-0.48-5.el7.noarch.rpm
lsof-4.87-4.el7.x86_64.rpm perl-Compress-Raw-Zlib-2.061-4.el7.x86_64.rpm
perl-PlRPC-0.2020-14.el7.noarch.rpm
MariaDB-10.1.30-centos73-x86_64-client.rpm perl-Data-Dumper-2.145-3.el7.x86_64.rpm
rsync-3.0.9-17.el7.x86_64.rpm
[root@mariadb1 mariadb-rpms]# rpm -ivh * --nodeps --force
[root@mariadb1 mariadb-rpms]# cd
[root@mariadb1 ~]# systemctl start mariadb
[root@mariadb1 ~]# systemctl enable mariadb
[root@mariadb1 ~]# systemctl status mariadb
● mariadb.service - MariaDB 10.1.30 database server
Loaded: loaded (/usr/lib/systemd/system/mariadb.service; enabled; vendor preset: disabled)
Drop-In: /etc/systemd/system/mariadb.service.d
└─migrated-from-my.cnf-settings.conf
Active: active (running) since Thu 2019-06-27 13:54:12 CST; 22s ago
接下来进行 MariaDB 的相关简单配置,并设置 root 登录密码:123,否则无密码即可登录,使用命令: mysql_secure_installation
[root@mariadb1 ~]# mysql_secure_installation #简单安全安装配置,回车
NOTE: RUNNING ALL PARTS OF THIS SCRIPT IS RECOMMENDED FOR ALL MariaDB
SERVERS IN PRODUCTION USE! PLEASE READ EACH STEP CAREFULLY!
In order to log into MariaDB to secure it, we'll need the current
password for the root user. If you've just installed MariaDB, and

you haven't set the root password yet, the password will be blank,
so you should just press enter here.
Enter current password for root (enter for none):
OK, successfully used password, moving on...
Setting the root password ensures that nobody can log into the MariaDB
root user without the proper authorisation.
Set root password? [Y/n] y
New password: 设置 root 密码:123,其他都是 y
Re-enter new password:
Password updated successfully!
Reloading privilege tables..
... Success!
By default, a MariaDB installation has an anonymous user, allowing anyone
to log into MariaDB without having to have a user account created for
them. This is intended only for testing, and to make the installation
go a bit smoother. You should remove them before moving into a
production environment.
Remove anonymous users? [Y/n] y
... Success!
Normally, root should only be allowed to connect from 'localhost'. This
ensures that someone cannot guess at the root password from the network.
Disallow root login remotely? [Y/n] y
... Success!
By default, MariaDB comes with a database named 'test' that anyone can
access. This is also intended only for testing, and should be removed
before moving into a production environment.
Remove test database and access to it? [Y/n] y
- Dropping test database...
... Success!
- Removing privileges on test database...
... Success!
Reloading the privilege tables will ensure that all changes made so far
will take effect immediately.
Reload privilege tables now? [Y/n] y
... Success!
Cleaning up...
All done! If you've completed all of the above steps, your MariaDB
installation should now be secure.
Thanks for using MariaDB!
[root@mariadb1 ~]# mysql -uroot -p123

MariaDB [(none)]> show databases;
+--------------------+
| Database |
+--------------------+
| information_schema |
| mysql |
| performance_schema |
+--------------------+
3 rows in set (0.00 sec)
MariaDB [(none)]> quit
mariadb2 机器:
[root@mariadb2 ~]# cat /etc/hosts
127.0.0.1 localhost localhost.localdomain localhost4 localhost4.localdomain4
::1 localhost localhost.localdomain localhost6 localhost6.localdomain6
192.168.27.143 mariadb1
192.168.27.144 mariadb2
192.168.27.145 mariadb3
[root@mariadb2 ~]# systemctl stop firewalld
[root@mariadb2 ~]# rz
上传包
[root@mariadb2 ~]# ls
mariadb-rpms-10.1.30.tar.gz
[root@mariadb2 ~]# tar -zxf mariadb-rpms-10.1.30.tar.gz
[root@mariadb2 ~]# ls
mariadb-rpms mariadb-rpms-10.1.30.tar.gz
[root@mariadb2 ~]# cd mariadb-rpms
[root@mariadb2 mariadb-rpms]# ls
boost-program-options-1.53.0-26.el7.x86_64.rpm MariaDB-10.1.30-centos73-x86_64-common.rpm
perl-DBI-1.627-4.el7.x86_64.rpm
galera-25.3.22-1.rhel7.el7.centos.x86_64.rpm MariaDB-10.1.30-centos73-x86_64-server.rpm
perl-IO-Compress-2.061-2.el7.noarch.rpm
jemalloc-3.6.0-1.el7.x86_64.rpm perl-Compress-Raw-Bzip2-2.061-3.el7.x86_64.rpm
perl-Net-Daemon-0.48-5.el7.noarch.rpm
lsof-4.87-4.el7.x86_64.rpm perl-Compress-Raw-Zlib-2.061-4.el7.x86_64.rpm
perl-PlRPC-0.2020-14.el7.noarch.rpm
MariaDB-10.1.30-centos73-x86_64-client.rpm perl-Data-Dumper-2.145-3.el7.x86_64.rpm
rsync-3.0.9-17.el7.x86_64.rpm
[root@mariadb2 mariadb-rpms]# rpm -ivh * --nodeps --force
[root@mariadb2 mariadb-rpms]# cd
[root@mariadb2 ~]# systemctl start mariadb
[root@mariadb2 ~]# systemctl enable mariadb
[root@mariadb2 ~]# systemctl status mariadb
● mariadb.service - MariaDB 10.1.30 database server
Loaded: loaded (/usr/lib/systemd/system/mariadb.service; enabled; vendor preset: disabled)
Drop-In: /etc/systemd/system/mariadb.service.d
└─migrated-from-my.cnf-settings.conf
剩余10页未读,继续阅读
资源评论


运维实战课程
- 粉丝: 1723
上传资源 快速赚钱
我的内容管理 展开
我的资源 快来上传第一个资源
我的收益
登录查看自己的收益我的积分 登录查看自己的积分
我的C币 登录后查看C币余额
我的收藏
我的下载
下载帮助


最新资源
资源上传下载、课程学习等过程中有任何疑问或建议,欢迎提出宝贵意见哦~我们会及时处理!
点击此处反馈



安全验证
文档复制为VIP权益,开通VIP直接复制
