- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Host is not allowed to connect to this MySQL serve...
Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Discussions
Discussions
Discussions
Forums
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО02-24-2002 04:42 PM
тАО02-24-2002 04:42 PM
Whenever I try to telnet to the remote server on port 3306 it comes up with the not allowed to connect error. I have my hosts entries in mysql setup correctly so that's not an issue. Could this be a name resolving issue? Am using HP-UX 11.11
Many thanks,
Chris Gersch
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО02-24-2002 05:00 PM
тАО02-24-2002 05:00 PM
Re: Host is not allowed to connect to this MySQL server
To aid troubleshooting, try connecting to the IP address and port number.
# telnet ip_addr_of_mysql_server 3306
Trying...
Connected to mysql_server.
Escape character is '^]'.
Does it get connected?
Hope this helps. Regards.
Steven Sim Kok Leong
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО02-24-2002 05:09 PM
тАО02-24-2002 05:09 PM
Re: Host is not allowed to connect to this MySQL server
#telnet localhost 3306
and it connects fine. From a remote machine however it doesn't make the initial connection and replys straight away with the "can't connect" error.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО02-24-2002 05:12 PM
тАО02-24-2002 05:12 PM
Re: Host is not allowed to connect to this MySQL server
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО02-24-2002 05:14 PM
тАО02-24-2002 05:14 PM
Re: Host is not allowed to connect to this MySQL server
Are you able to connect to other services on the remote server from your client?
1) traceroute ip_addr_of_mysql_server
2) telnet ip_addr_of_mysql_server 22 (assuming if SSHD is running)
If 1) is not working, check that you can ping the ip_addr_of_default_route and that the default route has been defined in your routing table (netstat -rn to verify).
If 1) and 2) works, then you are probably having a ip-filtering mechanism to restrict accesses. Check whether you are using a network-based firewall, host-based firewall or tcpwrapper to filter connections.
Hope this helps. Regards.
Steven Sim Kok Leong
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО02-24-2002 05:15 PM
тАО02-24-2002 05:15 PM
Solutionhosts: files[NOTFOUND=continue UNAVAIL=continue] dns [NOTFOUND=return UNAVAIL=continue TRYAGAIN=return]
This will insure that your server will not fail due to a DNS problem.
Bill Hassell, sysadmin
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО02-24-2002 06:28 PM
тАО02-24-2002 06:28 PM
Re: Host is not allowed to connect to this MySQL server
Chris