About 531,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 …

  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 …

  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 …

  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 …

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

    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 …

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

    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 …

  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, …

  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 …

  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 …

  10. Cannot connect to Database server (mysql workbench)

    It gives me an error: Cannot Connect to Database Server Your connection attempt failed for user 'root' from your host to server at 127.0.0.1:3306:Can't connect to mysql server on '127.0.0.1' …