Create a Mysql image database under rhel4

Source: Internet
Author: User
Environment Introduction: OS: rhel4MySQL version: 4.1 master database 192.168.1.115 slave database 192.168.1.1161 and master database creation/etc/my. cnf: Modify the key value in [mysqld] To Open server-id = 1log-bin2 in the master item, and add users to the master database to read logs from the master database. Grantreplicationslave, reload, superon *. Environment Introduction: OS: rhel4
MySQL version: 4.1
Master database 192.168.1.115
Slave database 192.168.1.116
1. Create/etc/my. cnf in the master database and modify the key value in [mysqld] to open the master item.

Server-id = 1
Log-bin

2. Add users to the master database to read logs from the master database.

Grant replication slave, reload, super on *. * to 'slave '@ '192. 168.1.116'
IdentifIEd by '20140901'

3. Connect the slave database to the master database for testing.
/Opt/mysql/bin/mysql-u slave-p-h 192.168.1.115

4. Stop the slave database, modify the slave database/etc/my. cnf, and add the following options:
[Mysqld]
Server-id = 2
Master-host = 192.168.1.115
Master-user = slave
Masters-passWord = 123456

5. Start slave database for master-slave Database Data Synchronization
/Opt/mysql/share/mysql start
/Opt/mysql/bin/mysql-u root-p
Mysql> load data from master;
Note: You can use the database to import the data or use the directory to test the data in this step.

6. perform the test:
Create a table in the master database,
Mysql> create database sampdb;
Mysql> create table new (name char (20), phone char (20 ));
Mysql> insert into new ('abc, '123 ');
Open the slave database and check:
/Opt/mysql/bin/mysql-u root-p
Mysql> show database;
Mysql
Sampdb
Test
Mysql> use sampdb;
Mysql> show tables;
New
The master database is successfully created.

7. commands related to the Master/Slave database:
Slave stop; slave start; start to stop the slave database.
Show slave status \ G; displays the binary log of the primary database that is being read from the database.
Purge master logs to 'binlog. 100'; this command is very careful to delete binary log files that are useless to the master database. If it is deleted by mistake, the slave database cannot be automatically updated.
Change master; modify the parameter usage on the server.
Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.