diff --git a/README.md b/README.md index 968fcee6e..e7e9b05b3 100644 --- a/README.md +++ b/README.md @@ -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. diff --git a/scripts/elastic-upgrade.sh b/scripts/elastic-upgrade.sh index 907e5f9f1..a915f997e 100755 --- a/scripts/elastic-upgrade.sh +++ b/scripts/elastic-upgrade.sh @@ -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 ;;