Closed
Bug 922674
Opened 12 years ago
Closed 12 years ago
Update commonconfig to include rabbitmq settings
Categories
(Socorro :: Infra, task)
Tracking
(Not tracked)
RESOLVED
FIXED
61
People
(Reporter: brandon, Assigned: bburton)
References
Details
There are two config changes for rabbitmq in 62:
* RabbitMQ settings must be populated in commmonconfig.py
* The middleware configuration must be updated as well, to reflect changes to the middleware.
Comment 1•12 years ago
|
||
Version affected is 61, as specified in the target milestone.
Reporter | ||
Comment 2•12 years ago
|
||
The scripts/config/commonconfig.py.dist file has been updated to include RabbitMQ configuration settings. This is to support a change in the middleware. The settings used here should be identical to the RabbitMQ settings for production crashmover (username, password, host, virtualhost).
Also, the scripts/config/webapiconfig.py.dist file was also updated for this release; while it may be copied over directly, we should verify that it is in fact deployed as well when we do our push.
Assignee | ||
Updated•12 years ago
|
Assignee: nobody → bburton
Assignee | ||
Comment 3•12 years ago
|
||
-> % svn diff
Index: files/stage/etc-socorro/common.conf
===================================================================
--- files/stage/etc-socorro/common.conf (revision 75971)
+++ files/stage/etc-socorro/common.conf (working copy)
@@ -59,3 +59,9 @@
export statsdPrefix=socorro-stage
# bug 822828
export brokenBoot2GeckoFixer=/data/bin/minidump_hack-b2g
+
+# bug 922674
+export rabbitMQUsername=socorro-stage
+export rabbitMQPassword=
+export rabbitMQHost=rabbitmq-zlb.webapp.phx1.mozilla.com
+export rabbitMQVirtualhost=socorro-stage
bburton@althalus [09:21:21] [~/code/mozilla/sysadmins/puppet/trunk/modules/socorro]
-> % svn ci -m "adding rabbitmq configs for mware, bug 922674"
Sending socorro/files/stage/etc-socorro/common.conf
Transmitting file data .
Committed revision 75975.
Assignee | ||
Comment 4•12 years ago
|
||
-> % svn diff
Index: files/prod/etc-socorro/common.conf
===================================================================
--- files/prod/etc-socorro/common.conf (revision 75971)
+++ files/prod/etc-socorro/common.conf (working copy)
@@ -48,3 +48,9 @@
# bug 822828
export brokenBoot2GeckoFixer=/data/bin/minidump_hack-b2g
+
+# bug 922674
+export rabbitMQUsername=socorro-prod
+export rabbitMQPassword=
+export rabbitMQHost=rabbitmq-zlb.webapp.phx1.mozilla.com
+export rabbitMQVirtualhost=socorro-prod
bburton@althalus [09:57:26] [~/code/mozilla/sysadmins/puppet/trunk/modules/socorro]
-> % svn ci -m "adding rabbitmq configs for mware to socorro prod, bug 922674"
Sending socorro/files/prod/etc-socorro/common.conf
Transmitting file data .
Committed revision 75978.
Status: NEW → RESOLVED
Closed: 12 years ago
Resolution: --- → FIXED
You need to log in
before you can comment on or make changes to this bug.
Description
•