Free webinar about MySQL problem diagnosis

2012-05-04 Thread Baron Schwartz
I'll present a free webinar today about troubleshooting intermittent MySQL problems. These are often hard to pin down because they happen when you're not looking, so you can't reliably determine the symptoms or the cause. I've created some free tools (part of Percona Toolkit) to make this process

Re: Free webinar about MySQL problem diagnosis

2012-05-04 Thread Claudio Nanni
Thanks Baron! Very much valuable! Looking forward for it! Claudio 2012/5/4 Baron Schwartz ba...@xaprb.com I'll present a free webinar today about troubleshooting intermittent MySQL problems. These are often hard to pin down because they happen when you're not looking, so you can't reliably

mysql problem

2009-04-21 Thread AZZOPARDI Konrad
Hello people,   I do not know if this the right listI am migrating a very basic application from an older mysql version 4.1.9-standard to a new mysql version 5.0.45  {RedHat default package}. I have migrated DB data from one to the other and all data seems to be there including the

Re: mysql problem

2009-04-21 Thread Gerald L. Clark
AZZOPARDI Konrad wrote: Hello people, I do not know if this the right listI am migrating a very basic application from an older mysql version 4.1.9-standard to a new mysql version 5.0.45 {RedHat default package}. I have migrated DB data from one to the other and all data seems to be there

Re: mysql problem

2009-04-21 Thread Thomas Pundt
Konrad, AZZOPARDI Konrad schrieb: Hello people, I do not know if this the right listI am migrating a very basic application from an older mysql version 4.1.9-standard to a new mysql version 5.0.45 {RedHat default package}. I have migrated DB data from one to the other and all data seems

Re: zabbix mysql problem

2007-06-13 Thread sizo nsibande
You might need to backup a few chapters. Thanks a lot man atleast now I know what to look into. On 12/06/07, Gerald L. Clark [EMAIL PROTECTED] wrote: sizo nsibande wrote: I am trying to install zabbix, and at the third step I get this error: [EMAIL PROTECTED]

zabbix mysql problem

2007-06-12 Thread sizo nsibande
I am trying to install zabbix, and at the third step I get this error: [EMAIL PROTECTED] etc]# mysql -u zabbix -p Enter password: Welcome to the MySQL monitor. Commands end with ; or \g. Your MySQL connection id is 6 to server version: 5.0.27 Type 'help;' or '\h'

Re: zabbix mysql problem

2007-06-12 Thread Gerald L. Clark
sizo nsibande wrote: I am trying to install zabbix, and at the third step I get this error: [EMAIL PROTECTED] etc]# mysql -u zabbix -p Enter password: Welcome to the MySQL monitor. Commands end with ; or \g. Your MySQL connection id is 6 to server version: 5.0.27

mysql problem

2007-02-21 Thread ross
I have a database online and have a strange mysql problem. When I connect remotely from my desktop (same browse_database.php page) I get over 1000 results with the query below but when I run the same page on the remoted server this value is almost halved to 520. any ideas what is hapening

mysql++ problem(undefined symbol to)

2006-08-13 Thread ali asghar torabi parizy
hello. i want to connect to mysql from c++ . i examine any version or platform. i use mysql5 and 4 in suse10 with gcc.then examine mingw and mysql5 and 4 and 3 for severeal times but i can't solve this problem.when i want to compile examples of mysql++ following error appeared:

Re: mysql++ problem(undefined symbol to)

2006-08-13 Thread Chris
ali asghar torabi parizy wrote: hello. i want to connect to mysql from c++ . i examine any version or platform. i use mysql5 and 4 in suse10 with gcc.then examine mingw and mysql5 and 4 and 3 for severeal times but i can't solve this problem.when i want to compile examples of mysql++

Bugzilla Installation Mysql problem

2005-08-17 Thread harish
Dear All While installing Bugzilla I am getting following mysql error. In my pc mysql is running and user 'bugs' is having full privilege for bugs database. DBI connect(';localhost;3306','bugs',...) failed: Can't connect to local MySQL server through socket '/tmp/mysql.sock' (111) at

Re: Bugzilla Installation Mysql problem

2005-08-17 Thread Gleb Paharenko
Hello. Maybe it is a Bugzilla specific issue, but have a look here: http://dev.mysql.com/doc/mysql/en/can-not-connect-to-server.html harish [EMAIL PROTECTED] wrote: Dear All While installing Bugzilla I am getting following mysql error. In my pc mysql is running and user

Php/Mysql problem - undiefined method mysql_connect()

2005-05-16 Thread CIKALA Frédéric ROSI/SIPROD
Hello everyone, I've installed mysql server on my fedora box and it works great when i use the console =) But, i want my php sources to work with these bases but it doesn't work =( In fact it seems that the function mysql_connect() cannot be called, here is the error on the web page : Fatal

Re: PHP/MySQL Problem

2004-11-07 Thread Ligaya Turmelle
Are you running the 2 queries at the same time? they should be run 1 at a time. What does mysql_error() say? use it when you are checking the result set (if (!$result) { echo Error: . mysql_error();}Are the result sets being sent to 2 different identifiers? Just a few possibilities.

PHP/MySQL Problem

2004-11-05 Thread Yahoo Default User
Hi Guys, I have a problem with MySQL in conjunction with PHP so I also decided to post here: I have a PHP script that contains two consecutive MySQL queries, something like this: Query 1: Delete some rows from Table A Query 2: Insert some rows into Table A The problem is, only Query 2 seems to

RE: PHP/MySQL Problem

2004-11-05 Thread Chris Blackwell
query you might have more luck if you post your php code to a php group chris -Original Message- From: Yahoo Default User [mailto:[EMAIL PROTECTED] Sent: 05 November 2004 08:52 To: [EMAIL PROTECTED] Subject: PHP/MySQL Problem Hi Guys, I have a problem with MySQL in conjunction with PHP so

Re: PHP/MySQL Problem

2004-11-05 Thread Gleb Paharenko
Hi. How did you check that Query 2 has been executed? You may add to your php.ini file mysql.trace_mode = On to see some warnings and errors. Yahoo Default User [EMAIL PROTECTED] wrote: Hi Guys, I have a problem with MySQL in conjunction with PHP so I also decided to post here:

Re: Ask for help on a mysql problem

2004-10-19 Thread Martijn Tonies
Egor, others, It's really clear what you want. Please specify. If what you basicaly want is just a tree structure, then it's done like that: CREATE TABLE something ( id INT AUTO_INCREMENT PRIMARY KEY NOT NULL, parent INT NOT NULL, data1 CHAR(255), data2 CHAR(255), ... ); Then you

Re: Ask for help on a mysql problem

2004-10-19 Thread Martijn Tonies
Hello, The only difference is that you have moved parent outside main table. No benefits at all. You have to create two records I two tables instead of one. You have to make joins to see what is the parent of particular child. I am strongly against this. Why? 1) relational theory clearly

Re: Ask for help on a mysql problem

2004-10-19 Thread Harald Fuchs
In article [EMAIL PROTECTED], Martijn Tonies [EMAIL PROTECTED] writes: That is ONE way to store a tree structure :-) Another would be: ITEMS (ItemID INT AUTO_INCREMENT PRIMARY KEY NOT NULL, other stuff) ITEM_PARENT (ItemID int, ParentID int primary key (ItemID, ParentID) ) I

Re: Ask for help on a mysql problem

2004-10-19 Thread Martijn Tonies
That is ONE way to store a tree structure :-) Another would be: ITEMS (ItemID INT AUTO_INCREMENT PRIMARY KEY NOT NULL, other stuff) ITEM_PARENT (ItemID int, ParentID int primary key (ItemID, ParentID) ) I prefer the latter. The latter is not a tree, but a directed

Re: Ask for help on a mysql problem

2004-10-15 Thread Diona Kidd
Teng, how is this different than a foreign key? On Oct 14, 2004, at 11:27 PM, Teng Wang wrote: I wanna setup a tree structure. Each node in this tree is a table. Each table has a link field. For each record, the data in this field is a pointer to another table or null. I read mysql manual but

Ask for help on a mysql problem

2004-10-14 Thread Teng Wang
I wanna setup a tree structure. Each node in this tree is a table. Each table has a link field. For each record, the data in this field is a pointer to another table or null. I read mysql manual but don't find any clues that SQL supports such a link field. Does anyone has an idea about that?

DBD::mysql problem

2004-06-21 Thread Kairam, Raj
I am unable to install DBD::mysql in my environment shown below RedHat Linux 9 perl v5.8.0 DBI-1.42 mysqld Ver 4.0.18-standard After unzipping and untarring the DBD-mysql-2.9003.tar.gz ( obtained from CPAN ), in the DBD-mysql-2.9003 directory I tried the following mkdir

DBD::mysql problem

2004-06-18 Thread Kairam, Raj
I am unable to install DBD::mysql in my environment shown below RedHat Linux 9 perl v5.8.0 DBI-1.42 mysqld Ver 4.0.18-standard After unzipping and untarring the DBD-mysql-2.9003.tar.gz ( obtained from CPAN ), in the DBD-mysql-2.9003 directory I tried the following mkdir /tmp/mysql-static cp

Re: DBD::mysql problem

2004-06-18 Thread Jeff Smelser
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On Friday 18 June 2004 03:00 pm, Kairam, Raj wrote: After unzipping and untarring the DBD-mysql-2.9003.tar.gz ( obtained from CPAN ), in the DBD-mysql-2.9003 directory I tried the following mkdir /tmp/mysql-static cp /usr/lib/mysql/*.a

php mysql problem

2004-05-13 Thread Jianping Zhu
I have redhat 9.0 and Server version: Apache/2.0.40. i have installed rpms php-4.2.2-17.2.i386.rpm php-mysql-4.2.2-17.2.i386.rpm After i create a database called mydb and serveral tables in mysql, I tried to run following testdb.php script

RE: php mysql problem

2004-05-13 Thread Mike Johnson
From: Jianping Zhu [mailto:[EMAIL PROTECTED] but i got error message with: http://coopunit.forestry.uga.edu:8080/testdb.php the error is: Fatal error: Call to undefined function: mysql_connect() in /var/www/html/testdb.php on line 13 How can Fix this problem? Thanks

Access to MySQL problem

2004-03-26 Thread Ed Reed
I'm coverting an Access database to MySQL 4.1.1 and I need help with a near impossible query. In the Access DB I used a stored procedure; I think I should be able to solve this problem with a subselect in MySQL but so far I'm not having any luck. Here's the problem; In my stored precedure query

Mysql problem + Problem in loading data SOLVED

2004-01-15 Thread Aron Bereket
Well pals, Today I am not writing this message to bother you with my problems but to pass my warmest thanx to you guys all. Duncan, Peter , Mike, Cory ... I appreciate your time and energy in solving the problems I faced on the above subject. Special thanx to Duncan for his precise and priceless

MYSQL problem

2004-01-13 Thread Aron Bereket
Hi there, I have recently installed mysql and php on my mechine and both work fine. But when i wrote an HTML/Php to access my databse I got the following error message: Fatal error: Call to undefined function: mysql_pconnect() in /var/www/html/employee.php on line 48 I tried also with

RE: MYSQL problem

2004-01-13 Thread Mike Johnson
From: Aron Bereket [mailto:[EMAIL PROTECTED] Hi there, I have recently installed mysql and php on my mechine and both work fine. But when i wrote an HTML/Php to access my databse I got the following error message: Fatal error: Call to undefined function: mysql_pconnect() in

RE: MYSQL problem

2004-01-13 Thread Aron Bereket
to make sure the mysql extensions are enabled. Peter -Original Message- From: Aron Bereket [mailto:[EMAIL PROTECTED] Sent: 13 January 2004 23:36 To: [EMAIL PROTECTED] Subject: MYSQL problem Hi there, I have recently installed mysql and php on my mechine and both work

RE: MYSQL problem

2004-01-13 Thread Aron Bereket
Dear Mike, Thanx for the quick reply. I did what you specified on your rely. There is --with-mysql argument but is not set it is just '--with-mysql' does it mean I have to recompile it again? cheers, Bereket --- Mike Johnson [EMAIL PROTECTED] wrote: From: Aron Bereket [mailto:[EMAIL

Mysql Problem...

2004-01-10 Thread System
Hello All, When I try to execute query on mysql prompt I get following error before the query is been executed. MySql is running. mysql select * from temp where username='tom' and ondate='2002-02-03'; ERROR 2006: MySQL server has gone away No connection. Trying to reconnect... Connection id:

Re: Mysql Problem...

2004-01-10 Thread robert_rowe
Did you stop and restart the server while you had the client up? This will break the client's connection and force it to try and re-establish it. -- MySQL General Mailing List For list archives: http://lists.mysql.com/mysql To unsubscribe:http://lists.mysql.com/[EMAIL PROTECTED]

RE: Zeos, MySQL problem

2003-12-16 Thread MDaheim
Hi David, for Zeos questions check: http://www.zeoslib.net/modules.php?name=Forums regards Michael Daheim -- MySQL General Mailing List For list archives: http://lists.mysql.com/mysql To unsubscribe:http://lists.mysql.com/[EMAIL PROTECTED]

Zeos, MySQL problem

2003-12-15 Thread DChristensen
Good Afternoon! We're building an application with Delphi 7.0, the Zeos controls and MySQL v.4.0.15 which runs on a Red Hat 7.3 server. We are experiencing a problem where when a person lets the application sit for a while, we're losing dataset connectivity that doesn't restore itself. I've

RE: Zeos, MySQL problem

2003-12-15 Thread Jon Frisby
: Monday, December 15, 2003 12:28 PM To: [EMAIL PROTECTED]; [EMAIL PROTECTED] Subject: Zeos, MySQL problem Good Afternoon! We're building an application with Delphi 7.0, the Zeos controls and MySQL v.4.0.15 which runs on a Red Hat 7.3 server. We are experiencing a problem where when

RE: Zeos, MySQL problem

2003-12-15 Thread DChristensen
Thanks, Jon. I'll try that and report back. -Original Message- From: Jon Frisby [mailto:[EMAIL PROTECTED] Sent: Monday, December 15, 2003 3:06 PM To: [EMAIL PROTECTED]; [EMAIL PROTECTED]; [EMAIL PROTECTED] Subject: RE: Zeos, MySQL problem You can disable connection timeouts

Re: Mysql Problem in Windows 2000 advanced server

2003-09-25 Thread miguel solórzano
At 12:33 25/9/2003 +0900, Ganbold wrote: Hi, I installed mysql-4.0.15 in Windows 2000 Advanced server. Mysql-max-nt is working fine, except some problems. Sometimes when I try to use access web pages through php pages, mysql says Connection to server lost or Can't connect to mysql server or

Re: Mysql Problem in Windows 2000 advanced server

2003-09-25 Thread Ganbold
Thanks Miguel. I increased net_read_timeout and net_write_timout up to 300 sec, but problem still exists. My queries are executing only in few seconds, but sometimes mysql shows Can't connect to server, or Connection lost etc. I used mysql-4.0.14 server and client, but problem was same and I

Mysql Problem in Windows 2000 advanced server

2003-09-24 Thread Ganbold
Hi, I installed mysql-4.0.15 in Windows 2000 Advanced server. Mysql-max-nt is working fine, except some problems. Sometimes when I try to use access web pages through php pages, mysql says Connection to server lost or Can't connect to mysql server or sometimes query error. Query is tested and

ODBC connection to MySQL problem

2003-09-04 Thread florence florence
Hi,

ODBC connection to MySQL problem

2003-09-04 Thread florence florence
Hi,

Very strange MySQL problem !

2003-08-14 Thread Keith Bussey
Hi, I am having a very weird problem with one of my database servers. Let's take the following setup: 10 load-balanced servers (I'll call them ServerA) 1 admin server (ServerB) 1 database server (DB1) Now ServerA has a function to insert a row into a table on DB1 whenever someone hits certain

Re: Very strange MySQL problem !

2003-08-14 Thread colbey
Possible? Are you sure all connection attempts fail? not just insert attempts? Server B does some updates/deletes... Chances are this causes some table locks, which makes Server A unable to perform it's inserts until Server B releases the lock. On Wed, 13 Aug 2003, Keith Bussey wrote: Hi,

Re: Very strange MySQL problem !

2003-08-14 Thread Keith Bussey
Quoting [EMAIL PROTECTED]: Are you sure all connection attempts fail? not just insert attempts? Yes, i have it write to my log if the sock is empty (mysql_connect fails)...before it gets to the insert Server B does some updates/deletes... Chances are this causes some table locks, which

Re: Very strange MySQL problem !

2003-08-14 Thread Keith Bussey
That's the problem, when the script runs, I can connect from serverA fine!...but seems the webpages can't ;/ -- Keith Bussey Wisol, Inc. Chief Technology Manager (514) 398-9994 ext.225 Quoting [EMAIL PROTECTED]: On Wed, 13 Aug 2003, Keith Bussey wrote: Are you sure all connection

Re: Very strange MySQL problem !

2003-08-14 Thread colbey
On Wed, 13 Aug 2003, Keith Bussey wrote: Are you sure all connection attempts fail? not just insert attempts? Yes, i have it write to my log if the sock is empty (mysql_connect fails)...before it gets to the insert But you mention mysql reports no connection errors... perhaps wait for an

Re: Very strange MySQL problem !

2003-08-14 Thread colbey
I'd double check this cronjob script... possible scenario.. kaibash idea if you can prove it's invalid. ServerB has a script that runs every 20 minutes, which does a very quick/simple select from DB1, then loops though the results and does updates/deletes on a different database server.

MYSQL problem

2003-02-13 Thread burger17
Hello Sir, I have problem connecting to mysql in dos-prompt.. Error is : can't connect to mysql on localhost 10061).. What does it mean? I also try another method to solve this problem by typing mysqld-nt --install error prompts saying that the service already exists. The current server

Re: MYSQL problem

2003-02-13 Thread Paul DuBois
At 23:47 +0800 2/13/03, [EMAIL PROTECTED] wrote: Hello Sir, I have problem connecting to mysql in dos-prompt.. Error is : can't connect to mysql on localhost 10061).. What does it mean? I also try another method to solve this problem by typing mysqld-nt --install error prompts saying that the

Re: MYSQL problem

2003-02-13 Thread Stefan Hinz
Ellen, Error is : can't connect to mysql on localhost 10061).. I also try another method to solve this problem by typing mysqld-nt --install error prompts saying that the service already exists. The current server installed is : c:\Apache\mysql\bin\mysqld-nt.exe Start

MySQL Problem

2003-01-16 Thread steven_joseph_p
030116 14:28:01 MySql: Table 'mysql.host' doesn't exist http://www.innodb.com/ibman.html the InnoDB startup options listed in section 2 at But to get good performance you should adjust for your hardware innodb_data_file_path = ibdata1:10M:autoextend section, for example, or my.ini. If you want to

BDB and mysql problem

2002-12-10 Thread Dennis Allison
Using the sql: alter table foo add index dex( keycol1, keycol2, keycol3 ); causes a Error 1030 with the annotation table handler error 12. The particular table involved has about 15 entries, contains 10 or so varchar() fields with a record size of O(500) bytes. The table is

mysql problem

2002-11-20 Thread Francesco
Hello, I tried to execute the following query: SELECT studenti.* FROM studenti,valutazioni LEFT JOIN valutazioni ON studenti.sid=valutazioni.sid WHERE valutazioni.sid IS NULL; and give me the following error message: ERROR 1066: Not unique table/alias: 'valutazioni' I have the Mysql 4.0.1 alpha

Re: mysql problem

2002-11-20 Thread Iikka Meriläinen
On Wed, 20 Nov 2002, Francesco wrote: Hello, I tried to execute the following query: SELECT studenti.* FROM studenti,valutazioni LEFT JOIN valutazioni ON studenti.sid=valutazioni.sid WHERE valutazioni.sid IS NULL; Hi! I think you don't have to specify valutazioni in the FROM subclause (is

Re: mysql problem

2002-11-20 Thread Ignatius Reilly
] Sent: Wednesday, November 20, 2002 4:55 PM Subject: mysql problem Hello, I tried to execute the following query: SELECT studenti.* FROM studenti,valutazioni LEFT JOIN valutazioni ON studenti.sid=valutazioni.sid WHERE valutazioni.sid IS NULL; and give me the following error message: ERROR

ado/mysql problem

2002-09-05 Thread Dan Johansson
Hi After uppgrade mdac from 2.5 to 2.7 I get wrong types. An unsigned integer column was previously reported to be of type 3 (Integer) now it is returned as type 5(double). This atleast happens when im using getrows() in the recordset object. Can anybody tell what is going on here ? Im using

RE: ado/mysql problem

2002-09-05 Thread Ben Joyce
Yep, I had issues too... I've dropped back to MDAC2.5 and all is well. .b -Original Message- From: Dan Johansson [mailto:[EMAIL PROTECTED]] Sent: 05 September 2002 15:03 To: [EMAIL PROTECTED] Subject: ado/mysql problem Hi After uppgrade mdac from 2.5 to 2.7 I get wrong

Re: ado/mysql problem

2002-09-05 Thread Dan Johansson
: 05 September 2002 15:03 To: [EMAIL PROTECTED] Subject: ado/mysql problem Hi After uppgrade mdac from 2.5 to 2.7 I get wrong types. An unsigned integer column was previously reported to be of type 3 (Integer) now it is returned as type 5(double). This atleast happens when im using getrows

RE: ado/mysql problem

2002-09-05 Thread Ben Joyce
ahhh, hmm, erk... have you checked the MDAC site and MSKB for known bugs? -Original Message- From: Dan Johansson [mailto:[EMAIL PROTECTED]] Sent: 05 September 2002 15:19 To: Ben Joyce Cc: [EMAIL PROTECTED] Subject: Re: ado/mysql problem I know the same issus exist on XP. One

Re: ado/mysql problem

2002-09-05 Thread Dan Johansson
: ado/mysql problem I know the same issus exist on XP. One can't downgrade mdac on XP ?? So I really would like an other solution. /Dan Ben Joyce wrote: Yep, I had issues too... I've dropped back to MDAC2.5 and all is well. .b -Original Message- From: Dan

RE: ado/mysql problem

2002-09-05 Thread Ben Joyce
Hmm. I'm not sure what to suggest... sorry! :( -Original Message- From: Dan Johansson [mailto:[EMAIL PROTECTED]] Sent: 05 September 2002 18:30 To: Ben Joyce Cc: [EMAIL PROTECTED] Subject: Re: ado/mysql problem Yes, I have now. Do not find anything :( Ben Joyce wrote

Java and Mysql, problem with String encoding

2002-08-29 Thread John Deligiannis
Hello, I have an applet that uses mysql. I have added support for greek and for data that are already in mysql, it works fine. When I add other from my applet it prints . Another thing is that I construct a table from the resultSet using two (String) vectors. The table headers come out

Java and Mysql, problem with String encoding

2002-08-29 Thread John Deligiannis
Thank you for your answer. I have to apologise for my bad post(I work 1 week on this problem and it was a desperite try). I have done what you suggested, but it partly works. Without useUnicode=true I didn't get anything right. With useUnicode=true I did get the data that were already in my

Re: Java and Mysql, problem with String encoding

2002-08-29 Thread Mark Matthews
John Deligiannis wrote: Hello, I have an applet that uses mysql. I have added support for greek and for data that are already in mysql, it works fine. When I add other from my applet it prints . Another thing is that I construct a table from the resultSet using two (String) vectors.

Re: mysql problem...maybe...?

2002-08-12 Thread Victoria Reznichenko
dane, Friday, August 09, 2002, 10:53:30 PM, you wrote: dr My phpBB forums, say if i make a post, then it goes to the post, but dr nothings there, so i have to go to index.php for it to show (and it will log dr me out) is this a bug in 4.0.1 im pretty sure its mysql..usually it dr would

Mysql Problem Query

2002-08-11 Thread Anish Mathew
From Anish MAthew India Dear sir i am using Linux 7.2 as my OS and having mysql version 3.36. i am a novice learner of mysql though i am familiar with Oracle and sybase. when i got to no the GNU publice license and open source technology i thought of learning mysql. but i

Re: Mysql Problem Query

2002-08-11 Thread trogers
did you also install the databases that are part of the mysql installation? -Ll on 8/11/02 5:59 AM, Anish Mathew, typed: my sqlserver is not running when i issue the command mysql the response i got was cant connect to local mysql server through socket /var/lib/mysql.sock (111)

Re: Mysql Problem Query

2002-08-11 Thread Bhavin Vyas
Also, see what errors you are getting in mysql hostname.err file Regards, Bhavin. - Original Message - From: [EMAIL PROTECTED] To: MySQL List [EMAIL PROTECTED] Sent: Sunday, August 11, 2002 3:30 AM Subject: Re: Mysql Problem Query did you also install the databases that are part

mysql problem...maybe...?

2002-08-09 Thread dane richard
My phpBB forums, say if i make a post, then it goes to the post, but nothings there, so i have to go to index.php for it to show (and it will log me out) is this a bug in 4.0.1 im pretty sure its mysql..usually it would show the posta nd if i chnaged something (ex. colors) i would have

Re: MySQL: Problem Installing on RH 7.3

2002-07-23 Thread Trond Eivind Glomsrød
Philip Molter [EMAIL PROTECTED] writes: On Thu, Jul 18, 2002 at 11:44:14AM -0400, Richard Fox wrote: : The mysqld.log file says: : : 020717 13:05:05 mysqld started : 020717 13:05:05 /usr/local/libexec/mysqld: Can't find file: : './mysql/host.frm' (errno: 13) : 020717 13:05:05 mysqld

Re: MySQL: Problem Installing on RH 7.3

2002-07-19 Thread jusob
En réponse à Philip Molter [EMAIL PROTECTED]: Hi I am sure that tehre is a bug in RH 7.3 I've said it several times in this mailing list, but nobody wants to belive me! It's true that this information is difficult to find, but I've learned it on the documentation of www.mysql.org, the one with

Re: MySQL: Problem Installing on RH 7.3

2002-07-18 Thread Richard Fox
: Wednesday, July 17, 2002 10:41 PM To: [EMAIL PROTECTED] Subject: MySQL: Problem Installing on RH 7.3 The MySQL daemon does not run. I installed the binary RPM's from the RH cd, MySQL 3.23.49. I run mysql_install_db, outputs some text and appears to execute correctly. The I run safe_mysqld

Re: MySQL: Problem Installing on RH 7.3

2002-07-18 Thread Jan Kudrman
:44 PM Subject: Re: MySQL: Problem Installing on RH 7.3 The mysqld.log file says: 020717 13:05:05 mysqld started 020717 13:05:05 /usr/local/libexec/mysqld: Can't find file: './mysql/host.frm' (errno: 13) 020717 13:05:05 mysqld ended But I do see the host.frm file: -rw-rw1 root

RE: MySQL: Problem Installing on RH 7.3

2002-07-18 Thread Mark Schoonover
; [EMAIL PROTECTED] Subject: Re: MySQL: Problem Installing on RH 7.3 The mysqld.log file says: 020717 13:05:05 mysqld started 020717 13:05:05 /usr/local/libexec/mysqld: Can't find file: './mysql/host.frm' (errno: 13) 020717 13:05:05 mysqld ended But I do see the host.frm file: -rw-rw

Re: MySQL: Problem Installing on RH 7.3

2002-07-18 Thread Ryan Fox
. Do you have this file? -Original Message- From: Richard Fox [mailto:[EMAIL PROTECTED]] Sent: Wednesday, July 17, 2002 10:41 PM To: [EMAIL PROTECTED] Subject: MySQL: Problem Installing on RH 7.3 The MySQL daemon does not run. I installed the binary RPM's from the RH cd

Re: MySQL: Problem Installing on RH 7.3

2002-07-18 Thread Gerald Clark
/mysql.sock' And indeed there is no such file. Do you have this file? -Original Message- From: Richard Fox [mailto:[EMAIL PROTECTED]] Sent: Wednesday, July 17, 2002 10:41 PM To: [EMAIL PROTECTED] Subject: MySQL: Problem Installing on RH 7.3 The MySQL daemon does not run. I installed the binary

Re: MySQL: Problem Installing on RH 7.3

2002-07-18 Thread Philip Molter
On Thu, Jul 18, 2002 at 11:44:14AM -0400, Richard Fox wrote: : The mysqld.log file says: : : 020717 13:05:05 mysqld started : 020717 13:05:05 /usr/local/libexec/mysqld: Can't find file: : './mysql/host.frm' (errno: 13) : 020717 13:05:05 mysqld ended : : But I do see the host.frm file: : :

MYSQL Problem (Will not write to but will read)

2002-07-17 Thread Relihan, Daniel
Hi, All of a sudden it seems that my MYSQL is incapable of being written to. I can still read from it, but cannot write to it. When I looked at the processes, all the processes that tried to write to the database are in a state of 'Locked'. Any ideas what to do? - Dan Relihan

Re: MYSQL Problem (Will not write to but will read)

2002-07-17 Thread Ralf Narozny
I guess your harddisk ran out of space. Delete some stuffwithout restarting the database. Relihan, Daniel wrote: Hi, All of a sudden it seems that my MYSQL is incapable of being written to. I can still read from it, but cannot write to it. When I looked at the processes, all the processes

MySQL: Problem Installing on RH 7.3

2002-07-17 Thread Richard Fox
The MySQL daemon does not run. I installed the binary RPM's from the RH cd, MySQL 3.23.49. I run mysql_install_db, outputs some text and appears to execute correctly. The I run safe_mysqld , and I get: [root@thor rfox]# /usr/bin/safe_mysqld [1] 2212 [root@thor rfox]# Starting mysqld daemon

RE: MySQL: Problem Installing on RH 7.3

2002-07-17 Thread Cal Evans
PROTECTED]] Sent: Wednesday, July 17, 2002 3:41 PM To: [EMAIL PROTECTED] Subject: MySQL: Problem Installing on RH 7.3 The MySQL daemon does not run. I installed the binary RPM's from the RH cd, MySQL 3.23.49. I run mysql_install_db, outputs some text and appears to execute correctly. The I run

Re: MySQL: Problem Installing on RH 7.3

2002-07-17 Thread Philip Molter
On Wed, Jul 17, 2002 at 04:40:50PM -0400, Richard Fox wrote: : : The MySQL daemon does not run. I installed the binary RPM's from the RH cd, : MySQL 3.23.49. I run mysql_install_db, outputs some text and appears to : execute correctly. The I run safe_mysqld , and I get: : : [root@thor rfox]#

mysql problem

2002-06-10 Thread Simona D'Ambrosio
Hi! I am new to mysql and this is my problem. The daemon runs well but I can start it only with --skip-grant-tables option, otherwise nothing will work. I set the password for the root user but when I exit the Mysql monitor and try to get in again, no password is request. When I set the password

RE: mysql problem

2002-06-10 Thread Simon Green
]] Sent: 10 June 2002 14:32 To: [EMAIL PROTECTED] Subject: mysql problem Hi! I am new to mysql and this is my problem. The daemon runs well but I can start it only with --skip-grant-tables option, otherwise nothing will work. I set the password for the root user but when I exit the Mysql monitor

Re: mysql problem

2002-06-10 Thread Egor Egorov
Simona, Monday, June 10, 2002, 4:31:33 PM, you wrote: SDA Hi! I am new to mysql and this is my problem. SDA The daemon runs well but I can start it only with --skip-grant-tables SDA option, otherwise nothing will work. SDA I set the password for the root user but when I exit the Mysql monitor

Re: mysql problem

2002-06-10 Thread Simona D'Ambrosio
PROTECTED]] Sent: 10 June 2002 14:32 To: [EMAIL PROTECTED] Subject: mysql problem Hi! I am new to mysql and this is my problem. The daemon runs well but I can start it only with --skip-grant-tables option, otherwise nothing will work. I set the password for the root user but when I exit

Re: MySQL Problem

2002-05-03 Thread Dicky Wahyu Purnomo
On 3 May 2002 05:06:12 - Jagadeesh Suryadevara [EMAIL PROTECTED] wrote: When i check in the folder where it is loaded MySQL there are some applications with names MySQLManager,WinMysqladmin in bin directory. When click on these applications it showing some screens but we are unable

Re: MySQL Problem

2002-05-03 Thread Victoria Reznichenko
Jagadeesh, Friday, May 03, 2002, 8:06:12 AM, you wrote: JS We want to use MYSQl as a back end for one of our projects. JS We download following 4 zip to install MySQL. JS mysql-4.0.0a-alpha-win-src.zip JS mysql-4.0.0a-alpha-win.zip JS mysql-4.0.1a-alpha-win-src.zip JS mysql-4.0.1a-alpha-win.zip

mysql - problem with timeout

2002-05-03 Thread info
hello ... first excuse my bad english ;-( we have a problem . one of our servers is working with the following components and configuration: linux suse 7.1 mysql 3.23.33 phpadmin 2.2.5 webmin 0,90 our problem . we work with a few databases in mysql ... often when we start more

MySQL Problem

2002-05-02 Thread Jagadeesh Suryadevara
Hello Sir/Madam, We want to use MYSQl as a back end for one of our projects. We download following 4 zip to install MySQL. mysql-4.0.0a-alpha-win-src.zip mysql-4.0.0a-alpha-win.zip mysql-4.0.1a-alpha-win-src.zip mysql-4.0.1a-alpha-win.zip After unzipping the file and MySQL is loaded

MySQL Problem

2002-04-19 Thread Mike At Spy
am having some trouble with MySQL. Seems I cannot add users. Well, I can add them (through phpMyAdmin, but they are still not able to get into the datasbases. I flushed the tables, too. Current users are not affected. This started, rather suddenly, the day after I was able to do this.

RH 7.2 - mysql Problem !

2002-03-29 Thread Egor Egorov
Ian, Thursday, March 28, 2002, 6:20:29 PM, you wrote: IL - Redhat 7.2 (Enigma) pre-build installation. IL - Mysql with the following rpms installed: IL MySQL-3.23.49a-1.i386.rpm IL MySQL-client-3.23.49a-1.i386.rpm Are you sure you are really running

Re: RH 7.2 - mysql Problem !

2002-03-29 Thread Curtis Maurand
More like he installed the rpm's from MySQL.com over the top of the one's from redhat. The scripts from the MySQL rpm's don't recognize the redhat rpms and the sripts from the redhat rpm's don't recognize the MySQL.com rpm's. The rpms from redhat are out of date (they were out of date when 7.2

Re: RH 7.2 - mysql Problem !

2002-03-28 Thread Trond Eivind Glomsrød
Ian Linekrans [EMAIL PROTECTED] writes: Hi All ! The configuration: - Redhat 7.2 (Enigma) pre-build installation. - Mysql with the following rpms installed: MySQL-3.23.49a-1.i386.rpm MySQL-client-3.23.49a-1.i386.rpm The installation and

mysql problem ( innodb server startup)

2002-03-14 Thread Chetan Lavti
hi, When I am starting the mysqld-max daemon there appears two errors !! I have intalled it on the another machine !! At this machine only, i am facing this problem, previously it was running O.K. anybody who can tell me how to resolve this problem...?? [root@dev1 sbin]# ./mysqld-max

  1   2   >