On Thu, 2002-03-14 at 00:04, [EMAIL PROTECTED] wrote: > Please, i'll need some help. > I've installed mysql-3.22.32 in my machine, and when i run (from > /usr/local/mysql) > ./bin/safe_mysqld & > this is the bug that present (from my *.err file) > /*********************************************************************/ > mysqld started on Mon Mar 4 15:44:29 PST 2002 > /usr/local/mysql/libexec/mysqld: ready for connections > mysqld started on Mon Mar 4 15:52:32 PST 2002 > /usr/local/mysql/libexec/mysqld: Can't change dir to '/usr/local/mysql/data/' > (Errcode: 2) > 020304 15:52:33 Aborting > /***********************************************************************/ > What is wrong???
Use the command perror to see what an error means: localhost:~# perror 2 Error code 2: No such file or directory mysqld is trying to change into your datadir "/usr/local/mysql/data", which does not exists, so it fails. Try to create it (and give the proper ownership and permissions to your mysql user). -- dsoares (sql) --------------------------------------------------------------------- Before posting, please check: http://www.mysql.com/manual.php (the manual) http://lists.mysql.com/ (the list archive) To request this thread, e-mail <[EMAIL PROTECTED]> To unsubscribe, e-mail <[EMAIL PROTECTED]> Trouble unsubscribing? Try: http://lists.mysql.com/php/unsubscribe.php