Public network access intranet database--haproxy configuration

Source: Internet
Author: User

Haproxy Configuring extranet access to intranet MySQL

The external network of the machine ip:106.23.22.1

Intranet Database ip:10.10.10.1

1, installation Haproxy

Yum-y Install Haproxy

Vim/etc/haproxy/haproxy.cfg

2. You need to add the following configuration in the Haproxy configuration file backend configuration (haproxy.cfg)

####### #backend后端配置 ##############

Listen MySQL

Bind 0.0.0.0:3307 #此处指定的允许哪个ip以及使用那个端口进行外网访问 (0.0.0.0 is that any server can access the database through the extranet, it is best to use the specified server for security purposes)

Mode TCP #使用TCP协议

Balance Roundrobin #使用轮询方式

Server MySQL 10.10.10.1:3306 #此处指定访问本台服务器下哪个内网的数据库ip以及端口

If you have the option Httplog parameter in the default configuration, remember to change it to option Tcplog

Restart Haproxy after completion

Service Haproxy Restart

The intranet database on the server can then be accessed on the same machine that is allowed to access the external network.

Mysql-uroot-h 106.23.22.1-p Password-p3307

Public network access intranet database--haproxy configuration

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.