3 messages in com.mysql.lists.mysqlRe: MySQLD aborts
FromSent OnAttachments
Tim Johnson21 Aug 2005 13:23 
Michael Stassen21 Aug 2005 16:15 
Tim Johnson21 Aug 2005 20:27 
Subject:Re: MySQLD aborts
From:Tim Johnson (ti@johnsons-web.com)
Date:08/21/2005 08:27:29 PM
List:com.mysql.lists.mysql

<...>

You can get more info about an error message with perror:

~: perror 13 OS error code 13: Permission denied

As you guessed, a permissions error. Apparently, the user running mysqld (usually user mysql) does not have access rights to /var/lib/mysql/. Most likely, user mysql is not set as the owner of /var/lib/mysql/, in which case you need to

chown -R mysql:mysql /var/lib/mysql/

as root.

Bingo! That worked and I learned *two* things. :-) thanks tim