Starting MySQLCouldn't find MySQL manager or server
리눅스/MySQL2015. 1. 16. 11:14
반응형
Solution
Step 1.)
Rem out the line in /etc/my.conf that was setting basedir to /var/lib. As seen below:
user=mysql
#basedir=/var/lib
Step 2.)
Create the directory "/var/run/mysqld" if it does not exist. Then chown that directory to mysql.mysql as below...
mkdir /var/run/mysqld
chown mysql.mysql /var/run/mysqld
Step 3.)
Start the service..
service mysql start
[출처] http://javasolution.blogspot.com/2007/04/mysql-couldnt-find-mysql-server-or.html
※ basedir 이 /etc/init.d/mysqld 구동파일과 /etc/my.cnf 에 있을 수 있으니 둘 다 확인해보아야 합니다.
반응형
'리눅스 > MySQL' 카테고리의 다른 글
mysql euckr과 utf8 같이 사용하기 (0) | 2015.01.16 |
---|---|
phpMyAdmin 캐릭터셋 변경 (0) | 2015.01.16 |
libmysqlclient.so.16: cannot open shared object file: No such file or directory (0) | 2015.01.16 |
my.cnf에 wait_timeout설정하는 문제 (0) | 2015.01.16 |
오라클 클라이언트(Oracle Client) 설치 (0) | 2015.01.16 |
댓글()