forked from lsst/qserv
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'tickets/DM-33350' into main
- Loading branch information
Showing
6 changed files
with
264 additions
and
191 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -92,7 +92,7 @@ services: | |
entrypoint worker-xrootd | ||
--db-uri mysql://[email protected]:3306 | ||
--db-admin-uri mysql://root:[email protected]:3306 | ||
--vnid-config "@/usr/local/lib64/libreplica.so mysql://[email protected]:3306/qservw_worker 0 0" | ||
--vnid-config "@/usr/local/lib64/libreplica.so {{db_uri}}/qservw_worker 0 0" | ||
--cmsd-manager-name manager-xrootd | ||
--cmsd-manager-count 1 | ||
--mysql-monitor-password CHANGEME_MONITOR | ||
|
@@ -171,12 +171,13 @@ services: | |
<< : *worker-xrootd | ||
command: > | ||
entrypoint --log-level DEBUG worker-xrootd | ||
--db-uri mysql://[email protected]:3306?socket=/qserv/mariadb/run/mysqld.sock | ||
--db-admin-uri mysql://root:[email protected]:3306?socket=/qserv/mariadb/run/mysqld.sock | ||
--db-uri mysql://[email protected]:3306?socket={{db_socket}} | ||
--db-admin-uri mysql://root:[email protected]:3306?socket={{db_socket}} | ||
--vnid-config "@/usr/local/lib64/libreplica.so mysql://root:CHANGEME@localhost:3306/qservw_worker 0 0" | ||
--cmsd-manager-name manager-xrootd | ||
--cmsd-manager-count 1 | ||
--mysql-monitor-password CHANGEME_MONITOR | ||
--targs db_socket=/qserv/mariadb/run/mysqld.sock | ||
environment: | ||
<< : *log-environment | ||
volumes: | ||
|
@@ -306,8 +307,9 @@ services: | |
init: true | ||
command: > | ||
entrypoint --log-level DEBUG proxy | ||
--db-uri mysql://[email protected]:3306?socket=/qserv/mariadb/run/mysqld.sock | ||
--db-admin-uri mysql://root:[email protected]:3306?socket=/qserv/mariadb/run/mysqld.sock | ||
--db-uri mysql://[email protected]:3306?socket={{db_socket}} | ||
--db-admin-uri mysql://root:[email protected]:3306?socket={{db_socket}} | ||
--targs db_socket=/qserv/mariadb/run/mysqld.sock | ||
--xrootd-manager manager-xrootd | ||
environment: | ||
<< : *log-environment | ||
|
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
Oops, something went wrong.