Skip to content
Merged
Show file tree
Hide file tree
Changes from 4 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,10 @@ Added
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.

Contributed by @punkrokk

Changed
~~~~~~~
Expand Down
6 changes: 6 additions & 0 deletions dev_docs/Troubleshooting_Guide.rst
Original file line number Diff line number Diff line change
@@ -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
Expand Down
3 changes: 3 additions & 0 deletions tools/launchdev.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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
}
Expand Down