-1
votes

impossible d'installer Mongodb correctement à partir du terminal ubuntu 18.04 LTS

J'essaie d'installer mongodb sur mon Ubuntu 18.04 LTS à partir de ce site https://www.howtoforge.com/tutorial/install-mongodb-on-ubuntu/ .

Après avoir exécuté cette commande: sudo apt-get install -y mongodb-org j'obtiens ceci:

root@walid-HP-250-G4-Notebook-PC:/# sudo apt-get install -y mongodb-org
Reading package lists... Done
Building dependency tree       
Reading state information... Done
The following additional packages will be installed:
  mongodb-org-mongos mongodb-org-server mongodb-org-shell mongodb-org-tools
The following NEW packages will be installed:
  mongodb-org mongodb-org-mongos mongodb-org-server mongodb-org-shell
  mongodb-org-tools
0 upgraded, 5 newly installed, 0 to remove and 50 not upgraded.
Need to get 81.7 MB of archives.
After this operation, 271 MB of additional disk space will be used.
Get:1 https://repo.mongodb.org/apt/ubuntu bionic/mongodb-org/4.2/multiverse amd64 mongodb-org-shell amd64 4.2.1 [11.9 MB]
Get:2 https://repo.mongodb.org/apt/ubuntu bionic/mongodb-org/4.2/multiverse amd64 mongodb-org-server amd64 4.2.1 [18.3 MB]
Get:3 https://repo.mongodb.org/apt/ubuntu bionic/mongodb-org/4.2/multiverse amd64 mongodb-org-mongos amd64 4.2.1 [10.0 MB]
Get:4 https://repo.mongodb.org/apt/ubuntu bionic/mongodb-org/4.2/multiverse amd64 mongodb-org-tools amd64 4.2.1 [41.5 MB]
Get:5 https://repo.mongodb.org/apt/ubuntu bionic/mongodb-org/4.2/multiverse amd64 mongodb-org amd64 4.2.1 [3,528 B]
Fetched 81.7 MB in 35min 43s (38.1 kB/s)                                       
Selecting previously unselected package mongodb-org-shell.
(Reading database ... 179789 files and directories currently installed.)
Preparing to unpack .../mongodb-org-shell_4.2.1_amd64.deb ...
Unpacking mongodb-org-shell (4.2.1) ...
Selecting previously unselected package mongodb-org-server.
Preparing to unpack .../mongodb-org-server_4.2.1_amd64.deb ...
Unpacking mongodb-org-server (4.2.1) ...
dpkg: error processing archive /var/cache/apt/archives/mongodb-org-server_4.2.1_amd64.deb (--unpack):
 trying to overwrite '/usr/bin/mongod', which is also in package mongodb-server-core 1:3.6.3-0ubuntu1.1
dpkg-deb: error: paste subprocess was killed by signal (Broken pipe)
Selecting previously unselected package mongodb-org-mongos.
Preparing to unpack .../mongodb-org-mongos_4.2.1_amd64.deb ...
Unpacking mongodb-org-mongos (4.2.1) ...
dpkg: error processing archive /var/cache/apt/archives/mongodb-org-mongos_4.2.1_amd64.deb (--unpack):
 trying to overwrite '/usr/bin/mongos', which is also in package mongodb-server-core 1:3.6.3-0ubuntu1.1
dpkg-deb: error: paste subprocess was killed by signal (Broken pipe)
Selecting previously unselected package mongodb-org-tools.
Preparing to unpack .../mongodb-org-tools_4.2.1_amd64.deb ...
Unpacking mongodb-org-tools (4.2.1) ...
Selecting previously unselected package mongodb-org.
Preparing to unpack .../mongodb-org_4.2.1_amd64.deb ...
Unpacking mongodb-org (4.2.1) ...
Errors were encountered while processing:
 /var/cache/apt/archives/mongodb-org-server_4.2.1_amd64.deb
 /var/cache/apt/archives/mongodb-org-mongos_4.2.1_amd64.deb
E: Sub-process /usr/bin/dpkg returned an error code (1)

N'importe qui peut aider s'il vous plaît !!


0 commentaires

3 Réponses :


6
votes

Il existe un package existant d'où l'erreur ci-dessous "essayant d'écraser".

dpkg: archive de traitement des erreurs /var/cache/apt/archives/mongodb-org-mongos_4.2.1_amd64.deb (--unpack): tentative d'écrasement de '/ usr / bin / mongos', qui se trouve également dans le package mongodb-server -core 1: 3.6.3-0ubuntu1.1

essayez d'utiliser --force-overwrite pour écraser le paquet

Commande pour exécuter sudo dpkg -i --force-all /var/cache/apt/archives/mongodb-org-mongos_4.2.1_amd64.deb

Ensuite, lancez install sudo apt-get install -f mongodb-org


1 commentaires

cela a fonctionné sans réinstaller mongodb, merci



0
votes

L'erreur est due au fait que votre système a déjà installé le package mongodb, puis à la tentative d'installation de mongodb-org.

Exécutez ce qui suit pour supprimer / désinstaller le package mongo installé existant.

Vous aurez peut-être besoin d'un sudo apt autoremove pour supprimer les paquets courants sur votre système.

Maintenant, essayez d'installer. Vous devriez le faire sans aucune erreur à coup sûr cette fois

sudo service mongod status 

Démarrer Mongod

sudo systemctl start mongod
sudo systemctl enable mongod

Vérifiez si mongod fonctionne ou non

sudo apt install mongodb-org
sudo apt remove mongodb-org
sudo apt purge mongodb-org
sudo apt remove mongodb
sudo apt purge mongodb


0 commentaires

0
votes

sudo apt remove mongo* et réinstaller peut aider.


0 commentaires