1
0
mirror of https://github.com/LaCasemate/fab-manager.git synced 2024-11-29 10:24:20 +01:00

fix upgrade script for elastic installed on host system

This commit is contained in:
Sylvain 2018-03-29 10:06:03 +02:00
parent abad2a88c1
commit ffcc8f958f
2 changed files with 3 additions and 5 deletions

View File

@ -145,9 +145,7 @@ This procedure is not easy to follow so if you don't need to write some code for
11. You should now be able to access your local development FabManager instance by accessing `http://localhost:3000` in your web browser.
12. You can login as the default administrator using the following credentials:
- user: admin@fab-manager.com
- password: adminadmin
12. You can login as the default administrator using the credentials defined previously.
13. Email notifications will be caught by MailCatcher.
To see the emails sent by the platform, open your web browser at `http://localhost:1080` to access the MailCatcher interface.

View File

@ -182,8 +182,8 @@ upgrade_classic()
then
# Debian compatible
wget -qO - https://packages.elastic.co/GPG-KEY-elasticsearch | sudo apt-key add -
echo "deb http://packages.elastic.co/elasticsearch/2.x/debian stable main" | sudo tee -a /etc/apt/sources.list.d/elasticsearch-2.x.list
sudo apt-get update && sudo apt-get upgrade
echo "deb http://packages.elastic.co/elasticsearch/2.x/debian stable main" | sudo tee /etc/apt/sources.list.d/elasticsearch-2.x.list
sudo apt-get update && sudo apt-get install --only-upgrade elasticsearch
fi
fi
;;