Open matrixbot opened 2 weeks ago
This comment was originally posted by @manchelsi at https://github.com/matrix-org/dendrite/issues/3435#issuecomment-2437146708.
Note that Dendrite cannot share a single SQLite database across multiple components. Each component must be configured with its own SQLite database filename. You will have to remove the global.database section from your Dendrite config and add it to each individual section instead in order to use SQLite.
`room_server: database: type: sqlite3 connection_string: "file:/data/chat/room_server.db"
federation_api: database: type: sqlite3 connection_string: "file:/data/chat/federation_api.db"
key_server: database: type: sqlite3 connection_string: "file:/data/chat/key_server.db"
media_api: database: type: sqlite3 connection_string: "file:/data/chat/media_api.db"
sync_api: database: type: sqlite3 connection_string: "file:/data/chat/sync_api.db"
user_api: account_database: type: sqlite3 connection_string: "file:/data/chat/user_api.db"
relay_api: database: type: sqlite3 connection_string: "file:/data/chat/relay_api.db"
mscs: database: type: sqlite3 connection_string: "file:/data/chat/mscs.db" `
This issue was originally created by @paigeadelethompson at https://github.com/matrix-org/dendrite/issues/3435.
followed the documentation @ https://matrix-org.github.io/dendrite/installation/manual/database and it don't work
tried
file:///
and it dont work