You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/importing-postgres.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -60,7 +60,7 @@ ALTER TABLE public.application_services_state OWNER TO synapse_user;
60
60
It can be worked around by changing the username to `synapse`, for example by using `sed`:
61
61
62
62
```Shell
63
-
$ sed -i "s/synapse_user/synapse/g" homeserver.sql"
63
+
$ sed -i "s/synapse_user/synapse/g" homeserver.sql
64
64
```
65
65
66
66
This uses sed to perform an 'in-place' (`-i`) replacement globally (`/g`), searching for`synapse user` and replacing with `synapse` (`s/synapse_user/synapse`). If your database username was different, change `synapse_user` to that username instead.
0 commit comments