Re: mysql error 2013 Lost connection to MySQL server during query

2009-06-02 Thread Per Jessen
Per Jessen wrote: It happened agaIn this morning, but slightly different: [snip] thd=0x7fe0140c7e00 Attempting backtrace. You can use the following information to find out where mysqld died. If you see no messages after this, something went terribly wrong... Cannot determine thread,

Re: mysql error 2013 Lost connection to MySQL server during query

2009-05-27 Thread Per Jessen
Per Jessen wrote: I have just discovered that my mysql server was restarted this morning, which is what gave me the 2013. In the log I found this: [snip] It happened agaIn this morning, but slightly different: [snip] thd=0x7fe0140c7e00 Attempting backtrace. You can use the following

mysql error 2013 Lost connection to MySQL server during query

2009-05-25 Thread Per Jessen
This weekend we completed migrating a large(ish) mysql server from 5.0.26 on 32bit to 5.0.51a on 64bit. Everything went relatively smoothly, until this morning when I noticed an application had choked on getting Error 2013 Lost connection to MySQL server during query. The application is running

Re: mysql error 2013 Lost connection to MySQL server during query

2009-05-25 Thread Per Jessen
Per Jessen wrote: This weekend we completed migrating a large(ish) mysql server from 5.0.26 on 32bit to 5.0.51a on 64bit. Everything went relatively smoothly, until this morning when I noticed an application had choked on getting Error 2013 Lost connection to MySQL server during query. I

Re: mysql error 2013 Lost connection to MySQL server during query

2009-05-25 Thread Per Jessen
Michael Dykman wrote: It might be helpful if you could tell us how you affected your data migration Sorry, I'm not familiar with reporting problems in/on mysql. The data migration was done with a full database dump (mysqldump) from the 32bit system, then a reload on the new 64bit system.

Re: mysql error 2013 Lost connection to MySQL server during query

2009-05-25 Thread Michael Steinfeld
just a thought: Did you run mysql_upgrade after the import? On Mon, May 25, 2009 at 10:19 AM, Per Jessen p...@computer.org wrote: Michael Dykman wrote: It might be helpful if you could tell us how you affected your data migration Sorry, I'm not familiar with reporting problems in/on mysql.

Re: mysql error 2013 Lost connection to MySQL server during query

2009-05-25 Thread Per Jessen
Michael Steinfeld wrote: just a thought: Did you run mysql_upgrade after the import? No, I didn't - I didn't think of it as I really only moved the data across. best regards Per Jessen, Zürich -- MySQL General Mailing List For list archives: http://lists.mysql.com/mysql To unsubscribe:

Re: mysql error 2013 Lost connection to MySQL server during query

2009-05-25 Thread Per Jessen
Per Jessen wrote: Michael Steinfeld wrote: just a thought: Did you run mysql_upgrade after the import? No, I didn't - I didn't think of it as I really only moved the data across. Okay, have done a mysqlcheck --check-upgrade - came back all clean. I don't see a need to run

Re: mysql error 2013 Lost connection to MySQL server during query

2009-05-25 Thread Michael Dykman
Have you tried running the offending SQL manually against you new installation? Does it come back clean in the isolated case? Is there anything else which runs against this database at night? crons? Could you post the script that you are running to give some context to the statement which winds

Re: mysql error 2013 Lost connection to MySQL server during query

2009-05-25 Thread Michael Steinfeld
On Mon, May 25, 2009 at 11:19 AM, Per Jessen p...@computer.org wrote: Per Jessen wrote: Michael Steinfeld wrote: just a thought: Did you run mysql_upgrade after the import? No, I didn't - I didn't think of it as I really only moved the data across. I suspect that will solve your issue.

Re: mysql error 2013 Lost connection to MySQL server during query

2009-05-25 Thread Per Jessen
Michael Dykman wrote: Have you tried running the offending SQL manually against you new installation? Does it come back clean in the isolated case? No, not manually, but the job/the SQL is run several times a day, maybe 2-3 times per hour. Is there anything else which runs against this

Re: mysql error 2013 Lost connection to MySQL server during query

2009-05-25 Thread Per Jessen
Per Jessen wrote: Michael Dykman wrote: Have you tried running the offending SQL manually against you new installation? Does it come back clean in the isolated case? No, not manually, but the job/the SQL is run several times a day, maybe 2-3 times per hour. I've also just run the query

Re: mysql error 2013 Lost connection to MySQL server during query

2009-05-25 Thread Michael Dykman
Given the new hardware, I'm now suspecting the RAID controller. I have seen misconfigured RAIDs or bad RAID drivers take out a server in just such a manner. I had a debian server connected to an EMC SAN.. As debian isn't supported, we had this open-source driver which gave us no end of problems.

Re: mysql error 2013 Lost connection to MySQL server during query

2009-05-25 Thread Per Jessen
Michael Dykman wrote: Given the new hardware, I'm now suspecting the RAID controller. I have seen misconfigured RAIDs or bad RAID drivers take out a server in just such a manner. I had a debian server connected to an EMC SAN.. As debian isn't supported, we had this open-source driver which

Re: mysql error 2013 Lost connection to MySQL server during query

2009-05-25 Thread Michael Dykman
The issues that we saw only came to light under stress. The application I am referring to ran under a fair bit of load at the best of times but it was during sustained spikes that the flaws in our driver made themselves apparent. Mind you, we weren't using JFS, so I'm not sure how that would

Re: mysql error 2013 Lost connection to MySQL server during query

2009-05-25 Thread Darryle Steplight
an application had choked on getting Error 2013 Lost connection to MySQL server during query. The application is running remotely on 32bit using mysql library from version 5.0.67. I've been googling quite a bit, but haven't really found anything of any use.  I've checked the two configurations

Re: mysql error 2013 Lost connection to MySQL server during query

2009-05-25 Thread Per Jessen
Darryle Steplight wrote: Hi Per, Maybe you need to beef up your CONNECT_TIMEOUT setting in your .my.cnf file. Are these queries appearing in your slow query logs?What is your LOG_QUERY_TIMES set too? Here are some other settings you may want to play around wtih CONNECT_TIMEOUT

Re: ? Solved ? Re: mysqldump: Error 2013: Lost connection to MySQL server

2009-01-13 Thread Andrew Garner
This sounds like you need to raise max_allowed_packet for mysqldump (and possibly mysqld) - these are separate settings for both the client and the server. You can do this via the my.cnf (or ~/.my.cnf) or specify it as an option on the command line mysqldump --opt ... --max_allowed_packet=1G

Re: ? Solved ? Re: mysqldump: Error 2013: Lost connection to MySQL server

2009-01-13 Thread Dan
On Tue, 13 Jan 2009 18:34:44 -0600, Andrew Garner andrew.b.gar...@gmail.com wrote: This sounds like you need to raise max_allowed_packet for mysqldump (and possibly mysqld) - these are separate settings for both the client and the server. You can do this via the my.cnf (or ~/.my.cnf) or

Re: ? Solved ? Re: mysqldump: Error 2013: Lost connection to MySQL server

2009-01-13 Thread Andrew Garner
On Tue, Jan 13, 2009 at 6:06 PM, Dan d...@entropy.homelinux.org wrote: On Tue, 13 Jan 2009 18:34:44 -0600, Andrew Garner andrew.b.gar...@gmail.com wrote: This sounds like you need to raise max_allowed_packet for mysqldump (and possibly mysqld) - these are separate settings for both the

mysqldump: Error 2013: Lost connection to MySQL server

2009-01-12 Thread Daniel Kasak
Hi all. I have a 30GB innodb-only database in mysql-5.0.54. I have always done nightly backups with: mysqldump --opt db_name db_name.sql -p Recently this started failing with: Error 2013: Lost connection to MySQL server I have checked all tables for corruption - nothing found. Also as far as I

Re: mysqldump: Error 2013: Lost connection to MySQL server

2009-01-12 Thread Chandru
at 9:07 AM, Daniel Kasak d...@entropy.homelinux.orgwrote: Hi all. I have a 30GB innodb-only database in mysql-5.0.54. I have always done nightly backups with: mysqldump --opt db_name db_name.sql -p Recently this started failing with: Error 2013: Lost connection to MySQL server I have

Re: mysqldump: Error 2013: Lost connection to MySQL server

2009-01-12 Thread Dan
nightly backups with: mysqldump --opt db_name db_name.sql -p Recently this started failing with: Error 2013: Lost connection to MySQL server I have checked all tables for corruption - nothing found. Also as far as I can tell there are no issues with clients using the database. There have

Re: mysqldump: Error 2013: Lost connection to MySQL server

2009-01-12 Thread Aaron Blew
I'm also having a similar issue with some tables I've been trying to dump (total data set is around 3TB). I'm dumping directly from one host to another (mysqldump -hSOURCE DATABASE | mysql -hLOCALHOST DATABASE) using mysql 4.1.22. One system is Solaris 10 SPARC, while the other is Solaris 10 x64

Error 2013 (Lost Connection to MySQL Server) On A Solaris 10 Box

2007-06-12 Thread Rajesh Mehrotra
Hi, We copied over a test copy of a multi-GB database to a new Sun V440 box running Solaris 10 (64-bit) with a 64-bit MySQL install. When trying to connect to the database, we consistently get Error 2013. Any pointers? TIA. Sincerely, Raj Mehrotra hccs [EMAIL PROTECTED] mailto:[EMAIL

Re: Error 2013 (Lost Connection to MySQL Server) On A Solaris 10 Box

2007-06-12 Thread Baron Schwartz
Rajesh Mehrotra wrote: Hi, We copied over a test copy of a multi-GB database to a new Sun V440 box running Solaris 10 (64-bit) with a 64-bit MySQL install. When trying to connect to the database, we consistently get Error 2013. Any pointers? Check the server's error log and see if there's

A question about how to debug the error 2013, 'Lost connection to MySQL server during query'

2007-05-23 Thread aiton
I am running the 64 bit version of mysql server 5.1.18, and on the client side I am running python with the mysqldb module. While running a very large insert query I get the following error : 2013, 'Lost connection to MySQL server during query' I have --log-warnings set to 3, but I get

Re: A question about how to debug the error 2013, 'Lost connection to MySQL server during query'

2007-05-23 Thread Sebastian Mendel
[EMAIL PROTECTED] schrieb: I am running the 64 bit version of mysql server 5.1.18, and on the client side I am running python with the mysqldb module. While running a very large insert query I get the following error : 2013, 'Lost connection to MySQL server during query' I have --log

Re: ERROR 2013: Lost connection to MySQL server during query

2005-04-21 Thread Michael Gale
Daniel Kasak wrote: Michael Gale wrote: Hello, Earlier today I tried to make some table alterations on a mysql server (4.0.24) and kept on receiving this error: ERROR 2013: Lost connection to MySQL server during query I would login to the server, either through the socket or using the IP

ERROR 2013: Lost connection to MySQL server during query

2005-04-20 Thread Michael Gale
Hello, Earlier today I tried to make some table alterations on a mysql server (4.0.24) and kept on receiving this error: ERROR 2013: Lost connection to MySQL server during query I would login to the server, either through the socket or using the IP. Then connect to a database and try

Re: ERROR 2013: Lost connection to MySQL server during query

2005-04-20 Thread Daniel Kasak
Michael Gale wrote: Hello, Earlier today I tried to make some table alterations on a mysql server (4.0.24) and kept on receiving this error: ERROR 2013: Lost connection to MySQL server during query I would login to the server, either through the socket or using the IP. Then connect

ERROR 2013: Lost connection to MySQL server during query

2005-03-18 Thread sol beach
/initial_20050318_102517/page_path.tab4' - REPLACE INTO TABLE page_path - FIELDS TERMINATED BY '^' OPTIONALLY ENCLOSED BY '' LINES TERMINATED BY '\n' - (PAGE_PATH_ID,NAME,DATE_CREATED); ERROR 2013: Lost connection to MySQL server during query mysql [EMAIL PROTECTED]:/b/martgen/mysql/bingrep -i

ERROR 2013: Lost connection to MySQL server during query

2004-07-09 Thread Batara Kesuma
Hi, I am running Debian sarge with MySQL 4.0.20. My problem is I can connect from localhost, but when I try to connect from other host this error comes up: ERROR 2013: Lost connection to MySQL server during query I tried from many clients, included MySQL 4.0 and MySQL 3.23, but they all got same

Re: ERROR 2013: Lost connection to MySQL server during query

2004-07-09 Thread Batara Kesuma
I am running Debian sarge with MySQL 4.0.20. My problem is I can connect from localhost, but when I try to connect from other host this error comes up: ERROR 2013: Lost connection to MySQL server during query Sorry I found the answer. I have ALL:ALL in hosts.deny -- MySQL General Mailing

Re: error 2013 : Lost connection to MySQL server during query

2004-06-07 Thread Daniel Whitener
: Lost connection to MySQL server during query during inserts on a lightly-loaded mysql server. I also noticed the following error in the error log... Version: '4.0.20-standard-log' socket: '/tmp/mysql.sock' port: 3306 040603 16:25:48 Aborted connection 1 to db: 'milterdb' user: 'milteruser

error 2013 : Lost connection to MySQL server during query

2004-06-03 Thread Daniel Whitener
Hello all, I'm getting the error message 2013 : Lost connection to MySQL server during query during inserts on a lightly-loaded mysql server. I also noticed the following error in the error log... Version: '4.0.20-standard-log' socket: '/tmp/mysql.sock' port: 3306 040603 16:25:48 Aborted

ERROR 2013:Lost connection to MySQL server

2003-07-01 Thread Miguel Perez
Hi folks: I have the following problem, when I try to connect to my DB servicios I get connected succesfully, but when I try to access certain tables I get the error ERROR 2013: Lost connection to MySQL server during query but only with those certain tables, to be more specific there's only 2

Re: ERROR 2013:Lost connection to MySQL server

2003-07-01 Thread Fred van Engen
Hi, On Tue, Jul 01, 2003 at 02:13:23PM -0500, Miguel Perez wrote: I have the following problem, when I try to connect to my DB servicios I get connected succesfully, but when I try to access certain tables I get the error ERROR 2013: Lost connection to MySQL server during query but only

Re: ERROR 2013:Lost connection to MySQL server

2003-07-01 Thread Miguel Perez
Engen [EMAIL PROTECTED] To: Miguel Perez [EMAIL PROTECTED] CC: [EMAIL PROTECTED] Subject: Re: ERROR 2013:Lost connection to MySQL server Date: Tue, 1 Jul 2003 21:23:41 +0200 Hi, On Tue, Jul 01, 2003 at 02:13:23PM -0500, Miguel Perez wrote: I have the following problem, when I try to connect to my DB

Re: ERROR 2013:Lost connection to MySQL server

2003-07-01 Thread Heikki Tuuri
, July 02, 2003 12:11 AM Subject: Re: ERROR 2013:Lost connection to MySQL server The OS I'm using is Red Hat 7.3, and the mysql version is 4.0 The wierd thing is that I could access those tables but just after I rebooted my PC I couldn't access the 2 tables. The log files has the following

Re: ERROR 2013:Lost connection to MySQL server

2003-07-01 Thread Fred van Engen
On Tue, Jul 01, 2003 at 04:09:26PM -0500, Miguel Perez wrote: The OS I'm using is Red Hat 7.3, and the mysql version is 4.0 The wierd thing is that I could access those tables but just after I rebooted my PC I couldn't access the 2 tables. The log files has the following: 030701

Re: ERROR 2013:Lost connection to MySQL server

2003-07-01 Thread Miguel Perez
PROTECTED] To: [EMAIL PROTECTED] Subject: Re: ERROR 2013:Lost connection to MySQL server Date: Wed, 2 Jul 2003 00:35:09 +0300 Miguel, what exact MySQL version you are running? Have you created FOREIGN KEY constraints to those tables? Have you downgraded to a lower MySQL version? Regards, Heikki

Re: ERROR 2013:Lost connection to MySQL server

2003-07-01 Thread Heikki Tuuri
PROTECTED]; [EMAIL PROTECTED] Sent: Wednesday, July 02, 2003 12:47 AM Subject: Re: ERROR 2013:Lost connection to MySQL server I am running the 4.0.12 version For those tables I don't have FOREIGN KEYS here is the table desc. CREATE TABLE CLIENTE ( FINGCIOID smallint(6) NOT NULL default '0

Re: ERROR 2013:Lost connection to MySQL server

2003-07-01 Thread Miguel Perez
Message - From: Miguel Perez [EMAIL PROTECTED] To: [EMAIL PROTECTED]; [EMAIL PROTECTED] Sent: Wednesday, July 02, 2003 12:47 AM Subject: Re: ERROR 2013:Lost connection to MySQL server I am running the 4.0.12 version For those tables I don't have FOREIGN KEYS here is the table desc. CREATE

Re: ERROR 2013:Lost connection to MySQL server

2003-07-01 Thread Heikki Tuuri
Miguel, best to upgrade to 4.0.13 because it has better diagnostics. Regards, Heikki - Original Message - From: Miguel Perez [EMAIL PROTECTED] To: [EMAIL PROTECTED]; [EMAIL PROTECTED] Sent: Wednesday, July 02, 2003 1:03 AM Subject: Re: ERROR 2013:Lost connection to MySQL server

Re: ERROR 2013:Lost connection to MySQL server

2003-07-01 Thread Pete Harlan
On Wed, Jul 02, 2003 at 12:55:38AM +0300, Heikki Tuuri wrote: ... 4.0.13 has better diagnostics. Please upgrade to it if you are not using MySQL replication. Is there something wrong with 4.0.13's replication, or does it not replicate properly with 4.0.12? --Pete -- MySQL General Mailing

Re: ERROR 2013:Lost connection to MySQL server

2003-07-01 Thread Heikki Tuuri
Pete, INSERT ... SELECT ... does not replicate properly with AUTO_INCREMENTs. Regards, Heikki - Original Message - From: Pete Harlan [EMAIL PROTECTED] To: Heikki Tuuri [EMAIL PROTECTED] Cc: [EMAIL PROTECTED] Sent: Wednesday, July 02, 2003 1:10 AM Subject: Re: ERROR 2013:Lost

Re: ERROR 2013: Lost connection to MySQL server during query on LOAD LOCAL IN FILE

2003-06-21 Thread miguel solórzano
. mysql use sqlreg3; Database changed mysql LOAD DATA LOCAL INFILE 'C:\\ProjetosD6\\MySQLBackup\\binario\\cfgimpressao.dat' INT O TABLE cfgimpressao; ERROR 2013: Lost connection to MySQL server during query mysql The Files of table are in FTP the names is: cfgimpressao.dat.zip - The zipped Data

ERROR 2013: Lost connection to MySQL server during query on LOAD LOCAL IN FILE

2003-06-20 Thread Dyego Souza do Carmo
\\binario\\cfgimpressao.dat' INT O TABLE cfgimpressao; ERROR 2013: Lost connection to MySQL server during query mysql The Files of table are in FTP the names is: cfgimpressao.dat.zip - The zipped Data of File ( saved with the OUTFILE command, please unzip before run ! ) cfgimpressao.str

Re: Error 2013 - Lost connection to MySQL server during query

2003-03-04 Thread Suporte
Now, it's working fine ! Thanks a lot Nivaldo - Original Message - From: [EMAIL PROTECTED] To: [EMAIL PROTECTED]; [EMAIL PROTECTED] Sent: Tuesday, March 04, 2003 12:12 AM Subject: Re: Error 2013 - Lost connection to MySQL server during query Suporte schrieb: Hi

Error 2013: Lost connection to mysql server during query

2003-03-03 Thread Bob Verity
Like several other people I noticed on the web, I am receiving an error message Error 2013: Lost connection to mysql server during query, however I can not find the results of you corrections? Can you please point me to the place where I can find a fix for this error? Thanks Bob

Error 2013 - Lost connection to MySQL server during query

2003-03-03 Thread Suporte
Hi I installed MySQL on a server running RedHat 8.0 and it's working fine. But when I try to connect to MySQL from a remote station, using MySQL Control Center, or even using the command-line mysql, I get the message: Error 2013 - Lost connection to MySQL server during query The remote

Re: Error 2013 - Lost connection to MySQL server during query

2003-03-03 Thread [EMAIL PROTECTED]
Suporte schrieb: Hi I installed MySQL on a server running RedHat 8.0 and it's working fine. But when I try to connect to MySQL from a remote station, using MySQL Control Center, or even using the command-line mysql, I get the message: Error 2013 - Lost connection to MySQL server during query

Error 2013: Lost connection to MySQL server

2002-12-19 Thread Aaron J. Martin
mysql client connectiosn work fine on localhost, but connections from other hosts on local area network fail with the following error: ERROR 2013: Lost connection to MySQL server during query This is an existing installation. I had mysql-3.23.33 working and was trying to upgrade to a more

ERROR 2013: Lost connection to MySQL server during query

2002-10-29 Thread Jan Tobolk
Hi, I have MySQL version 3.23.41 and when I connect from localhost, it's OK. Hovewer, when I connect via IP (f.e. mysql -h IP, or from other computer in Internet), then MySQL resut error ERROR 2013: Lost connection to MySQL server during query. This is a part of variable from MySQL on the my

re: ERROR 2013: Lost connection to MySQL server during query

2002-10-28 Thread Davide Pennica
Thanks for your help, we have installed MySQL 2.23.53a on Red Hat 8.0. The problem seems to be the version of RedHat. We have now installed the same version of MySql on RedHat 7.3 and it seems to work fine. Can you give me a confirmation of this problem? Thanks Davide On Fri, 2002-10-25 at

re: re: ERROR 2013: Lost connection to MySQL server during query

2002-10-28 Thread Egor Egorov
Davide, Monday, October 28, 2002, 9:56:46 AM, you wrote: DP Thanks for your help, we have installed MySQL 2.23.53a on Red Hat 8.0. DP The problem seems to be the version of RedHat. We have now installed the DP same version of MySql on RedHat 7.3 and it seems to work fine. Can you DP give me a

ERROR 2013: Lost connection to MySQL server during query

2002-10-25 Thread Davide Pennica
Hy All, I'm new to MySQL. I am trying to set replication in MySQL but i get the error in the subject. Can you help me please? Thanks to all - Before posting, please check: http://www.mysql.com/manual.php (the

re: ERROR 2013: Lost connection to MySQL server during query

2002-10-25 Thread Egor Egorov
Davide, Friday, October 25, 2002, 11:57:23 AM, you wrote: DP I'm new to MySQL. I am trying to set replication in MySQL but i get the DP error in the subject. DP Can you help me please? Can you be more detailed? What OS? What versions of MySQL servers? What did you done before you got this

Another solution for ERROR 2013: Lost connection to MySQL server during query

2002-10-19 Thread Dishko Georgiev
Hi all, I found another solution of a problem with buggy glibc. Try to start mysqld with --skip-name-resolve It's work for me fine, but hosts part in security must be only IP addresses, not names. Dishko Georgiev SysAdmin Terasyst Ltd.

ERROR 2013: Lost connection to MySQL server during query

2002-10-18 Thread Animesh
Hi All,, I am getting this error and mysqld is dying out while tring to access a particular table in a particular databae while others don't fail.. ERROR 2013: Lost connection to MySQL server during query Plz Help as early as possible. Regards, Animesh [EMAIL PROTECTED] DeepRoot Linux Pvt

Re: ERROR 2013: Lost connection to MySQL server during query

2002-10-18 Thread //mikezero/
hostname' flag it would boot me, they only way i could get in was with out the '-h'. Animesh wrote: Hi All,, I am getting this error and mysqld is dying out while tring to access a particular table in a particular databae while others don't fail.. ERROR 2013: Lost connection to MySQL server during

Re: ERROR 2013: Lost connection to MySQL server during query

2002-10-18 Thread Eric
Hi, I know there is more than one reason that this error can occur, but I have not seen a good guide to debuging. It might help, if you are using DBI to do a trace to a log file. I have this happen every once in a while, but can't track it down because it is one query out of hundreds and I

Re: ERROR 2013: Lost connection to MySQL server during query

2002-10-18 Thread Jocelyn Fournier
] Sent: Friday, October 18, 2002 6:37 PM Subject: Re: ERROR 2013: Lost connection to MySQL server during query Hi, I know there is more than one reason that this error can occur, but I have not seen a good guide to debuging. It might help, if you are using DBI to do a trace to a log file. I

Re: ERROR 2013: Lost connection to MySQL server during query

2002-10-18 Thread Eric
Thanks for the reply. -rw-rw 1 mysql mysql 12766 Oct 10 12:16 bob-bin.072 -rw-rw 1 mysql mysql 506213 Oct 15 09:11 bob-bin.073 -rw-rw 1 mysql mysql 40391597 Oct 17 12:52 bob-bin.074 -rw-rw 1 mysql mysql 98 Oct 17 12:53 bob-bin.075 -rw-rw 1

RE: ERROR 2013: Lost connection to MySQL server during query

2002-10-18 Thread Will Merrell
: Friday, October 18, 2002 4:53 PM To: [EMAIL PROTECTED] Subject: ERROR 2013: Lost connection to MySQL server during query Hi All,, I am getting this error and mysqld is dying out while tring to access a particular table in a particular databae while others don't fail.. ERROR 2013: Lost

Re: ERROR 2013: Lost connection to MySQL server during query

2002-10-18 Thread Insanely Great
://www.sqlyog.com/ - Original Message - From: Animesh [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Saturday, October 19, 2002 2:23 AM Subject: ERROR 2013: Lost connection to MySQL server during query Hi All,, I am getting this error and mysqld is dying out while tring to access

Error 2013: Lost connection to MySQL server during query

2002-02-20 Thread Egor Egorov
Tim, Tuesday, February 19, 2002, 9:57:07 PM, you wrote: TW Hopefully someone out there can help me as I haven't been able to find any TW documentation on this that applies. TW I am running MySQL version 3.22.32 on a FreeBSD v4.4 machine. I am getting TW Error 2013: Lost connection to MySQL

Error 2013: Lost connection to MySQL server during query

2002-02-19 Thread Tim Walker
Hopefully someone out there can help me as I haven't been able to find any documentation on this that applies. I am running MySQL version 3.22.32 on a FreeBSD v4.4 machine. I am getting Error 2013: Lost connection to MySQL server during query when I run the following query: select distinct

ERROR 2013: Lost connection to MySQL server during query

2001-11-26 Thread guillaume Membré
Dear all I have a problem when I specified my host in order to connect to my mysql server : mysql -h p204 ERROR 2013: Lost connection to MySQL server during query I have just installed the server and set a pass for the root user. In hope of your help Guillaume

Re: ERROR 2013: Lost connection to MySQL server during query

2001-07-10 Thread Kurt Hansen
. Any ideas why it would be taking so long? This is on a RH 6.0 system. Thank you! Kurt Hansen [EMAIL PROTECTED] Subject: ERROR 2013: Lost connection to MySQL server during query Hello, I'm getting the error message above whenever I try to connect from a remote host to a MySQL server

ERROR 2013: Lost connection to MySQL server during query

2001-07-09 Thread Kurt Hansen
Hello, I'm getting the error message above whenever I try to connect from a remote host to a MySQL server. I issue the following command: mysql --host=host_name -u user_name -ppass_word and get the ERROR 2013 back as a response. We have two servers, both running MySQL. I get the same message

RE: ERROR 2013: Lost connection to MySQL server during query

2001-07-09 Thread Milos Rackov
2013: Lost connection to MySQL server during query Hello, I'm getting the error message above whenever I try to connect from a remote host to a MySQL server. I issue the following command: mysql --host=host_name -u user_name -ppass_word and get the ERROR 2013 back as a response. We have two

Re: ERROR 2013: Lost connection to MySQL server during query

2001-07-09 Thread Kurt Hansen
Hansen [EMAIL PROTECTED]; [EMAIL PROTECTED] Sent: Monday, July 09, 2001 8:59 AM Subject: RE: ERROR 2013: Lost connection to MySQL server during query I had a similar problem recently. Try checking the /etc/hosts file to see if the hosts/IPs are matching the current config. Regards, Milos

ERROR 2013: Lost connection to MySQL server during query

2001-04-17 Thread Claudia M. Castaneda
I could not find a reference in the manual to this error message. What could be happening? It is the first problem I have with the database since installation two years ago- well almost three. Thanks, --- Claudia M. Castaneda Phone 301 286 3397