zoukankan      html  css  js  c++  java
  • Enable remote access to MySQL database server

    Enable remote access to MySQL database server

    By default, MySQL database server remote access disabled for security reasons. However, some time you need to provide the remote access to database server from home or from web server.

    Solution1

    Step # 1: Login over ssh

    First, login over ssh to remote MySQL database server

    Step # 2: Enable networking

    Once connected you need edit the mysql configuration file my.cfg using text editor such as vi.

    In Debian Linux file is located at /etc/mysql/my.cnf

    # vi /etc/my.cnf

    Step # 3: Once file open, locate line that read as [mysqld]

    Make sure line skip-networking is commented (or remove line) and add following line

    bind-address=YOUR-SERVER-IP

    For example, if your MySQL server IP is 172.20.5.2 then entire block should be look like as follows:

    [mysqld]
    user = mysql
    pid-file = /var/run/mysqld/mysqld.pid
    socket = /var/run/mysqld/mysqld.sock
    port = 3306
    basedir = /usr
    datadir = /var/lib/mysql
    tmpdir = /tmp
    language = /usr/share/mysql/English
    bind-address = 172.20.5.2

    # skip-networking
    ....
    ..
    ....

    Where,

    bind-address : IP address to bind to.
    skip-networking : Don’t listen for TCP/IP connections at all. All interaction with mysqld must be made via Unix sockets. This option is highly recommended for systems where only local requests are allowed. Since you need to allow remote connection this line should removed from file or put it in comment state.

    Step# 4 Save and Close the file.

    Restart your mysql service to take change in effect

    # /etc/init.d/mysql restart

    Step # 5 Grant access to remote IP address

    # mysql -u root –p mysql

    Grant access to new database

    If you want to add new database called foo for user bar and remote IP 162.54.10.20 then you need to type following commands at mysql> prompt:

    mysql> CREATE DATABASE foo;

    mysql> GRANT ALL ON foo.* TO bar@'162.54.10.20' IDENTIFIED BY 'PASSWORD';

    Grant access to existing database

    Let us assume that you are always making connection from remote IP called 162.54.10.20 for database called webdb for user webadmin then you need to grant access to this IP address. At mysql> prompt type following command for existing database:

    mysql> update db set Host='162.54.10.20' where Db='webdb';

    mysql> update user set Host='162.54.10.20' where user='webadmin';

    Step # 5: Logout of MySQL

    Type exit command to logout mysql

    mysql> exit

    Step # 6: Test it

    From remote system type command

    $ mysql -u webadmin –h 172.20.5.2 –p

    You can also use telnet to connect to port 3306 for testing purpose

    $ telnet 172.20.5.2 3306

    Solution 2

    All you need to do is specify remote mysql host with –h option. For example to connect remote mysql server called server.test.com you need to type command as follows

    $ mysql –u ruchi –h server.test.com -p

    OR if you with to use MySQL server ip address (172.20.1.101)
  • 相关阅读:
    js获取客户端IP及地理位置
    跟SAP系统集成的Android应用
    关于刘冬大侠Spring.NET系列学习笔记3的一点勘正
    设置浏览器全屏模式
    一个模拟"显示桌面.scf"程序的JS小函数
    网站整体变灰(黑白、置灰)原理
    苹果手机上input的button按钮颜色显示问题
    用Python做数据清洗:采集几百个xls或csv中的数据并汇总
    用ISO-8859-1解决Python 'utf-8' codec can't decode bytes in position 924-925问题
    Python批量转换子文件夹下的文件编码
  • 原文地址:https://www.cnblogs.com/lexus/p/2508258.html
Copyright © 2011-2022 走看看