오류로 인해 MySQL 설치가 중단되었습니다.

오류로 인해 MySQL 설치가 중단되었습니다.

Raspbian Jessie에 MySQL을 설치하려고 합니다. 동일한 설정을 사용하는 다른 컴퓨터에서는 원활하게 실행되지만 두 번째 컴퓨터에서는 작동하지 않습니다.

패키지 구성 중에 비밀번호를 묻는 메시지가 표시되고 잠시 기다린 후 다음 메시지가 표시됩니다.

┌─────────────────────────────────────┤ Configuring mysql-server-5.5 ├──────────────────────────────────────┐    
│                                                                                                           │    
│ Unable to set password for the MySQL "root" user                                                          │    
│                                                                                                           │    
│ An error occurred while setting the password for the MySQL administrative user. This may have happened    │    
│ because the account already has a password, or because of a communication problem with the MySQL server.  │    
│                                                                                                           │    
│ You should check the account's password after the package installation.                                   │    
│                                                                                                           │    
│ Please read the /usr/share/doc/mysql-server-5.5/README.Debian file for more information.                  │    
│                                                                                                           │    
│                                                  <Ok>                                                     │    
│                                                                                                           │    
└───────────────────────────────────────────────────────────────────────────────────────────────────────────┘    

더 자세히 조사한 결과 이 ​​오류는 MySQL을 시작할 수 없기 때문에 발생하는 것으로 나타났습니다. 확인해 보니 /var/log/mysql/error.log다음 항목이 포함되어 있습니다.

161217 23:33:16 mysqld_safe Starting mysqld daemon with databases from /var/lib/mysql
161217 23:33:16 [Warning] Using unique option prefix key_buffer instead of key_buffer_size is deprecated and will be removed in a future release. Please use the full name instead.
161217 23:33:17 [Note] /usr/sbin/mysqld (mysqld 5.5.53-0+deb8u1) starting as process 16476 ...
161217 23:33:17 [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.
161217 23:33:17 [Note] Plugin 'FEDERATED' is disabled.
161217 23:33:17 InnoDB: The InnoDB memory heap is disabled
161217 23:33:17 InnoDB: Mutexes and rw_locks use GCC atomic builtins
161217 23:33:17 InnoDB: Compressed tables use zlib 1.2.8
161217 23:33:17 InnoDB: Using Linux native AIO
161217 23:33:17 InnoDB: Initializing buffer pool, size = 128.0M
161217 23:33:17 InnoDB: Completed initialization of buffer pool
InnoDB: Error: auto-extending data file ./ibdata1 is of a different size
InnoDB: 0 pages (rounded down to MB) than specified in the .cnf file:
InnoDB: initial 640 pages, max 0 (relevant if non-zero) pages!
161217 23:33:17 InnoDB: Could not open or create data files.
161217 23:33:17 InnoDB: If you tried to add new data files, and it failed here,
161217 23:33:17 InnoDB: you should now edit innodb_data_file_path in my.cnf back
161217 23:33:17 InnoDB: to what it was, and remove the new ibdata files InnoDB created
161217 23:33:17 InnoDB: in this failed attempt. InnoDB only wrote those files full of
161217 23:33:17 InnoDB: zeros, but did not yet use them in any way. But be careful: do not
161217 23:33:17 InnoDB: remove old data files which contain your precious data!
161217 23:33:17 [ERROR] Plugin 'InnoDB' init function returned error.
161217 23:33:17 [ERROR] Plugin 'InnoDB' registration as a STORAGE ENGINE failed.
161217 23:33:17 [ERROR] Unknown/unsupported storage engine: InnoDB
161217 23:33:17 [ERROR] Aborting

161217 23:33:17 [Note] /usr/sbin/mysqld: Shutdown complete

161217 23:33:18 mysqld_safe mysqld from pid file /var/run/mysqld/mysqld.pid ended

이것은 업그레이드가 아니라 새로 설치한 것입니다(MySQL을 몇 번 설치하고 mysql-server-5.5시도 사이에 제거를 시도한 것을 제외하고).

하지만 첫 번째 시도에서 저장 공간이 부족하다는 점을 언급하고 싶습니다(루트 파티션은 2GB 미만이었습니다). 저는 2GB SD 카드를 16GB 카드로 교체하고 dd기존 카드의 내용을 새 카드에 복사한 후 파티션을 확장하여 이 문제를 해결하려고 했습니다. 나는 여전히 그것을 작동시킬 수 없지만 첫 번째 시스템(처음부터 4GB 카드가 있었던)은 잘 작동했습니다. 여기서 문제는 무엇이며 어떻게 해결할 수 있습니까?

답변1

분명히 문제는 첫 번째 시도에서 저장 공간이 부족하여 발생했습니다. MySQL이 데이터 파일을 생성하려고 시도했지만 공간 부족으로 인해 실패하여 손상된 데이터 파일과 이를 가리키는 구성 파일이 남았습니다.

IIRC의 첫 번째 시도는 sudo apt-get removeMySQL에 대한 것이었고 다시 설치했는데 잘못된 데이터 파일과 구성이 남아 있었기 때문에 다음 설치에서도 이를 찾아서 같은 방식으로 실패했습니다.

분명히 후속 조치에서도 sudo apt-get purge mysql-server-5.5이러한 항목은 제거되지 않았습니다. 다음 명령 순서가 마침내 나에게 효과적이었습니다.

sudo apt-get purge mysql-server-5.5
sudo rm -R /etc/mysql
sudo rm -R /var/lib/mysql
sudo apt-get install mysql-server

그러자 MySQL이 나타났고 MySQL 콘솔에 로그인할 수 있었습니다.

중요: 이렇게 하면 시스템의 모든 MySQL 데이터가 영구적으로 삭제됩니다. 새로 설치하거나 결과를 이해하는 경우에만 이 작업을 수행하십시오.

관련 정보