--- mhk0189 <[EMAIL PROTECTED]> wrote: > I use Navicate for My Sql database work.For using Navicate at first > have to connect with the Navicate but it's not connecting . So inform > me How can I solve this problem.
I have not used Navicat (http://www.navicat.com) the graphic user interface front end for a MySQL database server. However, there could be an issue in connecting from an outside machine. Often the MySQL users have limited access when they are created. That is, one possibility is that the MySQL user can only connect from "localhost" (the machine with the MySQL server program). Another factor is that the database server must have port 3306 open (or whichever you use for MySQL) and allow connections from your home computer. It would be interesting to know if the database server is even accepting connections through port 3306. On a Linux or Unix machine (including MacOS X) I'd probably try a telnet command to initiate a connection via port 3306: telnet server_address 3306 You should know pretty quickly if the connection is refused or not. If it is allowed, then the next step would be to attempt to log in as the MySQL user and determine if the account access is limited to a specific IP (such as localhost or another IP). As you can see, there are a lot of variables. You don't provide us with much information about your server and home setup. Also, this isn't a PHP question so it's really outside the scope of this group. James ------------------------ Yahoo! Groups Sponsor --------------------~--> Yahoo! Groups gets a make over. See the new email design. http://us.click.yahoo.com/XISQkA/lOaOAA/yQLSAA/HKFolB/TM --------------------------------------------------------------------~-> Community email addresses: Post message: [email protected] Subscribe: [EMAIL PROTECTED] Unsubscribe: [EMAIL PROTECTED] List owner: [EMAIL PROTECTED] Shortcut URL to this page: http://groups.yahoo.com/group/php-list Yahoo! Groups Links <*> To visit your group on the web, go to: http://groups.yahoo.com/group/php-list/ <*> To unsubscribe from this group, send an email to: [EMAIL PROTECTED] <*> Your use of Yahoo! Groups is subject to: http://docs.yahoo.com/info/terms/
