Re: Can't Bind to Port

2007-03-03 Thread Tommy Nordgren
[EMAIL PROTECTED] Cc: mysql@lists.mysql.com Sent: Friday, March 2, 2007 7:32:16 PM Subject: Re: Can't Bind to Port server312# netstat -nlap tcp | grep 3306 tcp4 0 0 *.3306 *.*LISTEN So... mysqld *is* listening on 3306? Why does it complain that the port is being

Re: Can't Bind to Port

2007-03-03 Thread Drew Jenkins
- Original Message From: Tommy Nordgren [EMAIL PROTECTED] To: Drew Jenkins [EMAIL PROTECTED] Cc: mysql@lists.mysql.com Sent: Saturday, March 3, 2007 5:00:26 AM Subject: Re: Can't Bind to Port Try the command: find / -name mysql 2/dev/null then you will find out if you have multiple

Re: Can't Bind to Port

2007-03-03 Thread Drew Jenkins
- 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

Re: Can't Bind to Port

2007-03-03 Thread Drew Jenkins
26- Original Message From: [EMAIL PROTECTED] [EMAIL PROTECTED] To: Drew Jenkins [EMAIL PROTECTED] Sent: Saturday, March 3, 2007 10:53:45 AM Subject: Re: Can't Bind to Port kill off the first instance, the port will/should free up and then you can start your [second] instance. # ps wax

Re: Can't Bind to Port

2007-03-03 Thread Drew Jenkins
- Original Message From: [EMAIL PROTECTED] [EMAIL PROTECTED] To: Drew Jenkins [EMAIL PROTECTED] Sent: Saturday, March 3, 2007 11:25:37 AM Subject: Re: Can't Bind to Port I rebooted, then... server312# ps wax|grep mysqld server312# /usr/local/bin/mysqld_safe [1] 801 server312# Starting

Re: Can't Bind to Port

2007-03-03 Thread Drew Jenkins
- Original Message From: [EMAIL PROTECTED] [EMAIL PROTECTED] To: Drew Jenkins [EMAIL PROTECTED] Sent: Saturday, March 3, 2007 12:03:40 PM Subject: Re: Can't Bind to Port At this point, make certain that the mysql instance that you started (pid 801) is shut down properly, then probe

Re: Can't Bind to Port

2007-03-03 Thread Tommy Nordgren
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

Re: Can't Bind to Port

2007-03-03 Thread Drew Jenkins
- Original Message From: Tommy Nordgren [EMAIL PROTECTED] To: Drew Jenkins [EMAIL PROTECTED] Cc: mysql@lists.mysql.com Sent: Saturday, March 3, 2007 12:34:37 PM Subject: Re: Can't Bind to Port There is no need to be superuser to run find. But there can be problems if there is another

Re: Can't Bind to Port

2007-03-03 Thread Drew Jenkins
- Original Message From: Tommy Nordgren [EMAIL PROTECTED] To: Drew Jenkins [EMAIL PROTECTED] Sent: Saturday, March 3, 2007 1:03:30 PM Subject: Re: Can't Bind to Port You are probably using another shell than bash or another sh variant. No, I'm using bash...the standard shell. Didn't

Re: Can't Bind to Port

2007-03-03 Thread Drew Jenkins
- Original Message From: ed [EMAIL PROTECTED] To: Drew Jenkins [EMAIL PROTECTED] Sent: Saturday, March 3, 2007 1:06:16 PM Subject: Re: Can't Bind to Port None of those directories existed on my system. So I decided to try and find the ones to which you referred. The matches were inexact

Re: Can't Bind to Port

2007-03-03 Thread Drew Jenkins
- Original Message From: Tommy Nordgren [EMAIL PROTECTED] To: Drew Jenkins [EMAIL PROTECTED] Sent: Saturday, March 3, 2007 1:39:14 PM Subject: Re: Can't Bind to Port Well, I don't know what you do with this one, Tommy. I just cut and pasted your command, but when I hit the up arrow

Re: Can't Bind to Port

2007-03-03 Thread Drew Jenkins
20- Original Message From: ed [EMAIL PROTECTED] To: Drew Jenkins [EMAIL PROTECTED] Sent: Saturday, March 3, 2007 12:16:42 PM Subject: Re: Can't Bind to Port I figured it wouldn't hurt anything to change permissions on files, so I went ahead and changed all the permissions everywhere. I

Re: [MySQL] Re: Can't Bind to Port

2007-03-03 Thread Ashley M. Kirchner
Drew Jenkins wrote: server312# /usr/local/bin/mysqld_safe [1] 801 server312# Starting mysqld daemon with databases from /var/db/mysql server312# ps wax | grep mysqld 801 p0 S 0:00.01 /bin/sh /usr/local/bin/mysqld_safe 849 p0 S 0:00.16 /usr/local/libexec/mysqld

Re: [MySQL] Re: Can't Bind to Port

2007-03-03 Thread Drew Jenkins
- Original Message From: Ashley M. Kirchner [EMAIL PROTECTED] To: mysql@lists.mysql.com Sent: Saturday, March 3, 2007 4:09:41 PM Subject: Re: [MySQL] Re: Can't Bind to Port This indicates that you did indeed start the daemon. So then why are you trying to start it again? Of course it's

Can't Bind to Port

2007-03-02 Thread Drew Jenkins
Hi; I just installed MySQL from FreeBSD port. I specified using openssl. Outside of that, I changed nothing. I copied over the /etc/my.cnf as is, leaving the innodb stuff commented out. In preparing to install my database, I got this error: server312# mkdir /usr/local/localhost server312#

Re: Can't Bind to Port

2007-03-02 Thread Borokov Smith
netstat -nlp | grep 3306 greetz, boro Drew Jenkins wrote: Hi; I just installed MySQL from FreeBSD port. I specified using openssl. Outside of that, I changed nothing. I copied over the /etc/my.cnf as is, leaving the innodb stuff commented out. In preparing to install my database, I got this

Re: Can't Bind to Port

2007-03-02 Thread Drew Jenkins
- Original Message From: Borokov Smith [EMAIL PROTECTED] To: Drew Jenkins [EMAIL PROTECTED] Cc: mysql@lists.mysql.com Sent: Friday, March 2, 2007 6:21:59 PM Subject: Re: Can't Bind to Port netstat -nlp | grep 3306 Option p requires a protocol. What protocol should I give it? Drew

Re: Can't Bind to Port

2007-03-02 Thread Drew Jenkins
Oops. Forgot to add I passed it tcp as the protocol and it returned blank: # netstat -nlp tcp| grep 3306 # I presume that means nothing's listening on that port? If so, then why did nmap return mysql on that port? At any rate, what do? TIA, Drew

Re: Can't Bind to Port

2007-03-02 Thread Christophe Gregoir
Drew Jenkins wrote: - Original Message From: Borokov Smith [EMAIL PROTECTED] To: Drew Jenkins [EMAIL PROTECTED] Cc: mysql@lists.mysql.com Sent: Friday, March 2, 2007 6:21:59 PM Subject: Re: Can't Bind to Port netstat -nlp | grep 3306 Option p requires a protocol. What

Re: Can't Bind to Port

2007-03-02 Thread Tommy Nordgren
On 3 mar 2007, at 00.21, Drew Jenkins wrote: Oops. Forgot to add I passed it tcp as the protocol and it returned blank: # netstat -nlp tcp| grep 3306 # I presume that means nothing's listening on that port? If so, then why did nmap return mysql on that port? At any rate, what do? TIA,

Re: Can't Bind to Port

2007-03-02 Thread Drew Jenkins
26- Original Message From: Tommy Nordgren [EMAIL PROTECTED] To: Drew Jenkins [EMAIL PROTECTED] Cc: mysql@lists.mysql.com Sent: Friday, March 2, 2007 7:32:16 PM Subject: Re: Can't Bind to Port server312# netstat -nlap tcp | grep 3306 tcp4 0 0 *.3306