Ubuntu 16 पर mysql-server / client स्थापित नहीं कर सकता


12

मैं mysql स्थापना के साथ एक समस्या है जो मैं अकेले हल नहीं कर सकता हूँ। पहले मैंने इस कमांड से पुरानी फाइलों को हटाने और शुद्ध करने की कोशिश की

sudo apt-get remove --purge mysql

कोशिश भी की

sudo apt-get remove --purge mysql*

तथा

sudo apt-get remove --purge mariadb*

सभी 3 कमांड समान आउटपुट देते हैं ...

You might want to run 'apt-get -f install' to correct these:
The following packages have unmet dependencies:
dbconfig-mysql : Depends: mysql-client but it is not going to be installed or
                       mariadb-client but it is not going to be installed or
                       virtual-mysql-client
E: Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a solution).

इसलिए मुझे लगता है कि मुझे सुझाव दिया गया है apt-get -f installऔर मुझे मिल गया है

$ sudo apt-get -f install
Reading package lists... Done
Building dependency tree       
Reading state information... Done
Correcting dependencies... Done
The following additional packages will be installed:
  mysql-server-5.7
Suggested packages:
  mailx tinyca
The following NEW packages will be installed:
  mysql-server-5.7
0 upgraded, 1 newly installed, 0 to remove and 0 not upgraded.
1 not fully installed or removed.
Need to get 0 B/2,597 kB of archives.
After this operation, 48.3 MB of additional disk space will be used.
Do you want to continue? [Y/n] y
Preconfiguring packages ...
(Reading database ... 300885 files and directories currently installed.)
Preparing to unpack .../mysql-server-5.7_5.7.16-0ubuntu0.16.04.1_amd64.deb ...
Aborting downgrade from (at least) 10.0 to 5.7.
If are sure you want to downgrade to 5.7, remove the file
/var/lib/mysql/debian-*.flag and try installing again.
dpkg: error processing archive /var/cache/apt/archives/mysql-server-5.7_5.7.16-0ubuntu0.16.04.1_amd64.deb (--unpack):
 subprocess new pre-installation script returned error exit status 1
Errors were encountered while processing:
 /var/cache/apt/archives/mysql-server-5.7_5.7.16-0ubuntu0.16.04.1_amd64.deb
E: Sub-process /usr/bin/dpkg returned an error code (1)

जब मैं चलता हूं तो वही आउटपुट मिलता है apt upgrade -f। इस का आउटपुट हैsystemctl status mysql.service -l

$ systemctl status mysql.service -l
    ● mysql.service
       Loaded: not-found (Reason: No such file or directory)
       Active: failed (Result: exit-code) since Wed 2016-11-23 07:32:55 EET; 58min ago

    Nov 23 07:32:24 stan systemd[1]: Starting LSB: Start and stop the mysql database server daemon...
    Nov 23 07:32:24 stan mysql[7818]:  * Starting MariaDB database server mysqld
    Nov 23 07:32:55 stan mysql[7818]:    ...fail!
    Nov 23 07:32:55 stan systemd[1]: mysql.service: Control process exited, code=exited status=1
    Nov 23 07:32:55 stan systemd[1]: Failed to start LSB: Start and stop the mysql database server daemon.
    Nov 23 07:32:55 stan systemd[1]: mysql.service: Unit entered failed state.
    Nov 23 07:32:55 stan systemd[1]: mysql.service: Failed with result 'exit-code'.

एक और चीज़ जो मैंने कोशिश की है, उसे हटा दें mysql-serverऔर फिर इसे फिर से वही त्रुटि स्थापित करें।

किसी को भी इस मुद्दे के साथ मदद कर सकते हैं .. मैं विचारों से बाहर हूँ मैं इसे कैसे ठीक कर सकता हूं।

का आउटपुट अपडेट करें lsb_release -a

$ lsb_release -a
  No LSB modules are available.
  Distributor ID:   Ubuntu
  Description:  Ubuntu 16.04.1 LTS
  Release:  16.04
  Codename: xenial 

अपडेट 2: का आउटपुट sudo apt install mysql-server mysql-client

$ sudo apt install mysql-server mysql-client
  Reading package lists... Done
  Building dependency tree       
  Reading state information... Done
  mysql-client is already the newest version (5.7.16-0ubuntu0.16.04.1).
  mysql-server is already the newest version (5.7.16-0ubuntu0.16.04.1).
  You might want to run 'apt-get -f install' to correct these:
  The following packages have unmet dependencies:
  mysql-server : Depends: mysql-server-5.7 but it is not going to be installed
  E: Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a solution).

जवाबों:


28

उपरोक्त समस्या को हल करने के लिए हम निम्नलिखित आदेशों पर अमल करते हैं:

  1. कमांड निष्पादित करके सिस्टम पर स्थापित MySQL पैकेजों की सूची प्राप्त करें sudo dpkg -l | grep mysql
  2. कमांड को निष्पादित करके ऊपर दिखाए गए पैकेजों को हटा दें sudo apt-get --purge autoremove <packages from the step 1>
  3. हटाएं /var/lib/mysql
  4. Mysql को फिर से स्थापित करने का प्रयास करें। इसे आपकी समस्या का समाधान करना चाहिए।

जवाब के लिए थैंक्यू। मैंने कोशिश की है, लेकिन दूसरे चरण पर जहां पर्स और ऑटोरेमूव उन्हें जो भी पैकेज मैंने शुद्ध करने की कोशिश की है, मुझे वही त्रुटि मिली है:You might want to run 'apt-get -f install' to correct these: The following packages have unmet dependencies: mysql-server : Depends: mysql-server-5.7 but it is not going to be installed E: Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a solution).
SI

कृपया कमांड का आउटपुट प्रदान कर सकते हैंlsb_release -a
बिडयूट

मैंने आउटपुट के साथ अपना प्रश्न अपडेट किया है।
SI

निष्पादित sudo apt-get updateतो निष्पादितsudo apt install mysql-server mysql-client
Bidyut

आउटपुट का मेरा सवालsudo apt install mysql-server mysql-client
SI

1

मुझे पता नहीं क्यों, मैंने इन आदेशों के साथ लगभग एक घंटे की कोशिश की, जैसे मैंने अभी-अभी बनाया

export TERM=xterm

और फिर यह सिर्फ उपयुक्त स्थापित के साथ काम किया।

संपादित करें: वास्तव में अब मुझे पता है क्यों। यह हो सकता है कि इंस्टॉलेशन के दौरान यह विज़ुअल इंटरफ़ेस लाने की कोशिश कर रहा हो, जिसमें "पैकेज मेंटेनर के संस्करण को स्थापित करें" और समान कहा जाए, और कुछ उबंटू सर्वर पर डिफ़ॉल्ट TERM उस सेवा को करने में सक्षम नहीं है, इसलिए इंस्टॉलेशन एक त्रुटि फेंकता है। Xterm उस समस्या का हल करता है।

हमारी साइट का प्रयोग करके, आप स्वीकार करते हैं कि आपने हमारी Cookie Policy और निजता नीति को पढ़ और समझा लिया है।
Licensed under cc by-sa 3.0 with attribution required.