Created
August 7, 2019 00:37
-
-
Save GarimaDamani/2006a6be707aeaa1efc58ed683bad79e to your computer and use it in GitHub Desktop.
Shell script to create two directories and install supervisor in ubuntu
This file contains 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
# Installing Supervisord | |
apt-get update && apt-get install -y python-setuptools | |
easy_install supervisor | |
mkdir /etc/supervisor | |
echo_supervisord_conf > /etc/supervisor/supervisord.conf | |
mkdir /etc/supervisor/conf.d |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment