T
Traged1
Guest
OMG, even the rebuild of MYSQL fom the mysql.com rpm's did not fix it. Man this is really disturbing, DBI doesn't want to work no matter what I try.
could be a problem related to old password hashing method?/QUOTE]
Each one of these passwords I managed to track back to domains which were disabled in PLESK, so I am assuming that PLESK somehow alters the database user passwords to ensure that they cannot be used during a domain suspension.
Then I check where placed my socket file. And make appropriate symlink to it.
Originally posted by enterux
If you find it difficult to upgrade to MySQL 4.1.xx you can contact me and I can have it done for you for a small fee
You can visit us on http://www.enterux.com
or email on info at enterux.com
old_passwords=1
[mysqld]
datadir=/var/lib/mysql
socket=/var/lib/mysql/mysql.sock
skip-locking
skip-innodb
query_cache_limit=1M
query_cache_size=32M
query_cache_type=1
max_connections=500
interactive_timeout=100
wait_timeout=100
connect_timeout=10
thread_cache_size=80
key_buffer=150M
table_cache=512
sort_buffer_size=1M
read_buffer_size=1M
read_rnd_buffer_size=768K
join_buffer=1M
max_allowed_packet=16M
record_buffer=1M
max_connect_errors=10
skip-show-database
myisam_sort_buffer_size=64M
log-bin
server-id=1
old_passwords=1
[mysql.server]
user=mysql
basedir=/var/lib
[safe_mysqld]
err-log=/var/log/mysqld.log
pid-file=/var/run/mysqld/mysqld.pid
open_files_limit=8192
[mysqldump]
quick
max_allowed_packet=16M
[mysql]
no-auto-rehash
#safe-updates
[isamchk]
key_buffer=64M
sort_buffer=64M
read_buffer=16M
write_buffer=16M
[myisamchk]
key_buffer=64M
sort_buffer=64M
read_buffer=16M
write_buffer=16M
[mysqlhotcopy]
interactive-timeout
According to the mysql forums, this error is harmless and to be ignored.Warning: Asked for 196608 thread stack, but got 126976
andAfter upgrading, update the grant tables to add new privileges and features. The procedure uses the mysql_fix_privilege_tables script and is described in Section 2.10.7, Upgrading the Grant Tables.
and#
Convert your old ISAM files to MyISAM files. One way to do this is with the mysql_convert_table_format script. (This is a Perl script; it requires that DBI be installed.) To convert the tables in a given database, use this command:
shell> mysql_convert_table_format database db_name
Note that this should be used only if all tables in the given database are ISAM or MyISAM tables. To avoid converting tables of other types to MyISAM, you can explicitly list the names of your ISAM tables after the database name on the command line.
Individual tables can be changed to MyISAM by using the following ALTER TABLE statement for each table to be converted:
mysql> ALTER TABLE tbl_name TYPE=MyISAM;
If you are not sure of the table type for a given table, use this statement:
mysql> SHOW TABLE STATUS LIKE 'tbl_name';
Not all of these may apply to your server, but should be considered and applied if needed.Ensure that you don't have any MySQL clients that use shared libraries (like the Perl DBD::mysql module). If you do, you should recompile them, because the data structures used in libmysqlclient.so have changed. The same applies to other MySQL interfaces as well, such as the Python MySQLdb module.