World: r3wp
[MySQL]
older | first |
GrahamC 22-Sep-2011 [1244] | mysql:// question at http://synapse-ehr.com/forums/showthread.php?454-mysql-problem-what-does-this-error-mean |
Dockimbel 22-Sep-2011 [1245] | The link is not working for me, I get a "Invalid Thread specified. If you followed a valid link, please notify the administrator". |
GrahamC 22-Sep-2011 [1246x2] | mysql problem what does this error mean? Hello, I am just looking at REBOL and trying to access mysql I got this error?? =================================== connecting to: 127.0.0.1 ** User Error: ERROR 1251 : Client does not support authentication pro tocol requested by server; consider upgrading MySQL client ** Near: db: open mysql://[rootass-:-127-:-0-:-0-:-1]:3306/mysql ============================================== This the code I am using from rebol document Rebol[ title: "Rebol Mini-Text Database with Visual GUI" author: "http://reboltutorial.com/blog/rebol-mini-text-database/" version: 1.0.0 ] do %mysql-protocol.r probe first system/schemes db: open mysql://[rootass-:-127-:-0-:-0-:-1]:3306/mysql insert db { DROP TABLE IF EXISTS products; CREATE TABLE products ( name VARCHAR(100), version DECIMAL(2, 2), released DATE ); INSERT INTO products VALUES ('cheyenne', '1.0', '2007-05-31'); INSERT INTO products VALUES ('mysql', '1.1', '2007-05-01'); } insert db read %setup.sql ;-- execute a big SQL file |
link above works for me | |
Gabriele 22-Sep-2011 [1248] | Maybe he's using an older version of the mysql driver? |
GrahamC 22-Sep-2011 [1249] | I'll ask ... |
Dockimbel 22-Sep-2011 [1250] | It looks like the MySQL driver he's using is too old for his MySQL server. He should try with the latest version for newer servers: http://softinnov.org/tmp/mysql-protocol-41.r I haven't made it official as it does not work for older servers IIRC, and I also never found the time to fully test it with more recent ones. But it should work correctly. |
GrahamC 22-Sep-2011 [1251] | Ok, posted |
Endo 22-Sep-2011 [1252x2] | The problem could be this as well: http://dev.mysql.com/doc/refman/5.5/en/old-client.html |
when you upgrade your mysql server from 4.x to 5.x the passwords in your "mysql" table for users stays old, which hashed a different algorithm.. so you cannot connect it using username/password anymore. | |
GrahamC 25-Sep-2011 [1254] | I think the link didn't work because I discovered it was a moderated thread. |
james_nak 21-Oct-2011 [1255] | Doc, what a lifesaver! I just spent the last 7 hours trying to figure out what was wrong with my remote rebol-based mysql app. It stopped working after I upgraded mysql. I spent most of my time messing around with mysql until I narrowed it down to the protocol. sql-protocol-41.r Addresses: User Error: ERROR 1251 : Client does not support authentication protocol requested by server; consider upgrading MySQL client (When using newer long hash passwords) and User Error: ERROR 1043 : Bad handshake (when using older short hash passwords) Thank you for posting this. I was getting to the point of panic. |
Dockimbel 21-Oct-2011 [1256:last] | Glad to hear that my driver helped you solve your issue. :-) |
older | first |