Created
September 2, 2015 15:19
-
-
Save colinhoernig/bdc07d03b8617947d1a0 to your computer and use it in GitHub Desktop.
AWS Graylog2 Linux AMI - Restart Graylog2 Services
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# stop all graylog2 services | |
service graylog2-web stop; service graylog2 stop; service elasticsearch stop; service mongod stop; | |
# start all graylog2 services again | |
service elasticsearch start; service mongod start; sleep 5; service graylog2 start; service graylog2-web start; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment