search
HomeDatabaseMysql Tutorialubuntu14下搭建mysql主从服务器_MySQL

Ubuntu

    mysql的主从复制是异步的,分master/slave,在master端存在一个IO线程,而在slave下存在IO及Sql线程。

    搭建环境最重要的地方在于将mysql的二进制日志功能开启,我在搭的过程中有个细节没注意,坑了我好久。

    环境:

        我的两台虚拟机上网方式都是采用桥接模式,不推荐nat.首先对两台虚拟机设置固定ip地址,和你的物理机的ip地址在一个段内,这样你的虚拟机就很类似一台局域网的物理机工作了。

        设置固定ip地址:

        $ sudo vim /etc/network/interfaces  

        如下:

            # interfaces(5) file used by ifup(8) and ifdown(8)

            auto lo

            iface lo inet loopback

            auto eth0

            iface eth0 inet static

            address 192.168.1.252

            netmask 255.255.255.0

            gateway 192.168.1.1

        $ sudo /etc/init.d/networking restart  

        我的虚拟机地址各设为:192.168.1.251   192.168.1.252  网关IP:192.168.1.1

        设置完后,首先在虚拟机中互ping,必须保证能通。

    环境准备好后,可以开始了,我没有采取rpm方式,ubuntu下直接在线安装mysql非常方便的,省去了很多步骤。

    $ sudo apt-get install mysql-server

   默认安装完自动开启的,所以用 netstat -tap|grep mysql 看看是不是mysql服务存在了

   之后查询下mysql运行状态,service mysql status,同样,还有其他命令,service mysql                  start/stop/restart.

    如果出现了以下信息,则代表成功了。

    mysql start/running, process 1199

    在登陆前先到/etc/mysql/my.cnf下 将bind-address注释掉,因为默认只能本机访问。

    登陆mysql

    mysql -u root -p 

    grant replication slave,reload,super on *.* to slave @192.168.1.152 identified by '1234'

    然后在另一台Ubuntu下远程测试下

    mysql -u slave -h 192.168.1.151 -p

    前期工作准备好了,现在就开始配置:

    在master 192.168.1.251的机子上对my.cnf修改,切记以下配置信息一定要加到【mysqld】模块中,放在文件其他位置会导致master配置失败。

    server-id=1

    log_bin=/var/log/mysql/mysql-bin.log

    binlog_do_db=student

    binlog_ignore_db=mysql

    重启下mysql

    sudo  /etc/init.d/mysql restart

    如果在重启过程中failed,建议先看下my.cnf的log-error对应得错误日志文件位置,然后cat看下报错信息

    之后进入master的mysql,首先看下二进制功能是否on.

    show variables like 'log%' 

    如果为off代表没开启,则还是返回检查下my.cnf文件,是否放在[mysqld]那块中等。文件路径是否对了

    show master status;则能看到对应得file position 信息,这些在从机设置的时候要用到。

    最后到salve 192.168.1.252的/etc/mysql/my.cnf下配置:

    server-id=2

    log_bin=/var/log/mysql/mysql-bin.log

    replicate_do_db=student

    重启下mysql

    sudo  /etc/init.d/mysql restart

     slave进入mysql:

     stop slave

      然后设置从master复制日志配置

      change master to master_host='192.168.1.151' ,master_user='slave',master_password='1234',

      master_log_file='log.000004',master_log_pos=94;

      log_file log_pos则是在master下show master status看到的file position信息。

      start slave;

      show slave status/G

       在出现的信息中找到 Slave_IO_Running/Slave_SQL_Running ,都为YES则成功了。

        如果出现了NO,则还是查看log-error日志文件,会比较清晰的描述出来的。

     

    


Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
How do you alter a table in MySQL using the ALTER TABLE statement?How do you alter a table in MySQL using the ALTER TABLE statement?Mar 19, 2025 pm 03:51 PM

The article discusses using MySQL's ALTER TABLE statement to modify tables, including adding/dropping columns, renaming tables/columns, and changing column data types.

How do I configure SSL/TLS encryption for MySQL connections?How do I configure SSL/TLS encryption for MySQL connections?Mar 18, 2025 pm 12:01 PM

Article discusses configuring SSL/TLS encryption for MySQL, including certificate generation and verification. Main issue is using self-signed certificates' security implications.[Character count: 159]

How do you handle large datasets in MySQL?How do you handle large datasets in MySQL?Mar 21, 2025 pm 12:15 PM

Article discusses strategies for handling large datasets in MySQL, including partitioning, sharding, indexing, and query optimization.

What are some popular MySQL GUI tools (e.g., MySQL Workbench, phpMyAdmin)?What are some popular MySQL GUI tools (e.g., MySQL Workbench, phpMyAdmin)?Mar 21, 2025 pm 06:28 PM

Article discusses popular MySQL GUI tools like MySQL Workbench and phpMyAdmin, comparing their features and suitability for beginners and advanced users.[159 characters]

How do you drop a table in MySQL using the DROP TABLE statement?How do you drop a table in MySQL using the DROP TABLE statement?Mar 19, 2025 pm 03:52 PM

The article discusses dropping tables in MySQL using the DROP TABLE statement, emphasizing precautions and risks. It highlights that the action is irreversible without backups, detailing recovery methods and potential production environment hazards.

How do you represent relationships using foreign keys?How do you represent relationships using foreign keys?Mar 19, 2025 pm 03:48 PM

Article discusses using foreign keys to represent relationships in databases, focusing on best practices, data integrity, and common pitfalls to avoid.

How do you create indexes on JSON columns?How do you create indexes on JSON columns?Mar 21, 2025 pm 12:13 PM

The article discusses creating indexes on JSON columns in various databases like PostgreSQL, MySQL, and MongoDB to enhance query performance. It explains the syntax and benefits of indexing specific JSON paths, and lists supported database systems.

How do I secure MySQL against common vulnerabilities (SQL injection, brute-force attacks)?How do I secure MySQL against common vulnerabilities (SQL injection, brute-force attacks)?Mar 18, 2025 pm 12:00 PM

Article discusses securing MySQL against SQL injection and brute-force attacks using prepared statements, input validation, and strong password policies.(159 characters)

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Tools

mPDF

mPDF

mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),

ZendStudio 13.5.1 Mac

ZendStudio 13.5.1 Mac

Powerful PHP integrated development environment

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Safe Exam Browser

Safe Exam Browser

Safe Exam Browser is a secure browser environment for taking online exams securely. This software turns any computer into a secure workstation. It controls access to any utility and prevents students from using unauthorized resources.