About 76,700 results
Open links in new tab
  1. How to allow remote connection to MySQL - Stack Overflow

    I have installed MySQL Community Edition 5.5 on my local machine and I want to allow remote connections so that I can connect from external source. How can I do that?

  2. Access mysql remote database from command line

    Apr 8, 2013 · I have a server with Rackspace. I want to access the database from my local machine command line. I tried like: mysql -u username -h my.application.com -ppassword But it gives an …

  3. connection - How to grant remote access permissions to mysql server …

    GRANT ALL PRIVILEGES ON *.* TO 'root'@'localhost' IDENTIFIED BY PASSWORD 'some_characters' WITH GRANT OPTION If I am not mistaken, root@localhost means that user root can access the …

  4. Mysql adding user for remote access - Stack Overflow

    Restart mysql service run on console: service mysql restart Create a user with a safe password for remote connection. To do this run following command in mysql (if you are linux user to reach mysql …

  5. Enable remote MySQL connection: ERROR 1045 (28000): Access denied …

    Dec 5, 2011 · 60 By default in MySQL server remote access is disabled. The process to provide a remote access to user is. Go to my sql bin folder or add it to PATH Login to root by mysql -uroot …

  6. grant remote access of MySQL database from any IP address

    GRANT ALL PRIVILEGES ON database.* TO 'user'@'yourremotehost' IDENTIFIED BY 'newpassword'; But then it only allows me to grant a particular IP address to access this remote MySQL database. …

  7. Allow all remote connections, MySQL - Stack Overflow

    I had been using SQL Server and am now using MySQL for a project. With SQL Server, our developers can connect to the remote database on their local machines if they know the host, username, password.

  8. How do I open up my MySQL on my Raspberry Pi for Outside / Remote ...

    How do I open up my MySQL on my Raspberry Pi for Outside / Remote Connections? Asked 12 years, 2 months ago Modified 7 years, 8 months ago Viewed 79k times

  9. Remote Connections Mysql Ubuntu - Stack Overflow

    Mar 27, 2013 · Then, Restart the Ubuntu MysQL Server systemctl restart mysql.service Now Ubuntu Server will allow remote access to the MySQL Server, But still you need to configure MySQL users to …

  10. MySQL remote connection refused - Stack Overflow

    Jul 6, 2021 · I'm trying to connect my MySql running on my VPS (let's say hostname db.example.com). The issue is: on db.example.com, I can connect mysql locally (from the db server itself), but I can't do …