<...> 
> 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

-- 
Tim Johnson <[EMAIL PROTECTED]>
      http://www.alaska-internet-solutions.com

-- 
MySQL General Mailing List
For list archives: http://lists.mysql.com/mysql
To unsubscribe:    http://lists.mysql.com/[EMAIL PROTECTED]

Reply via email to