Re: Port 3306 restricted to IP addresses

2002-04-04 Thread Michael Zimmermann
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 At Donnerstag, 4. April 2002 21:24 adam nelson wrote: > Firewall isn't good enough (who else is inside your firewall, likely the > entire hosting company or internal corporate network). The user table > has a host column that I use. Also, you can en

RE: Port 3306 restricted to IP addresses

2002-04-04 Thread adam nelson
ssage- From: Michael Zimmermann [mailto:[EMAIL PROTECTED]] Sent: Thursday, April 04, 2002 8:34 AM To: Tshering Norbu; [EMAIL PROTECTED] Subject: Re: Port 3306 restricted to IP addresses -BEGIN PGP SIGNED MESSAGE- Hash: SHA1 At Donnerstag, 4. April 2002 12:23 Tshering Norbu wrote: >

Re: Port 3306 restricted to IP addresses

2002-04-04 Thread Michael Zimmermann
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 At Donnerstag, 4. April 2002 12:23 Tshering Norbu wrote: > For the inbound connection on port 3306 of MySQL Server, how do I restrict > the connection to some IP addresses something like 1.2.3.* > > What do I need to do in my.cnf file? I let the fire

Re: Port 3306 restricted to IP addresses

2002-04-04 Thread Egor Egorov
Tshering, Thursday, April 04, 2002, 1:23:09 PM, you wrote: TN> For the inbound connection on port 3306 of MySQL Server, how do I restrict TN> the connection to some IP addresses something like 1.2.3.* TN> What do I need to do in my.cnf file? Nothing. You should use 'host' table in the 'mysql' d

RE: Port 3306 restricted to IP addresses

2002-04-04 Thread Roger Baklund
* Tshering Norbu > For the inbound connection on port 3306 of MySQL Server, how do I restrict > the connection to some IP addresses something like 1.2.3.* > > What do I need to do in my.cnf file? Nothing, this is done from the client. http://www.mysql.com/doc/G/R/GRANT.html > -- Roger ---

Re: Port 3306 restricted to IP addresses

2002-04-04 Thread Dicky Wahyu Purnomo
On Thu, 4 Apr 2002 16:23:09 +0600 "Tshering Norbu" <[EMAIL PROTECTED]> wrote: > For the inbound connection on port 3306 of MySQL Server, how do I restrict > the connection to some IP addresses something like 1.2.3.* > > What do I need to do in my.cnf file? > > Thanks in advance. you are playin

Re: Port 3306

2001-02-06 Thread Eran Boudjnah
Yes, sockets are much faster. Best regards, -Eran "William R. Mussatto" wrote: > On Mon, 5 Feb 2001 [EMAIL PROTECTED] wrote: > > > Date: Mon, 5 Feb 2001 13:11:51 -0800 > > From: [EMAIL PROTECTED] > > To: Gus Constan <[EMAIL PROTECTED]> > > Cc

Re: Port 3306

2001-02-06 Thread btjones
> From: [EMAIL PROTECTED] > To: Gus Constan <[EMAIL PROTECTED]> > Cc: [EMAIL PROTECTED] > Subject: Re: Port 3306 > > > Add --skip-networking to your my.cnf file or pass it on the command line to > safe_mysqld. This will stop ALL TCP connections to mySQL, so you'll h

Re: Port 3306

2001-02-06 Thread William R. Mussatto
On Mon, 5 Feb 2001 [EMAIL PROTECTED] wrote: > Date: Mon, 5 Feb 2001 13:11:51 -0800 > From: [EMAIL PROTECTED] > To: Gus Constan <[EMAIL PROTECTED]> > Cc: [EMAIL PROTECTED] > Subject: Re: Port 3306 > > > Add --skip-networking to your my.cnf file or pass it on the

Re: Port 3306

2001-02-05 Thread Eran Boudjnah
ROTECTED]] > > Sent: Monday, February 05, 2001 2:46 PM > > To: Gus Constan > > Cc: [EMAIL PROTECTED] > > Subject: Re: Port 3306 > > > > > > What OS?  If Linux or *BSD, they have firewall software > > (ipchains on linux, > > don't recall what

Re: Port 3306

2001-02-05 Thread btjones
Add --skip-networking to your my.cnf file or pass it on the command line to safe_mysqld. This will stop ALL TCP connections to mySQL, so you'll have to use the server name "localhost" in your connection strings to force use of the unix socket. If your installation requires MIT-threads, this is

RE: Port 3306

2001-02-05 Thread johnny p.
ffect your system... johnny p. > -Original Message- > From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] > Sent: Monday, February 05, 2001 2:46 PM > To: Gus Constan > Cc: [EMAIL PROTECTED] > Subject: Re: Port 3306 > > > What OS? If Linux or *BSD, they have firewa

Re: Port 3306

2001-02-05 Thread Mikel King
fwcmd=/sbin/ipfw<... on BSD usage like so ${FWCMD} add deny all from any to any via ${oif} Have to make a new kernel to support ipfw though cheers, mikel [EMAIL PROTECTED] wrote: > What OS? If Linux or *BSD, they have firewall software (ipchains on linux, > don't recall what i

Re: Port 3306

2001-02-05 Thread Kevin . Brown
What OS? If Linux or *BSD, they have firewall software (ipchains on linux, don't recall what it is on BSD) > I'm new to MySQL, this may be a simple question; > > How do I turn off listen on port 3306?, I don't want to serve MySQL on the > net, I only need it for local > (server side) access. >