मैं उबंटू 14.04 पर MySQL 5.6 पर एक नज़र डालना चाहता था। और इस लेख के आधार पर यह निश्चित रूप से लग रहा था कि स्थापना सरल और सीधी होनी चाहिए। इसलिए मैंने Ubuntu 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)
क्या कोई देख सकता है कि क्या गलत हुआ?