우분투 서버를 실행 중입니다. 실행중인 mysql에 로그인하려고 할 때 다음 오류가 발생했습니다.
ERROR 2002 (HY000): Can't connect to local MySQL server through socket '/var/run/mysqld/mysqld.sock' (2)
그러나 mysqld.sock 파일은 /var/run/mysqld
폴더 안에 존재하지 않습니다 . ps aux | grep mysql
명령을 실행할 때 mysql 서버가 실행되고 있지 않다는 것을 알았습니다.
그런 다음 사용하여 mysql 서버를 다시 시작하려고했습니다.
service mysql start
service mysql restart
/etc/init.d/mysql start
그러나 세 가지 경우 모두 시작 프로세스가 실패했습니다.
/var/log/mysql/mysql.log
그리고 /var/log/mysql/mysql.err
파일은 비어 있습니다.
그러나 /var/log/error.log
다음 정보를 보여줍니다.
140425 12:49:05 [Warning] Using unique option prefix myisam-recover instead of myisam-recover-options is deprecated and will be removed in a future release. Please use the full name instead.
140425 12:49:05 [Note] Plugin 'FEDERATED' is disabled.
140425 12:49:05 InnoDB: The InnoDB memory heap is disabled
140425 12:49:05 InnoDB: Mutexes and rw_locks use GCC atomic builtins
140425 12:49:05 InnoDB: Compressed tables use zlib 1.2.8
140425 12:49:05 InnoDB: Using Linux native AIO
140425 12:49:05 InnoDB: Initializing buffer pool, size = 3.0G
140425 12:49:05 InnoDB: Completed initialization of buffer pool
InnoDB: Error: log file ./ib_logfile0 is of different size 0 5242880 bytes
InnoDB: than specified in the .cnf file 0 26214400 bytes!
140425 12:49:05 [ERROR] Plugin 'InnoDB' init function returned error.
140425 12:49:05 [ERROR] Plugin 'InnoDB' registration as a STORAGE ENGINE failed.
140425 12:49:05 [ERROR] /usr/sbin/mysqld: unknown variable 'record_buffer=64M'
140425 12:49:05 [ERROR] Aborting
140425 12:49:05 [Note] /usr/sbin/mysqld: Shutdown complete
ls /var/lib/mysql/ib_logfile*
무엇입니까?