From 5a0c5b691125a2dbffd7a8ac7f9f2f9c1a188d0d Mon Sep 17 00:00:00 2001 From: Mavlon <82092080+mavlushechka@users.noreply.github.com> Date: Sun, 1 May 2022 16:41:52 +0500 Subject: [PATCH] Update installation guide on Arch Linux Change the package manager from pacman to yay which installs mongodb. Beginning with January 2019 mongodb package is not available in the official Arch repositories and can't be installed using pacman. Instead of pacman you can use yay to compile mongodb or install prebuilt mongodb-bin. To compile mongodb you should have 260 GB available on your hard disk, so mongodb-bin is easier to install. As a result, guide is now correct for Arch Linux users. --- README.md | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index acfeba0..bd70da6 100644 --- a/README.md +++ b/README.md @@ -23,13 +23,14 @@ sudo apt install git maven openjdk-8-jdk mongodb On Arch: ``` bash -sudo pacman -S git maven mongodb jdk8-opendjk +sudo pacman -S git maven jdk8-opendjk +yay -S mongodb-bin # Don't forget to start mongodb sudo systemctl start mongodb.service ``` -*If needed, visit [troubleshooting mongodb](https://wiki.archlinux.org/index.php/MongoDB#Troubleshooting).* +*If needed, visit [yay installation](https://github.com/Jguer/yay#installation) and [troubleshooting mongodb](https://wiki.archlinux.org/index.php/MongoDB#Troubleshooting).* **Deploying server**