diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 570f52d1f9..4b84edec45 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -9,18 +9,23 @@ Added * Add make command to autogen JSON schema from the models of action, rule, etc. Add check to ensure update to the models require schema to be regenerated. (new feature) * Improved st2sensor service logging message when a sensor will not be loaded when assigned to a - different partition (@punkrokk) + different partition (@punkrokk) #4991 * Add support for a configurable connect timeout for SSH connections as requested in #4715 by adding the new configuration parameter ``ssh_connect_timeout`` to the ``ssh_runner`` group in st2.conf. (new feature) #4914 This option was requested by Harry Lee (@tclh123) and contributed by Marcel Weinberg (@winem). +* Added a FAQ for the default user/pass for the `tools/launch_dev.sh` script and print out the + default pass to screen when the script completes. (improvement) #5013 + + Contributed by @punkrokk Changed ~~~~~~~ -* Switch to MongoDB ``4.0`` as the default version starting with all supported OS's in st2 ``v3.3.0`` (improvement) #4972 +* Switch to MongoDB ``4.0`` as the default version starting with all supported OS's in st2 + ``v3.3.0`` (improvement) #4972 -Contributed by @punkrokk + Contributed by @punkrokk Fixed ~~~~~ diff --git a/dev_docs/Troubleshooting_Guide.rst b/dev_docs/Troubleshooting_Guide.rst index 9f6cd66499..4e1c1f22d2 100644 --- a/dev_docs/Troubleshooting_Guide.rst +++ b/dev_docs/Troubleshooting_Guide.rst @@ -1,6 +1,12 @@ Troubleshooting Guide ===================== +**Q: What is the default username and password for the** ``tools/launchdev.sh`` **script?** + +**A: The default creds are**: + user: testu + pass: testp + **Q: After starting st2 server using** ``tools/launchdev.sh`` **script, getting following error:**:: $ st2 action list diff --git a/tools/launchdev.sh b/tools/launchdev.sh index ad2e5d9dec..23f1d018b3 100755 --- a/tools/launchdev.sh +++ b/tools/launchdev.sh @@ -436,6 +436,9 @@ function st2start(){ fi fi + # Print default creds to the screen + echo "The default creds are testu:testp" + # List screen sessions screen -ls || exit 0 }