Re: Mysql and errno 13 on RedHat

2004-09-01 Thread Dobromir Velev
HI again, This multiple mysql proccesses are nothing to worry about - these are the threads that mysql opens to accept incoming connections. You can configure the maximum number of connections and the mysql memory usage in the /etc/my.cnf file. On Wednesday 01 September 2004 02:14, Yannick

Mysql and errno 13 on RedHat

2004-08-31 Thread Yannick Warnier
Hi there, I need to install a database on a RedHat system. Although I'm pretty at ease with Debian, I feel a little unconfortable and cannot find why I get an Error: errno 13 (Permission Denied) when I try to create a new database. Is there some place to look at first? I cannot find any way to

Re: Mysql and errno 13 on RedHat

2004-08-31 Thread Eric Bergen
Error 13 Permission Denied means that the mysqld process doesn't have permission by the filesystem to create whatever files/directories it needs to in the dir you have listed as datadir. Make sure mysqld is running as the right user (ps aux | grep mysqld) or chmod -R the datadir so mysqld can

Re: Mysql and errno 13 on RedHat

2004-08-31 Thread Dobromir Velev
Hi, Make sure that the mysql user have permissions to write into the folder /var/lib/mysql (or whatever your data folder is) . HTH On Tuesday 31 August 2004 18:00, Yannick Warnier wrote: Hi there, I need to install a database on a RedHat system. Although I'm pretty at ease with Debian, I

Re: Mysql and errno 13 on RedHat

2004-08-31 Thread Yannick Warnier
Le mar 31/08/2004 à 16:21, Dobromir Velev a écrit : Hi, Make sure that the mysql user have permissions to write into the folder /var/lib/mysql (or whatever your data folder is) . Thanks Eric and Dobromir. This was a problem of permissions on /var/lib/mysql indeed. Although it did not work