ReleaseEngineering/How To/Start RPM Ubuntu Packager Instances: Difference between revisions
< ReleaseEngineering | How To
Jump to navigation
Jump to search
No edit summary |
No edit summary |
||
| Line 1: | Line 1: | ||
How to start the RPM and Ubuntu packager instances on Amazon EC2 from the command-line | How to start the RPM and Ubuntu packager instances on Amazon EC2 from the command-line | ||
$ ssh buildduty@ | $ ssh buildduty@aws-manager1.srv.releng.scl3.mozilla.com | ||
$ source / | $ source /builds/aws_manager/bin/activate | ||
$ cd | $ cd /builds/aws_manager | ||
# start ubuntu packager | # start ubuntu packager | ||
$ python aws_manage_instances.py -k | $ python cloud-tools/scripts/aws_manage_instances.py -k secrets/aws-secrets.json start ubuntu64packager1 | ||
# start RPM packager | # start RPM packager | ||
$ python aws_manage_instances.py -k | $ python cloud-tools/scripts/aws_manage_instances.py -k secrets/aws-secrets.json start rpmpackager1 | ||
You can also specify 'stop' and 'status' in place of 'start'. | You can also specify 'stop' and 'status' in place of 'start'. | ||
See also: [[ReleaseEngineering/PuppetAgain/HowTo/Build_RPMs]] | See also: [[ReleaseEngineering/PuppetAgain/HowTo/Build_RPMs]] | ||
Revision as of 16:55, 1 April 2014
How to start the RPM and Ubuntu packager instances on Amazon EC2 from the command-line
$ ssh buildduty@aws-manager1.srv.releng.scl3.mozilla.com $ source /builds/aws_manager/bin/activate $ cd /builds/aws_manager # start ubuntu packager $ python cloud-tools/scripts/aws_manage_instances.py -k secrets/aws-secrets.json start ubuntu64packager1 # start RPM packager $ python cloud-tools/scripts/aws_manage_instances.py -k secrets/aws-secrets.json start rpmpackager1
You can also specify 'stop' and 'status' in place of 'start'.