About 526,000 results
Open links in new tab
  1. How do I find out my MySQL URL, host, port and username?

    Nov 4, 2010 · I need to find my MySQL username. When I open the MySQL command line client, it only asks me for my password. I don't remember my username. And for connectivity with JDBC, I need …

  2. Show MySQL host via SQL Command - Stack Overflow

    Mar 8, 2017 · Show Database Use database show tables Describe <table> All good and well, but is it possible to show the current connections host. Not connection_id, but the IP Address or Name of …

  3. Host 'xxx.xx.xxx.xxx' is not allowed to connect to this MySQL server

    The message *Host ''xxx.xx.xxx.xxx'' is not allowed to connect to this MySQL server is a reply from the MySQL server to the MySQL client. Notice how its returning the IP address and not the hostname.

  4. Using % for host when creating a MySQL user - Stack Overflow

    Yes, there IS a difference between using % and localhost for the user account host when connecting via a socket connect instead of a standard TCP/IP connect. A host value of % does not include localhost …

  5. ERROR 1130 (HY000): Host '' is not allowed to connect to this MySQL …

    SELECT host FROM mysql.user WHERE User = 'root'; If you only see results with localhost and 127.0.0.1, you cannot connect from an external source. If you see other IP addresses, but not the …

  6. MySQL Host '::1' or '127.0.0.1' is not allowed to connect to this MySQL ...

    The variable skip_name_resolve gives better performance because the server does not try to resolve the names of the connecting clients or look for them every time in the host name cache (even …

  7. Can't connect to MySQL server on 'localhost' (10061)

    Sep 23, 2008 · 127.0.0.1 localhost ::1 localhost Sometimes mysql can not trigger Windows to force start host services if firewall blocks it, so start it manually win + run>>services.msc, select the …

  8. 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. …

  9. Access mysql remote database from command line - Stack Overflow

    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 …

  10. mysql - How to host an sql database on a cloud? - Stack Overflow

    Oct 15, 2013 · There are two primary ways of setting up a cloud-hosted MySQL database: either you set up a cloud-hosted virtual server and install MySQL Server on it... or you set up a cloud-hosted, …