-
Notifications
You must be signed in to change notification settings - Fork 4.4k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Other: bootstrap script for Amazon Linux AMI #518
Other: bootstrap script for Amazon Linux AMI #518
Conversation
the fixed pathes will work if my original files are uploaded
About the file that needs to be changed/added: just add them to the pull request and update them in the pull request, while changing the base path from Also how about moving the common parts (creating folders, installing dependencies, etc) to another scripts, that will be used both by this one and the |
OK, I'll try. |
Other: created bootstrap script for amazon linux
Merged. Thanks! |
Thank you! I didn't have time to create common scripts. |
That will be great. Just open another pull request. |
bootstrap script for amazon linux (centos)
I need bootstrap script for not Ubuntu but amazon Linux, so I created bootstrap script for amazon linux.
I fixed some packages name and added some process for amazon linux
I want to share my scripts and want everyone to use them.
However, I would like you @arikfr (you are the main committer, right?) to add some config scripts to
https://raw.githubusercontent.com/EverythingMe/redash/docs_setup/setup/files/
I confirmed that my scripts work, but they should not be perfect, so I'm happy to receive anyone's comments to improve them.
additional scripts to upload
I would like you to add the following files to
https://raw.githubusercontent.com/EverythingMe/redash/docs_setup/setup/files/
details are as follows.
redash_supervisord_init_for_amazon_linux
before
after
Overall
supervisord.conf
Before
command=/opt/redash/current/bin/run gunicorn -b 127.0.0.1:5000 --name redash -w 4 redash.wsgi:app
command=/opt/redash/current/bin/run /usr/local/bin/celery worker --app=redash.worker --beat -Qqueries,celery,scheduled_queries
After
command=/opt/redash/current/bin/run /usr/local/bin/gunicorn -b 127.0.0.1:5000 --name redash -w 4 redash.wsgi:app
command=/opt/redash/current/bin/run celery worker --app=redash.worker --beat -Qqueries,celery,scheduled_queries
Overall