Hallo,
ich spiele grade mit Matrix-Synapse rum und versuche es zu installieren. Ich bin soweit durch, aber ich bekomme es nicht zum Laufen und sehe/finde den Fehler nicht.
1 2 | root@chat:/var/log/matrix-synapse# systemctl start matrix-synapse root@chat:/var/log/matrix-synapse# |
Aber der Status sagt mir:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 | root@chat:/var/log/matrix-synapse# systemctl status matrix-synapse ● matrix-synapse.service - Synapse Matrix homeserver Loaded: loaded (/lib/systemd/system/matrix-synapse.service; enabled; vendor preset: enabled) Active: inactive (dead) since Mon 2022-04-04 18:45:48 UTC; 38s ago Process: 8478 ExecStartPre=/usr/bin/python3 -m synapse.app.homeserver --config-path=/etc/matrix-synapse/homeserver.yaml --config-path=/etc/matrix-synapse/conf.d/ --generate-keys (code=> Process: 8499 ExecStart=/usr/bin/python3 -m synapse.app.homeserver --config-path=/etc/matrix-synapse/homeserver.yaml --config-path=/etc/matrix-synapse/conf.d/ (code=exited, status=0/SU> Main PID: 8499 (code=exited, status=0/SUCCESS) Apr 04 18:45:48 chat.xxx.de synapse[8499]: synapse.storage.data_stores.main.event_push_actions: [None] Found stream ordering 1 month ago: it's 0 Apr 04 18:45:48 chat.xxx.de synapse[8499]: synapse.storage.data_stores.main.event_push_actions: [None] Searching for stream ordering 1 day ago Apr 04 18:45:48 chat.xxx.de synapse[8499]: synapse.storage.data_stores.main.event_push_actions: [None] Found stream ordering 1 day ago: it's 0 Apr 04 18:45:48 chat.xxx.de synapse[8499]: synapse.storage.data_stores: [None] Starting 'state' data store Apr 04 18:45:48 chat.xxx.de synapse[8499]: synapse.storage.data_stores: [None] Database 'master' prepared Apr 04 18:45:48 chat.xxx.de synapse[8499]: synapse.server: [None] Finished setting up. Apr 04 18:45:48 chat.xxx.de synapse[8499]: synapse.app.homeserver: [] Running Apr 04 18:45:48 chat.xxx.de synapse[8499]: synapse.app.homeserver: [] Set file limit to: 524288 Apr 04 18:45:48 chat.xxx.de synapse[8499]: synapse.config.tls: [] Loading TLS key from /etc/matrix-synapse/homeserver.tls.key Apr 04 18:45:48 chat.xxx.de systemd[1]: matrix-synapse.service: Succeeded. |
Die Port sind auch nicht offen:
1 2 3 4 5 6 7 8 9 10 11 12 | root@chat:/var/log/matrix-synapse# netstat -tulp Active Internet connections (only servers) Proto Recv-Q Send-Q Local Address Foreign Address State PID/Program name tcp 0 0 0.0.0.0:http 0.0.0.0:* LISTEN 4415/nginx: master tcp 0 0 127.0.0.53:domain 0.0.0.0:* LISTEN 599/systemd-resolve tcp 0 0 0.0.0.0:ssh 0.0.0.0:* LISTEN 896/sshd: /usr/sbin tcp 0 0 0.0.0.0:smtp 0.0.0.0:* LISTEN 1776/master tcp6 0 0 [::]:http [::]:* LISTEN 4415/nginx: master tcp6 0 0 [::]:ssh [::]:* LISTEN 896/sshd: /usr/sbin tcp6 0 0 [::]:smtp [::]:* LISTEN 1776/master udp 0 0 127.0.0.53:domain 0.0.0.0:* 599/systemd-resolve root@chat:/var/log/matrix-synapse# |
Das log sagt mir auch nichts:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 | 2022-04-04 18:45:48,409 - root - 257 - WARNING - None- ***** STARTING SERVER ***** 2022-04-04 18:45:48,411 - root - 258 - WARNING - None- Server /usr/lib/python3/dist-packages/synapse/app/homeserver.py version 1.11.0 2022-04-04 18:45:48,411 - root - 259 - INFO - None- Server hostname: chat.xxx.de 2022-04-04 18:45:48,411 - synapse.app.homeserver - 340 - INFO - None- Setting up server 2022-04-04 18:45:48,411 - synapse.server - 240 - INFO - None- Setting up. 2022-04-04 18:45:48,413 - synapse.storage.data_stores - 48 - INFO - None- Preparing database 'master'... 2022-04-04 18:45:48,417 - synapse.storage.prepare_database - 309 - INFO - None- Upgrading schema to v57 2022-04-04 18:45:48,421 - synapse.storage.data_stores - 58 - INFO - None- Starting 'main' data store 2022-04-04 18:45:48,425 - synapse.storage.data_stores.main.event_push_actions - 499 - INFO - None- Searching for stream ordering 1 month ago 2022-04-04 18:45:48,425 - synapse.storage.data_stores.main.event_push_actions - 503 - INFO - None- Found stream ordering 1 month ago: it's 0 2022-04-04 18:45:48,426 - synapse.storage.data_stores.main.event_push_actions - 506 - INFO - None- Searching for stream ordering 1 day ago 2022-04-04 18:45:48,426 - synapse.storage.data_stores.main.event_push_actions - 510 - INFO - None- Found stream ordering 1 day ago: it's 0 2022-04-04 18:45:48,430 - synapse.storage.data_stores - 68 - INFO - None- Starting 'state' data store 2022-04-04 18:45:48,430 - synapse.storage.data_stores - 81 - INFO - None- Database 'master' prepared 2022-04-04 18:45:48,431 - synapse.server - 243 - INFO - None- Finished setting up. 2022-04-04 18:45:48,448 - synapse.app.homeserver - 110 - INFO - - Running 2022-04-04 18:45:48,448 - synapse.app.homeserver - 30 - INFO - - Set file limit to: 524288 2022-04-04 18:45:48,449 - synapse.config.tls - 517 - INFO - - Loading TLS key from /etc/matrix-synapse/homeserver.tls.key |
Hat jemand eine Idee, ob ich was vergessen/übersehen habe oder noch wo reinschauen könnte?