zabbix 고 사용 가능 한 구축 -- 데이터베이스 클 러 스 터 (2)

8751 단어
1. 데이터 mariadb 클 러 스 터 구축 은 두 가지 내용 으로 나 뉜 다. 1. 부하 균형 구축 2, mariadb galera cluster 2. 부하 균형 구축 부하 균형 클 러 스 터 는 load balance 클 러 스 터 의 약자 이 고 중국어 로 번역 하면 부하 균형 클 러 스 터 이다.자주 사용 하 는 부하 균형 오픈 소스 소프트웨어 는 nginx, lvs, haproxy, 상업 하드웨어 부하 균형 장치 F5, Netscale 이 있다.LVS 를 배 워 상세 하 게 정리 한 기록 이다.이번 에는 lvs DR 모드 2.1 설치 keepalive 와 lvs 설치 패키지 yum install - y \ # \ # \ # # \ # # # keepalived 설치 keepaliveyum install - y ipvsadm \ # \ # \ # 설치 lvs 2.2, keepalive 설정 편집, keepalive 는 네트워크 의 vrrp 원리 와 마찬가지 로 vi / etc / keepalive / keepalived. confvrrpinstance VI_1 {state MASTER! nopreemptinterface chkconfig keepalived ongarp_master_delay 10virtual_router_id 50priority 100advert_int 1authentication {auth_type PASSauth_pass zabbix}virtual_ipaddress {192.168.1.157}}
virtual_server 192.168.1.157 3306 {delay_loop 6lb_algo wrrlb_kind DRnat_mask 255.255.255.0persistence_timeout 50protocol TCP
real_server  192.168.1.154 3306 {
    weight 1
    TCP_CHECK {
        connect_port 3306
        connect_timeout 3
        nb_get_retry 3
        delay_before_retry 3
    }
}

real_server  192.168.1.155 3306 {
    weight 1
    TCP_CHECK {
        connect_port 3306
        connect_timeout 3
        nb_get_retry 3
        delay_before_retry 3
    }
}

real_server 192.168.1 3306 {weight 1TCP_CHECK {connect_port 3306connect_timeout 3nb_get_retry 3delay_before_retry 3}
}

}
2.3. keepalive, ipvsam 서비스 systemctl start keepalivedsystemctl start ipvsam 2.4 를 열 고 ipvsam 의 부하 상황 을 확인 합 니 다. 3. mariadb 클 러 스 터 3.1 데이터 베 이 스 는 각각 세 대의 호스트 에 mariadb 의 데 이 터 를 설치 하고 이번 에는 10.3.14 버 전의 데 이 터 를 설치 하여 비교적 안정 적 인 버 전 vi / etc / yum. repos. d / Mariadb. repo [mariadb]name = MariaDB-10.3.14baseurl=http://yum.mariadb.org/10.3.14/centos7-amd64
alternative: baseurl=http://archive.mariadb.org/mariadb-10.3.14/yum/centos7-amd64
gpgkey=https://yum.mariadb.org/RPM-GPG-KEY-MariaDBgpgcheck=1
[root@localhost /]# yum install mariadb-server -yLoaded plugins: langpacks, product-id, subscription-managerComplete![root@localhost /]\ # rpm - qa | grep mariadbmariadb - server - 5.5.50 - 1. el7 2. x86 64mariadb - libs - 5.50 - 1. el7 2. x86 64mariadb - 5.50 - 1. el7 2. x86 64mariadb - devel - 5.50 - 1. el7 2. x86 64 mariadb 서비스 프로그램 을 시작 하고 시작 항목 에 추가 합 니 다. [root@localhost /]# systemctl start mariadb[root@localhost /]# systemctl enable mariadb[root@localhost /]# netstat -anpt | grep 3306tcp 0 0 0.0.0.0:3306 0.0.0.0:* LISTEN 22418/mysqld[root@localhost /]# ps -ef | grep mariadbmysql 22418 22259 0 00:39 ? 00:00:00 /usr/libexec/mysqld --basedir=/usr --datadir=/var/lib/mysql --plugin-dir=/usr/lib64/mysql/plugin --log-error=/var/log/mariadb/mariadb.log --pid-file=/var/run/mariadb/mariadb.pid --socket=/var/lib/mysql/mysql.sockroot 22459 1092 0 00:40 pts/0 00:00:00 grep --color=auto mariadb[root@localhost /]\ # ln - s' / usr / lib / systemd / system / maridb. service '/ etc / systemd / system / multi - user. target. wants / maridb. service' 는 데이터베이스 의 안전성 을 확보 하기 위해 초기 화 작업 을 해 야 합 니 다. 첫 번 째 단계: 루트 사용자 암 호 를 설정 합 니 다. 두 번 째 단계: 익명 계 정 을 삭제 합 니 다. 세 번 째 단계: 루트 사용자 가 원 격 으로 로그 인 하 는 것 을 금지 합 니 다. 네 번 째 단계: test 데이터 베 이 스 를 삭제 하고 접근 권한 을 취소 합 니 다.... 5 단계: 권한 수여 표를 새로 고침 하여 초기 화 된 설정 을 즉시 적용 합 니 다. 데이터베이스 서비스 프로그램 초기 화: [root@localhost /]# mysql_secure_installation/usr/bin/mysql_secure_installation: line 379: find_mysql_client: command not foundNOTE: RUNNING ALL PARTS OF THIS SCRIPT IS RECOMMENDED FOR ALL MariaDBSERVERS IN PRODUCTION USE! PLEASE READ EACH STEP CAREFULLY!In order to log into MariaDB to secure it, we'll need the currentpassword for the root user. If you've just installed MariaDB, andyou 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, password 를 성공 적 으로 사 용 했 습 니 다. moving on... Setting the root password ensures that nobody can log into the MariaDBroot user without the proper authorisation. Sett root password? [Y / n]yNew password: root 사용 자 를 위 한 데이터베이스 비밀 번 호 를 입력 하 십시오. Re - enter new password: 비밀 번 호 를 다시 입력 하 십시오. Password updated successful! Reloading privilege tables.... 성공! By default, a MariaDB installation has an anonymous user, allower anyone to log into MariaDB without having a user account created forthem. This is intended 는 테스트 용 으로 만 사용 되 며 설 치 를 좀 더 원활 하 게 만 들 려 면 aproduction 환경 으로 이동 하기 전에 제거 해 야 합 니 다. 익명 의 사용 자 를 제거 하 시 겠 습 니까? [Y / n] y (익명 계 정 삭제)... 성공! 일반적으로 root should only be allowed to connect from 'localhost'. Thisensures 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 canaccess. 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 (test 데이터 베 이 스 를 삭제 하고 접근 권한 을 취소)
  • Dropping test database...... Success!
  • Removing privileges on test database... 성공! Reloading the privilege tables will ensure that all changes made so farwill 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@localhost /]\ # mysql - u root - penter password: 데이터베이스 에 루트 사용자 의 비밀 번 호 를 입력 하 십시오. Welcome to the MariaDB monitor. Commands end with; or \ g. Your MariaDB connection id is 5Server version: 5.5.5.5.5.35 - MariaDB MariaDB ServerCopyright (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)] > 현재 있 는 데이터베이스 보기: MariaDB [(none)]> show databases; + -------------------------------------------------------------------------------------------------------------------------------binlog_format=ROWdefault-storage-engine=innodbinnodb_autoinc_lock_mode=2bind-address=0.0.0.0 Galera Provider Configuration wsrep_on=ONwsrep_provider=/usr/lib64/galera/libgalera_smm.so Galera Cluster Configuration wsrep_cluster_name="galera_cluster"wsrep_cluster_address="gcomm://192.168.1.192.168.1.155,192.168.1.156,"

  • Galera Synchronization Configuration
    wsrep_sst_method=rsync
    Galera Node Configuration
    wsrep node address = "192.168.1.156" \ # \ # \ # \ # \ # 다른 노드 는 wsrep node name = "Node 1" \ # \ # \ # \ # \ # 다른 노드 는 첫 번 째 노드 를 수정 해 야 합 니 다. 먼저 galera new cluster 를 사용 하고 다른 노드 는 systemctl start mariadb 3.4 를 사용 하여 zabbix - server - mysql 을 설치 합 니 다. zabbix 의 데이터 파일 을 mysql 에 가 져 오기 위해
    mysql -uroot -p
    passwordmysql> create database zabbix character set utf8 collate utf8_bin;mysql> grant all privileges on zabbix.* to zabbix@localhostidentified by 'password'; my sql > quit; 초기 구조 와 데 이 터 를 가 져 오 면 시스템 은 새로 만 든 비밀 번 호 를 입력 하 는 것 을 알려 줍 니 다.
    zcat /usr/share/doc/zabbix-server-mysql*/create.sql.gz | mysql -uzabbix -p zabbix
    5. vip 설정 은 균형 lvs 의 DR 원리 로 인해 모든 데이터 베 이 스 는 vip 주 소 를 설정 해 야 합 니 다. 대외 적 으로 방송 을 하지 않 습 니 다. \ #! / bin / bash \ # description: start realserver. vip 1 = 192.168.1.157case $1 instart) echo "Start Realserver" / sbin / ifconfig lo: 0 $vip 1 broadcast $vip 1 netmask 255.255.255.255 up
    echo "1" > /proc/sys/net/ipv4/conf/lo/arp_ignore
        echo "2" > /proc/sys/net/ipv4/conf/lo/arp_announce
        echo "1" > /proc/sys/net/ipv4/conf/all/arp_ignore
        echo "2" > /proc/sys/net/ipv4/conf/all/arp_announce

    ;; stop) echo "Stop Realserver" / sbin / ifconfig lo: 0 downecho "0" > / proc / sys / net / ipv 4 / conf / lo / rp ignorecho "0" > / proc / sys / net / ipv 4 / conf / lo / rp announcecho "0" > proc / sys / net / ipv 4 / conf / all / arp ignorecho "0" > / proc / sys / net / ipv 4 / conf / all / arp announce; *) echo "Usage: $0 (start | stop)" exit 1esac 마지막 으로 셸 스 크 립 트 를 실행 합 니 다.
    흔 한 고장
    galera cluster 를 만 들 때 sst 를 xtrabackup 으로 설정 하고 node 1 을 시작 하면 오류 가 발생 합 니 다. [ERROR]WSREP: 이 노드 에서 클 러 스 터 를 부 트 스 트랩 하 는 것 은 안전 하지 않 을 수 있 습 니 다. 클 러 스 터 를 떠 나 는 것 이 마지막 이 아니 며 모든 업 데 이 트 를 포함 하지 않 을 수 있 습 니 다. 이 노드 로 클 러 스 터 부 트 스 트랩 을 강제 하려 면 grastate. dat 파일 을 수 동 으로 편집 하고 safe to bootstrap 을 1 로 설정 하 십시오. 해결 방법: 첫 번 째 노드 로 사용 하려 는 노드 의 grastate. dat 파일 입 니 다.이 파일 을 삭제 하고 다시 시작 하면 됩 니 다.
    다음으로 전송:https://blog.51cto.com/1194325/2384801

    좋은 웹페이지 즐겨찾기