From: Date: July 18 2007 3:16pm Subject: Re: Fwd: Error 2013 when running Configuration Wizard List-Archive: http://lists.mysql.com/bugs/15747 Message-Id: <7ffb3b2b0707180616rb35b2a9t10fbdd9b70a4b466@mail.gmail.com> MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----=_Part_89492_22612274.1184764583363" ------=_Part_89492_22612274.1184764583363 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline Thanks for the help. There's still a problem though: I started another command prompt, typed mysql -u root, and it gave me ERROR 2013 (HY000): Lost connection to MySQL server at 'reading initial communication packet', system error: 2 If I turn my firewall off, it works though. The thing is, I don't want to have to turn off my firewall to use mysql. I have Symantec, and MySQL is in the list of programs to allow. I didn't find an option to open specific ports. If anyone has experience with Symantec and knows what to do, that would be great. Thanks Jimmy On 7/17/07, Shawn Green wrote: > > Hi Jimmy, > > Jimmy Wu wrote: > > > > I've followed the manual setup instructions, and have mysql installed in > > C:\mysql > > running mysqld --console gives me what seems to be normal output > > similar to > > that in the manual, but the program freezes on me - it stops > > responding and > > the only thing I can do is force quit the command prompt. > > > > > What is happening is not a freeze. > > If the server has nothing to log, you will see nothing appear in the > screen. The reason you do not get a prompt back after issuing a mysqld > --console command is precisely because the server *is still running*. > The prompt won't reappear until after you stop the server. > > Start a second command prompt and issue the following command to start > an interactive mysql session using the Command Line Interface (the MySQL > CLI) > > shell>mysql -u root > > To end your session, type > > mysql> exit > > and you will be back at the command line prompt. To get your server to > stop (and restore interactive access to your first screen) you should > issue the following command: > > shell> mysqladmin -u root shutdown > > To learn more about the utilities "mysql" and "mysqladmin" please read > the following sections in the manual > http://dev.mysql.com/doc/refman/5.0/en/mysql.html > http://dev.mysql.com/doc/refman/5.0/en/mysqladmin.html > > and for a walkthough tutorial, please refer to chapter 3 > http://dev.mysql.com/doc/refman/5.0/en/connecting-disconnecting.html > > Kindly yours, > > -- > Shawn Green, Support Engineer > MySQL Inc., USA, www.mysql.com > Office: Blountville, TN > __ ___ ___ ____ __ > / |/ /_ __/ __/ __ \/ / > / /|_/ / // /\ \/ /_/ / /__ > /_/ /_/\_, /___/\___\_\___/ > <___/ > Join the Quality Contribution Program Today! > http://dev.mysql.com/qualitycontribution.html > > ------=_Part_89492_22612274.1184764583363--