Dev License: This installation of WHMCS is running under a Development License and is not authorized to be used for production use. Please report any cases of abuse to abuse@whmcs.com
This article will assist you to enable remote access to MySQL server through Windows command prompt. However, the following steps can also be performed in MySQL command-line client or phpMyAdmin.

  1. Open command prompt. (Press Start + R, type cmd in Run box and hit Enter)

    Run Box

  2. At command prompt, navigate to path C:\Program Files\MySQL\MySQL Server 5.X\bin and run following command. It will prompt you for the password of MySQL root user. Enter password and MySQL prompt will be displayed.

    mysql -u root -p
  3. At MySQL prompt, create a remote user account with root privileges, run the following commands.

    MySQL Prompt

    GRANT ALL PRIVILEGES ON *.* TO 'USERNAME'@'IP' IDENTIFIED BY 'PASSWORD';
    USERNAME: Username you wish to connect to MySQL server.
    IP: Public IP address from where you wish to allow access to MySQL server.
    PASSWORD: Password of the username used.
    IP can be replaced with % to allow user to connect from any IP address.

  4. Flush the previleges by following command and exit.

    FLUSH PRIVILEGES;
    exit;


Looking for help on allowing Remote MySQL access on Linux Server? Do not forget to check our KB on How to Allow Remote Connection to MySQL Server in cPanel/WHM Server?


Was this answer helpful? 1 Users Found This Useful (2 Votes)

Powered by WHMCompleteSolution