首页 > 数据库 >mysql主备环境同机搭建

mysql主备环境同机搭建

时间:2024-09-05 22:25:50浏览次数:4  
标签:bin 00 -- root 主备 mysql 同机 u01

社区版下载地址:

downloads.mysql.com/archives/community/

原包

 

##解压
[root@prdb19 u01]# tar -xvf mysql-8.4.0-linux-glibc2.28-x86_64.tar.xz 
mysql-8.4.0-linux-glibc2.28-x86_64/bin/
mysql-8.4.0-linux-glibc2.28-x86_64/bin/myisam_ftdump
mysql-8.4.0-linux-glibc2.28-x86_64/bin/myisamchk
mysql-8.4.0-linux-glibc2.28-x86_64/bin/myisamlog

...

[root@prdb19 mysql-8.4.0-linux-glibc2.28-x86_64]# ll
total 292
drwxr-xr-x.  2 7161 31415   4096 Apr 10 16:28 bin
drwxr-xr-x.  2 7161 31415     38 Apr 10 16:28 docs
drwxr-xr-x.  3 7161 31415   4096 Apr 10 16:28 include
drwxr-xr-x.  6 7161 31415    200 Apr 10 16:28 lib
-rw-r--r--.  1 7161 31415 282183 Apr 10 14:26 LICENSE
drwxr-xr-x.  4 7161 31415     30 Apr 10 16:28 man
-rw-r--r--.  1 7161 31415    666 Apr 10 14:26 README
drwxr-xr-x. 28 7161 31415   4096 Apr 10 16:28 share
drwxr-xr-x.  2 7161 31415     77 Apr 10 16:28 support-files
[root@prdb19 mysql-8.4.0-linux-glibc2.28-x86_64]# 

##重命名目录
[root@prdb19 u01]# mv mysql-8.4.0-linux-glibc2.28-x86_64 mysql
[root@prdb19 u01]# ll
total 469884
drwxrwxr-x. 6 oracle oinstall        65 Aug 24 12:02 app
drwxr-xr-x. 9 root   root           129 Sep  5 16:18 mysql
-rw-r--r--. 1 root   root     481157440 Sep  5 16:17 mysql-8.4.0-linux-glibc2.28-x86_64.tar.xz
[root@prdb19 u01]# 

##添加用户
groupadd mysql
useradd -r -g mysql mysql

##拷贝实例目录
cp -rp mysql mysqla
cp -rp mysql mysqlb

mkdir -p /u01/mysql1/data
mkdir -p /u01/mysql2/data
chown -R mysql mysql2
chgrp -R mysql mysql2
chown -R mysql mysql1
chgrp -R mysql mysql1

创建两个实例区
bin/mysqld --initialize --user=mysql --basedir=/u01/mysqla --datadir=/u01/mysql1/data
bin/mysqld --initialize --user=mysql --basedir=/u01/mysqlb --datadir=/u01/mysql2/data



##详细如下:
[root@prdb19 mysqla]# bin/mysqld --initialize --user=mysql --basedir=/u01/mysqla --datadir=/u01/mysql1/data
2024-09-05T09:13:25.199866Z 0 [Warning] TIMESTAMP with implicit DEFAULT value is deprecated. Please use --explicit_defaults_for_timestamp server option (see documentation for more details).
2024-09-05T09:13:25.399705Z 0 [Warning] InnoDB: New log files created, LSN=45790
2024-09-05T09:13:25.431720Z 0 [Warning] InnoDB: Creating foreign key constraint system tables.
2024-09-05T09:13:25.490057Z 0 [Warning] No existing UUID has been found, so we assume that this is the first time that this server has been started. Generating a new UUID: 1b422e80-6b67-11ef-a527-08002739e9dc.
2024-09-05T09:13:25.492700Z 0 [Warning] Gtid table is not ready to be used. Table 'mysql.gtid_executed' cannot be opened.
2024-09-05T09:13:27.169740Z 0 [Warning] A deprecated TLS version TLSv1 is enabled. Please use TLSv1.2 or higher.
2024-09-05T09:13:27.169752Z 0 [Warning] A deprecated TLS version TLSv1.1 is enabled. Please use TLSv1.2 or higher.
2024-09-05T09:13:27.171928Z 0 [Warning] CA certificate ca.pem is self signed.
2024-09-05T09:13:28.180157Z 1 [Note] A temporary password is generated for root@localhost: kbsn7VkqU:Vs


[root@prdb19 mysqlb]# bin/mysqld --initialize --user=mysql --basedir=/u01/mysqla --datadir=/u01/mysql2/data
2024-09-05T09:27:40.542702Z 0 [Warning] TIMESTAMP with implicit DEFAULT value is deprecated. Please use --explicit_defaults_for_timestamp server option (see documentation for more details).
2024-09-05T09:27:40.842853Z 0 [Warning] InnoDB: New log files created, LSN=45790
2024-09-05T09:27:40.881982Z 0 [Warning] InnoDB: Creating foreign key constraint system tables.
2024-09-05T09:27:40.956218Z 0 [Warning] No existing UUID has been found, so we assume that this is the first time that this server has been started. Generating a new UUID: 1927f53f-6b69-11ef-97fd-08002739e9dc.
2024-09-05T09:27:40.959594Z 0 [Warning] Gtid table is not ready to be used. Table 'mysql.gtid_executed' cannot be opened.
2024-09-05T09:27:42.467829Z 0 [Warning] A deprecated TLS version TLSv1 is enabled. Please use TLSv1.2 or higher.
2024-09-05T09:27:42.467842Z 0 [Warning] A deprecated TLS version TLSv1.1 is enabled. Please use TLSv1.2 or higher.
2024-09-05T09:27:42.470754Z 0 [Warning] CA certificate ca.pem is self signed.
2024-09-05T09:27:42.873013Z 1 [Note] A temporary password is generated for root@localhost: 5msHOfOrlq:&
[root@prdb19 mysqlb]# 


--启动连个mysql实例
-bash-4.2$ ps -ef|grep mysql
mysql     3590     1  0 17:26 pts/0    00:00:00 /bin/sh bin/mysqld_safe --user=mysql
mysql     3819  3590  0 17:26 pts/0    00:00:00 /u01/mysqla/bin/mysqld --basedir=/u01/mysqla --datadir=/u01/mysql1/data --plugin-dir=/u01/mysqla/lib/plugin --log-error=/var/log/mariadb/mariadb.log --pid-file=/var/run/mariadb/mariadb.pid --socket=/tmp/mysql1.sock --port=3306
root      5265  4621  0 17:28 pts/0    00:00:00 su - mysql
mysql     5272  5265  0 17:28 pts/0    00:00:00 -bash
mysql     6787  5272  0 17:29 pts/0    00:00:00 vim my.cnf
mysql    11352  5272  0 17:33 pts/0    00:00:00 /bin/sh bin/mysqld_safe --user=mysql
mysql    11574 11352  5 17:33 pts/0    00:00:00 /u01/mysqlb/bin/mysqld --basedir=/u01/mysqlb --datadir=/u01/mysql2/data --plugin-dir=/u01/mysqlb/lib/plugin --log-error=/var/log/mariadb/mariadb2.log --pid-file=/var/run/mariadb/mariadb2.pid --socket=/tmp/mysql2.sock --port=3307
mysql    11671  5272  0 17:33 pts/0    00:00:00 ps -ef
mysql    11672  5272  0 17:33 pts/0    00:00:00 grep --color=auto mysql

--修改密码
set password for root@localhost = password('123456');

--修改/etc/my.cnf 文件
cp /etc/my.cnf /u01/mysqla/
cp /etc/my.cnf /u01/mysqlb/
mv /etc/my.cnf /etc/my.cnfbk



[root@prdb19 ~]# more /u01/mysqlb/my.cnf |grep -v "#"
[mysqld_safe]
log-error=/var/log/mariadb/mariadb2.log
pid-file=/var/run/mariadb/mariadb2.pid

[mysqld]
!includedir /etc/my.cnf.d
basedir = /u01/mysqlb
datadir = /u01/mysql2/data
port = 3307
socket = /tmp/mysql2.sock
log-error=/var/log/mariadb/mariadb2.log
pid-file=/var/run/mariadb/mariadb2.pid
server-id = 2
log-bin = /u01/mysql2/data/mysql-bin
binlog_format = row
sync_binlog = 1
performance_schema = off
[root@prdb19 ~]# 


[root@prdb19 ~]# more /u01/mysqla/my.cnf |grep -v "#"
[mysqld_safe]
log-error=/var/log/mariadb/mariadb1.log
pid-file=/var/run/mariadb/mariadb1.pid

[mysqld]
!includedir /etc/my.cnf.d
basedir = /u01/mysqla
datadir = /u01/mysql1/data
port = 3306
socket = /tmp/mysql1.sock
server-id= 1 
log_bin = mysql-bin
binlog_format = row
sync_binlog = 1
performance_schema = off
expire_logs_days=100
[root@prdb19 ~]# 

 常用维护命令;

## stop mysql
ps -ef|grep mysqld|grep -v grep|awk '{print $2}'|xargs kill -9

##start mysql
su - mysql -c 'cd /u01/mysqla;/u01/mysqla/bin/mysqld_safe --user=mysql &'
su - mysql -c 'cd /u01/mysqlb;/u01/mysqlb/bin/mysqld_safe --user=mysql &'


##
su - mysql -c 'cd /u01/mysqla;bin/mysql --socket=/tmp/mysql1.sock -u root -p123456'
su - mysql -c 'cd /u01/mysqlb;bin/mysql --socket=/tmp/mysql2.sock -u root -p123456'

标签:bin,00,--,root,主备,mysql,同机,u01
From: https://www.cnblogs.com/notonlydba/p/18398518

相关文章

  • docker部署mysql8主从
     一、拉取mysql镜像dockerpullmysql 二、创建容器#主库dockerrun-itd-p3306:3306-eMYSQL_ROOT_PASSWORD=123456--namemysql-mastermysql#从库dockerrun-itd-p3307:3306-eMYSQL_ROOT_PASSWORD=123456--namemysql-slavemysql 三、配置主库[m......
  • SQL——DQL用来查询数据库表中的记录(MySQL)
    DQL英文全称是DataQueryLanguage(数据查询语言),用来查询数据库表中的记录。关键字:select一、前言select  字段列表  from表名列表 --基本查询where  条件列表-----条件查询(where)groupby 分组字段列表 having分组后条件列表--分组查询(groupby......
  • 填坑 Plugin 'mysql_native_password' is not loaded
    数据库从mysql5.7升级到mysql8.4,部分场景出现以下错误提示:Plugin'mysql_native_password'isnotloaded原因是:mysql_native_password插件(模式)在新版本中被弃用了,新模式为caching_sha2_password,需要启用一下旧模式。解决步骤:1.连接到数据库后,用命令SHOWPLUGINS查看插......
  • MySQL索引与事务(详细解析)
    目录1.索引作用 优势:2.索引的使用 2.1查看索引 2.2创建索引2.3删除索引 3.索引的数据结构4.事务 4.1事务的概念 4.2事务的使用 1.索引作用 优势: --索引类似一本书的目录,加快提高的查询的效率 --索引会额外的占用磁盘的空间,可能会拖慢插入......
  • MySQL 数据类型详解
    MySQL是一种广泛使用的关系型数据库管理系统,它支持多种数据类型以满足各种应用场景的需求。本文将详细介绍MySQL支持的数据类型、它们的使用场景以及实现原理,并通过图示帮助读者更直观地理解。目录简介数值类型整型浮点型定点型日期和时间类型字符串类型字符串二进制字......
  • Java项目: 基于SpringBoot+mysql蜗牛兼职网兼职平台管理系统(含源码+数据库+答辩PPT+
    一、项目简介本项目是一套基于SpringBoot+mysql蜗牛兼职网兼职平台管理系统包含:项目源码、数据库脚本等,该项目附带全部源码可作为毕设使用。项目都经过严格调试,eclipse或者idea确保可以运行!该系统功能完善、界面美观、操作简单、功能齐全、管理便捷,具有很高的实际应用......
  • 20240907_004551 mysql 视图 创建视图
    很幸苦的获取数据SELECTstudent.id,student.nameASsname,class.nameAScname,class.detailFROMstudentINNERJOINclassONstudent.cid=class.id存在的问题下次要再拿这样的数据重写语句很麻烦希望上面的查询结果直接就作为虚拟表的本体创建视图语法createvi......
  • MysqlHelper
    #来源:https://blog.csdn.net/YZL40514131/article/details/127170427frompymysqlimport*classMysqlHelper:#todo数据库连接参数,可以定义多个,比如conn_params1,conn_params2,用于连接多个数据库,在类实例化时指定conn_params={'host':'localhost',......
  • 使用 Terraform 在 AWS 上创建 MySQL RDS 实例:自动化基础设施管理
    在如今的云计算时代,自动化基础设施管理成为了企业高效运维的关键。而Terraform作为一款强大的基础设施即代码(InfrastructureasCode,IaC)工具,可以帮助我们轻松实现云资源的自动化管理。本文将围绕如何使用Terraform在AWS上创建MySQLRDS实例展开,带你体验自动化管理带来的便......
  • 使用 MySQL 创建直方图:数据分析与可视化技巧,mysql创建视图表
    在数据分析和可视化过程中,直方图是一种常见的工具,用来显示数据的分布情况。使用MySQL创建直方图,可以帮助我们快速理解数据的整体趋势和分布特征。本文将介绍如何使用MySQL来创建直方图,并结合数据分析与可视化的技巧,让数据分析更加直观易懂。什么是直方图?直方图是一种用于展......