On 3 mar 2007, at 15.31, Drew Jenkins wrote:

----- Original Message ----
From: ed <[EMAIL PROTECTED]>
To: Drew Jenkins <[EMAIL PROTECTED]>
Sent: Saturday, March 3, 2007 10:24:54 AM
Subject: Re: Can't Bind to Port

be root/superuser;
try it as "find / -name mysql" and then, (as in 2nd) send they instances
of mysql that you do not want to /dev/null
this assumes a *nix not MS WIndows install, I do believe...

# find / -name mysql
/usr/local/bin/mysql
/usr/local/include/mysql
/usr/local/lib/mysql
/usr/local/libdata/ldconfig/mysql
/usr/local/share/mysql
/usr/backup/usr/local/include/mysql
/var/db/mysql
/var/db/mysql/mysql

I believe I want all of those ;)
TIA,
Drew

        There is no need to be superuser to run find. But there can be problems
if there is another find command earlier in the PATH, than the standard unix find utility.
Try running :
/usr/bin/find / -name 'mysqld'  2>/dev/null

This will show if you have multiple instances of the mysqld server daemon on your system.
the syntax 2>/dev/null
redirects standard error to /dev/null,
skipping error messages about unaccessible directories
----
Kine dies, Kinfolk dies, and thus at last yourself
This I know that never dies, how a dead mans deeds are deemed. -- Elder edda
Tommy Nordgren
[EMAIL PROTECTED]




--
MySQL General Mailing List
For list archives: http://lists.mysql.com/mysql
To unsubscribe:    http://lists.mysql.com/[EMAIL PROTECTED]

Reply via email to