实战MySQL集群,试用CentOS 6下的MariaDB-Galera集成版_MySQL
MariaDBCentOSMysql集群
bitsCN.com说起mysql的集群估计很多人会首先想起mysql自带的replication或者mysql-mmm。mysql-mmm其实也是基于mysql自带的replication的,不过封装的更好用一些,但是配置起来还是比较麻烦,而且对于动态增减master节点可以说是无能为力的。
偶然的情况下了解到有一个基于mysql的集群galera,除了只支持InnoDB以外,基本就没什么缺点了。大家看看官方是怎么说的:
FeaturesMySQL/Galera is synchronous multi-master cluster for MySQL/InnoDB database, having features like: Synchronous replication Active-active multi-master topology Read and write to any cluster node Automatic membership control, failed nodes drop from the cluster Automatic node joining True parallel replication, on row level Direct client connections, native MySQL look & feelBenefitsThese features yield un-seen benefits for a DBMS clustering solution: No slave lag No lost transactions Both read and write scalability Smaller client latencies
废话少说,马上开始动手测试,测试用的OS是64位的CentOS 6。首先,添加MariaDB的软件仓库,创建文件“/etc/yum.repos.d/MariaDB.repo”,内容
# MariaDB 5.5 CentOS repository list - created 2013-11-05 06:30 UTC# http://mariadb.org/mariadb/repositories/[mariadb]name = MariaDBbaseurl = http://yum.mariadb.org/5.5/centos6-amd64gpgkey=https://yum.mariadb.org/RPM-GPG-KEY-MariaDBgpgcheck=1
然后,安装MariaDB-Galera集成版
# yum -y install MariaDB-Galera-server.x86_64 MariaDB-client.x86_64 galera.x86_64
# cp /usr/share/mysql/wsrep.cnf /etc/my.cnf.d/
Galera默认试用4567端口同步数据,需要修改防火墙,这里为了方便直接把防火墙给关闭了
# /etc/init.d/iptables stop
MariaDB-Galera貌似没有给你提供配套的selinux配置,为了方便,直接把selinux给禁止了
# setenforce 0
既然是集群,当然不能只有一台机器
机器a | 192.168.56.103 |
机器b | 192.168.56.104 |
机器c | 192.168.56.105 |
修改机器a的“/etc/my.cnf.d/wsrep.cnf”,改动内容
# Full path to wsrep provider library or 'none'wsrep_provider=/usr/lib64/galera/libgalera_smm.so# Group communication system handlewsrep_cluster_address="gcomm://"# Address which donor should send State Snapshot to.# Should be the address of THIS node. DON'T SET IT TO DONOR ADDRESS!!!# (SST method dependent. Defaults to the first IP of the first interface)wsrep_sst_receive_address=192.168.56.103
因为机器a是第一个节点,wsrep_cluster_address直接填"gcomm://"就可以了。如果是要加入到某个集群,那就填集群里面随便一个节点的ip就可以,例如"gcomm://192.168.56.103:4567"。wsrep_sst_receive_address是本机用来接收同步数据的ip,默认是机器网络配置里面找到的第一个ip,如果机器有多个ip的话最好指定一下,例如“192.168.56.103”。启动mysql数据库服务
# /etc/init.d/mysql start
现在要把机器b加入到集群,同样修改配置文件“/etc/my.cnf.d/wsrep.cnf”,改动内容
# Full path to wsrep provider library or 'none'wsrep_provider=/usr/lib64/galera/libgalera_smm.so# Group communication system handlewsrep_cluster_address="gcomm://192.168.56.103:4567"# Address which donor should send State Snapshot to.# Should be the address of THIS node. DON'T SET IT TO DONOR ADDRESS!!!# (SST method dependent. Defaults to the first IP of the first interface)wsrep_sst_receive_address=192.168.56.104
启动机器b的mysql服务。
到这里集群就搭建完毕了,现在开始正式测试集群。首先,链接机器a的mysql服务,创建一个数据库和一张表,表里面有一个让mysql-mmm比较麻烦和头疼的AUTO_INCREMENT字段,顺便添加乐一个用来访问这个数据库的用户
[root@centos6 ~]# mysql -u rootWelcome to the MariaDB monitor. Commands end with ; or /g.Your MariaDB connection id is 3Server version: 5.5.33a-MariaDB MariaDB Server, wsrep_23.7.6.rXXXXCopyright (c) 2000, 2013, Oracle, Monty Program Ab and others.Type 'help;' or '/h' for help. Type '/c' to clear the current input statement.MariaDB [(none)]> create database asdf;Query OK, 1 row affected (0.03 sec)MariaDB [(none)]> grant all on asdf.* to 'aauu'@'localhost' identified by '123456';Query OK, 0 rows affected (0.00 sec)MariaDB [(none)]> use asdf;Database changedMariaDB [asdf]> create table aatt (aa int primary key auto_increment);Query OK, 0 rows affected (0.14 sec)MariaDB [asdf]> insert into aatt values (null);Query OK, 1 row affected (0.01 sec)MariaDB [asdf]> insert into aatt values (null);Query OK, 1 row affected (0.00 sec)MariaDB [asdf]> select * from aatt;+----+| aa |+----+| 2 || 4 |+----+2 rows in set (0.00 sec)
auto_increment的步进自动变成2了,是不是很智能?现在我们去到机器b,用新建的用户名登录mysql服务,执行类似的操作
[root@centos6 ~]# mysql -u aauu -pEnter password: Welcome to the MariaDB monitor. Commands end with ; or /g.Your MariaDB connection id is 4Server version: 5.5.33a-MariaDB MariaDB Server, wsrep_23.7.6.rXXXXCopyright (c) 2000, 2013, Oracle, Monty Program Ab and others.Type 'help;' or '/h' for help. Type '/c' to clear the current input statement.MariaDB [(none)]> use asdf;Database changedMariaDB [asdf]> insert into aatt values (null);Query OK, 1 row affected (0.01 sec)MariaDB [asdf]> insert into aatt values (null);Query OK, 1 row affected (0.04 sec)MariaDB [asdf]> select * from aatt;+----+| aa |+----+| 2 || 4 || 5 || 7 |+----+4 rows in set (0.00 sec)
看到没有?刚才插入的数据都在这个就没什么值得说的,厉害的是机器a上新建的用户在这里可以用!现在我们来动态把机器c加入到集群里面去
# Full path to wsrep provider library or 'none'wsrep_provider=/usr/lib64/galera/libgalera_smm.so# # Group communication system handlewsrep_cluster_address="gcomm://192.168.56.104:4567"# # Address which donor should send State Snapshot to.# # Should be the address of THIS node. DON'T SET IT TO DONOR ADDRESS!!!# # (SST method dependent. Defaults to the first IP of the first interface)wsrep_sst_receive_address=192.168.56.105
之前说过的,加入到集群里面随便一个节点的ip都可以。启动机器c的mysql服务,然后执行类似操作
[root@centos6 ~]# mysql -u rootWelcome to the MariaDB monitor. Commands end with ; or /g.Your MariaDB connection id is 3Server version: 5.5.33a-MariaDB MariaDB Server, wsrep_23.7.6.rXXXXCopyright (c) 2000, 2013, Oracle, Monty Program Ab and others.Type 'help;' or '/h' for help. Type '/c' to clear the current input statement.MariaDB [(none)]> use asdf;Reading table information for completion of table and column namesYou can turn off this feature to get a quicker startup with -ADatabase changedMariaDB [asdf]> insert into aatt values (null);Query OK, 1 row affected (0.00 sec)MariaDB [asdf]> insert into aatt values (null);Query OK, 1 row affected (0.00 sec)MariaDB [asdf]> select * from aatt;+----+| aa |+----+| 2 || 4 || 5 || 7 || 9 || 12 |+----+6 rows in set (0.00 sec)
auto_increment的步进自动变成3了,看到没有?
这里我只是简单的列举了Galera的一个使用场景,还有很多它先进的地方这里没有提到,它大家可以上它的官方网站看看。
参考网址:
- http://www.codership.com/
- https://launchpad.net/wsrep
- http://blog.sina.com.cn/s/blog_704836f40101lixp.html
bitsCN.com

핫 AI 도구

Undresser.AI Undress
사실적인 누드 사진을 만들기 위한 AI 기반 앱

AI Clothes Remover
사진에서 옷을 제거하는 온라인 AI 도구입니다.

Undress AI Tool
무료로 이미지를 벗다

Clothoff.io
AI 옷 제거제

AI Hentai Generator
AI Hentai를 무료로 생성하십시오.

인기 기사

뜨거운 도구

메모장++7.3.1
사용하기 쉬운 무료 코드 편집기

SublimeText3 중국어 버전
중국어 버전, 사용하기 매우 쉽습니다.

스튜디오 13.0.1 보내기
강력한 PHP 통합 개발 환경

드림위버 CS6
시각적 웹 개발 도구

SublimeText3 Mac 버전
신 수준의 코드 편집 소프트웨어(SublimeText3)

뜨거운 주제











빅 데이터 구조 처리 기술: 청킹(Chunking): 데이터 세트를 분할하고 청크로 처리하여 메모리 소비를 줄입니다. 생성기: 전체 데이터 세트를 로드하지 않고 데이터 항목을 하나씩 생성하므로 무제한 데이터 세트에 적합합니다. 스트리밍: 파일을 읽거나 결과를 한 줄씩 쿼리하므로 대용량 파일이나 원격 데이터에 적합합니다. 외부 저장소: 매우 큰 데이터 세트의 경우 데이터를 데이터베이스 또는 NoSQL에 저장합니다.

PHP에서 MySQL 데이터베이스를 백업하고 복원하는 작업은 다음 단계에 따라 수행할 수 있습니다. 데이터베이스 백업: mysqldump 명령을 사용하여 데이터베이스를 SQL 파일로 덤프합니다. 데이터베이스 복원: mysql 명령을 사용하여 SQL 파일에서 데이터베이스를 복원합니다.

선형 복잡성에서 로그 복잡성까지 조회 시간을 줄이는 인덱스를 구축하여 MySQL 쿼리 성능을 최적화할 수 있습니다. SQL 삽입을 방지하고 쿼리 성능을 향상하려면 PREPAREDStatements를 사용하세요. 쿼리 결과를 제한하고 서버에서 처리되는 데이터의 양을 줄입니다. 적절한 조인 유형 사용, 인덱스 생성, 하위 쿼리 사용 고려 등 조인 쿼리를 최적화합니다. 쿼리를 분석하여 병목 현상을 식별하고, 캐싱을 사용하여 데이터베이스 로드를 줄이고, 오버헤드를 최소화합니다.

MySQL 테이블에 데이터를 삽입하는 방법은 무엇입니까? 데이터베이스에 연결: mysqli를 사용하여 데이터베이스에 대한 연결을 설정합니다. SQL 쿼리 준비: 삽입할 열과 값을 지정하는 INSERT 문을 작성합니다. 쿼리 실행: query() 메서드를 사용하여 삽입 쿼리를 실행하면 확인 메시지가 출력됩니다.

PHP를 사용하여 MySQL 테이블을 생성하려면 다음 단계가 필요합니다. 데이터베이스에 연결합니다. 데이터베이스가 없으면 작성하십시오. 데이터베이스를 선택합니다. 테이블을 생성합니다. 쿼리를 실행합니다. 연결을 닫습니다.

PHP에서 MySQL 저장 프로시저를 사용하려면: PDO 또는 MySQLi 확장을 사용하여 MySQL 데이터베이스에 연결합니다. 저장 프로시저를 호출하는 문을 준비합니다. 저장 프로시저를 실행합니다. 결과 집합을 처리합니다(저장 프로시저가 결과를 반환하는 경우). 데이터베이스 연결을 닫습니다.

MySQL 8.4(2024년 최신 LTS 릴리스)에 도입된 주요 변경 사항 중 하나는 "MySQL 기본 비밀번호" 플러그인이 더 이상 기본적으로 활성화되지 않는다는 것입니다. 또한 MySQL 9.0에서는 이 플러그인을 완전히 제거합니다. 이 변경 사항은 PHP 및 기타 앱에 영향을 미칩니다.

Oracle 데이터베이스와 MySQL은 모두 관계형 모델을 기반으로 하는 데이터베이스이지만 호환성, 확장성, 데이터 유형 및 보안 측면에서 Oracle이 우수하고, MySQL은 속도와 유연성에 중점을 두고 중소 규모 데이터 세트에 더 적합합니다. ① Oracle은 광범위한 데이터 유형을 제공하고, ② 고급 보안 기능을 제공하고, ③ 엔터프라이즈급 애플리케이션에 적합하고, ① MySQL은 NoSQL 데이터 유형을 지원하고, ② 보안 조치가 적고, ③ 중소 규모 애플리케이션에 적합합니다.
