호기심에서 우분투 14.04의 MySQL 5.6을보고 싶었습니다. 그리고이 기사를 기반으로 설치가 간단하고 간단해야합니다. 그래서 우분투 14.04 (64 비트)를 실행하는 AWS EC2 마이크로 서버를 시작하고 PuTTY를 통해 원시 인스턴스에 로그인하고 다음 명령을 실행했습니다.
$ sudo apt-get update
$ sudo apt-get build-dep mysql-server-5.6
$ sudo apt-get install mysql-server-5.6
(처음 두 개만 실행 apt-get install
해도 이전에는 작동하지 않았으므로 처음 두 명령은 절박한 움직임이었습니다 . 그러나 세 명령 모두 사용하더라도 설치 단계는 여전히 작동하지 않았습니다.)
위에서 언급 한 기사를 기반으로 최종 명령 에서이 출력을 볼 것으로 예상 한 시점에서 :
mysql start/running, process 2355
Setting up libhtml-template-perl (2.95-1) ...
Setting up mysql-common-5.6 (5.6.16-1~exp1) ...
Processing triggers for libc-bin (2.19-0ubuntu6) ...
Processing triggers for ureadahead (0.100.0-16) ...
대신에 이것을 얻었습니다.
start: Job failed to start
invoke-rc.d: initscript mysql, action "start" failed.
dpkg: error processing package mysql-server-5.6 (--configure):
subprocess installed post-installation script returned error exit status 1
Setting up libhtml-template-perl (2.95-1) ...
Setting up mysql-common-5.6 (5.6.16-1~exp1) ...
Processing triggers for libc-bin (2.19-0ubuntu6) ...
Processing triggers for ureadahead (0.100.0-16) ...
Errors were encountered while processing:
mysql-server-5.6
E: Sub-process /usr/bin/dpkg returned an error code (1)
아무도 무엇이 잘못되었는지 볼 수 있습니까?