2021-12-29 13:48:52 +01:00
|
|
|
# 🤝HIRE US FOR FULL INSTALLATION🤝
|
|
|
|
|
|
|
|
Contact Info: archan.fiem.it@gmail.com, hk.sainaga@gmail.com
|
|
|
|
# Shuffle Installation Guide:
|
|
|
|
- You can check the full installation guide from [HERE](https://github.com/frikky/Shuffle/edit/master/.github/install-guide.md)
|
|
|
|
- SSH into the VM which you have spinned up for installing Shuffle
|
|
|
|
- Make sure you have [Docker](https://docs.docker.com/get-docker/) and [docker-compose](https://docs.docker.com/compose/install/) installed.
|
|
|
|
```bash
|
|
|
|
sudo apt get update
|
|
|
|
sudo apt upgrade
|
|
|
|
sudo apt install docker.io
|
|
|
|
sudo apt install docker-compose
|
|
|
|
```
|
|
|
|
- Download Shuffle
|
|
|
|
```bash
|
|
|
|
git clone https://github.com/frikky/Shuffle
|
|
|
|
cd Shuffle
|
2022-01-11 12:55:17 +01:00
|
|
|
```
|
|
|
|
- Run docker-compose.
|
|
|
|
```
|
|
|
|
sudo docker-compose up -d #Wait till the process is completed, shuffle-database folder will now be created.
|
2021-12-29 13:48:52 +01:00
|
|
|
```
|
|
|
|
- Fix prerequisites for the Opensearch database (Elasticsearch):
|
|
|
|
```bash
|
|
|
|
sudo chown 1000:1000 -R shuffle-database
|
|
|
|
```
|
2022-01-11 12:55:17 +01:00
|
|
|
- Restart docker-compose.
|
2021-12-29 13:48:52 +01:00
|
|
|
```
|
2022-01-11 12:55:17 +01:00
|
|
|
sudo docker-compose restart
|
2021-12-29 13:48:52 +01:00
|
|
|
```
|
|
|
|
- Once done verify your service by checking below
|
|
|
|
```bash
|
|
|
|
sudo docker ps
|
|
|
|
sudo docker logs <container-id> follow
|
|
|
|
```
|
|
|
|
- From your browser access- https://Public-IP:3443
|