Create a mysql image database under the linux operating system-Linux Enterprise Application-Linux server application information. The following is a detailed description. MySQL version: 4.1
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 indicates that 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.
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