Skip to content
Snippets Groups Projects
Commit f4ed54b0 authored by Camilla Galloni's avatar Camilla Galloni
Browse files

Merge branch 'feature/ro-persistent-ctp7' into 'main'

Keep the CTP7 in read-only mode except during maintenance

Closes #2

See merge request cmsgemonline/gem-ops/gem-daq-doc!13
parents 319c30c6 5990493c
No related branches found
No related tags found
1 merge request!13Keep the CTP7 in read-only mode except during maintenance
Pipeline #5370781 passed
......@@ -12,6 +12,20 @@ Failing to follow the instructions or failing to react to unexpected events can
* System modifications to the GEM machines can (but should not) be carried on by members of the `gemsudoers` group.
* Traditionally, the `gempro` and `gemsudoers` groups are kept in sync' and meant for DAQ experts; the `cms_gem_librarian` is a sub-group meant for administrators and superusers.
!!! warning
All CTP7 volumes are kept in read-only mode during normal operations in order to avoid data corruption in case of a sudden power cut.
During backend boards maintenance, the `/mnt/persistent` partition must be remounted in read-write mode:
``` sh
# from gempro@gemvm-control
mussh -m 13 -H /gemdata/config/ctp7-ge* -l root -c 'mount -o remount,rw /mnt/persistent'
```
Do no forget to put back the partition in read-only mode after maintenance:
``` sh
# from gempro@gemvm-control
mussh -m 13 -H /gemdata/config/ctp7-ge* -l root -c 'mount -o remount,ro /mnt/persistent'
```
Such an operation is taken care of automatically in the `push-configuration.sh` script & co.
## Online software
### Client software
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment