Open jakecoppinger opened 2 years ago
i also had this problem (on Debian 11). did you get it sorted?
i had success with this:
To list all services on Debian 11 with "matrix" in their name, you can use the following command as the root user or with sudo privileges:
systemctl list-units --type=service --all --no-pager | grep matrix
To stop all services on Debian 11 with "matrix" in their name, you can use the following command as the root user or with sudo privileges:
systemctl list-units --type=service --all --no-pager | grep matrix | awk '{print $1}' | xargs -r sudo systemctl stop
I then followed the guide ....using tar to migrate the /matrix directory between servers. (Note: im doing this on my client (3rd machine) not from the OLD server or the NEW server).
ssh root@matrixold "tar czpf - --preserve-permissions /matrix" | ssh root@matrixnew "tar xzpf - --preserve-permissions -C /"
Maybe this could be updated in the documentation
Following https://github.com/spantaleev/matrix-docker-ansible-deploy/blob/master/docs/maintenance-migrating.md and running
systemctl disable --now matrix*
on my server fails with error message:Expected behavior Not an error message, services stopped.
Matrix Server: