Closed
Bug 556391
Opened 16 years ago
Closed 15 years ago
Production database for schedulerdb
Categories
(mozilla.org Graveyard :: Server Operations, task)
Tracking
(Not tracked)
RESOLVED
FIXED
People
(Reporter: catlee, Assigned: fox2mike)
References
Details
Please create a new database for our production buildbot masters to use.
It should be called 'buildbot_schedulers' and be accessible by the 'buildbot' user, which should already have permissions on the 'buildbot' database.
It should be accessible for read/write access (including create/alter table) from production-master, production-master02, and production-master01,03 (from bug 556390).
| Assignee | ||
Updated•16 years ago
|
Assignee: server-ops → shyam
| Assignee | ||
Comment 1•16 years ago
|
||
Done.
mysql> create database buildbot_schedulers;
Query OK, 1 row affected (0.04 sec)
mysql> grant all on buildbot_schedulers.* to buildbot@'10.2.71.90';
Query OK, 0 rows affected (0.03 sec)
mysql> grant all on buildbot_schedulers.* to buildbot@'10.2.71.96';
Query OK, 0 rows affected (0.00 sec)
mysql> grant all on buildbot_schedulers.* to buildbot@'10.2.71.7';
Query OK, 0 rows affected (0.00 sec)
mysql> grant all on buildbot_schedulers.* to buildbot@'10.2.71.98';
Query OK, 0 rows affected (0.00 sec)
Also, I've poked holes in the firewall to allow 96 and 98 to connect to the DB.
Status: NEW → RESOLVED
Closed: 16 years ago
Resolution: --- → FIXED
| Reporter | ||
Comment 2•15 years ago
|
||
On production-master01:
mysql -u buildbot -p -h tm-b01-master01.mozilla.org buildbot_schedulers
ERROR 2003 (HY000): Can't connect to MySQL server on 'tm-b01-master01.mozilla.org' (110)
Works fine from production-master, so looks like a firewall issue?
Status: RESOLVED → REOPENED
Resolution: FIXED → ---
| Assignee | ||
Comment 3•15 years ago
|
||
Access rules added on build-outbound.
| Assignee | ||
Comment 4•15 years ago
|
||
And fixed the DB access issues.
Sorry Chris!
Status: REOPENED → RESOLVED
Closed: 16 years ago → 15 years ago
Resolution: --- → FIXED
Updated•11 years ago
|
Product: mozilla.org → mozilla.org Graveyard
You need to log in
before you can comment on or make changes to this bug.
Description
•