Matrix Docker Ansible eploy
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

151 строка
6.5 KiB

  1. # SOME DESCRIPTIVE TITLE.
  2. # Copyright (C) 2018-2024, Slavi Pantaleev, Aine Etke, MDAD community
  3. # members
  4. # This file is distributed under the same license as the
  5. # matrix-docker-ansible-deploy package.
  6. # FIRST AUTHOR <EMAIL@ADDRESS>, 2024.
  7. #
  8. #, fuzzy
  9. msgid ""
  10. msgstr ""
  11. "Project-Id-Version: matrix-docker-ansible-deploy \n"
  12. "Report-Msgid-Bugs-To: \n"
  13. "POT-Creation-Date: 2025-01-27 09:54+0200\n"
  14. "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
  15. "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
  16. "Language: bg\n"
  17. "Language-Team: bg <LL@li.org>\n"
  18. "Plural-Forms: nplurals=2; plural=(n != 1);\n"
  19. "MIME-Version: 1.0\n"
  20. "Content-Type: text/plain; charset=utf-8\n"
  21. "Content-Transfer-Encoding: 8bit\n"
  22. "Generated-By: Babel 2.16.0\n"
  23. #: ../../../docs/importing-postgres.md:1
  24. msgid "Importing an existing Postgres database from another installation (optional)"
  25. msgstr ""
  26. #: ../../../docs/importing-postgres.md:3
  27. msgid "Run this if you'd like to import your database from a previous installation. (don't forget to import your Synapse `media_store` files as well — see [the importing-synape-media-store guide](importing-synapse-media-store.md))."
  28. msgstr ""
  29. #: ../../../docs/importing-postgres.md:6
  30. msgid "Prerequisites"
  31. msgstr ""
  32. #: ../../../docs/importing-postgres.md:8
  33. msgid "For this to work, **the database name in Postgres must match** what this playbook uses. This playbook uses a Postgres database name of `synapse` by default (controlled by the `matrix_synapse_database_database` variable). If your database name differs, be sure to change `matrix_synapse_database_database` to your desired name and to re-run the playbook before proceeding."
  34. msgstr ""
  35. #: ../../../docs/importing-postgres.md:10
  36. msgid "The playbook supports importing Postgres dump files in **text** (e.g. `pg_dump > dump.sql`) or **gzipped** formats (e.g. `pg_dump | gzip -c > dump.sql.gz`). Importing multiple databases (as dumped by `pg_dumpall`) is also supported."
  37. msgstr ""
  38. #: ../../../docs/importing-postgres.md:12
  39. msgid "The migration might be a good moment, to \"reset\" a not properly working bridge. Be aware, that it might affect all users (new link to bridge, new rooms, …)"
  40. msgstr ""
  41. #: ../../../docs/importing-postgres.md:14
  42. msgid "Before doing the actual import, **you need to upload your Postgres dump file to the server** (any path is okay)."
  43. msgstr ""
  44. #: ../../../docs/importing-postgres.md:16
  45. msgid "Importing"
  46. msgstr ""
  47. #: ../../../docs/importing-postgres.md:18
  48. msgid "To import, run this command (make sure to replace `SERVER_PATH_TO_POSTGRES_DUMP_FILE` with a file path on your server):"
  49. msgstr ""
  50. #: ../../../docs/importing-postgres.md:26
  51. msgid "**Notes**:"
  52. msgstr ""
  53. #: ../../../docs/importing-postgres.md:28
  54. msgid "`SERVER_PATH_TO_POSTGRES_DUMP_FILE` must be a file path to a Postgres dump file on the server (not on your local machine!)"
  55. msgstr ""
  56. #: ../../../docs/importing-postgres.md:29
  57. msgid "`postgres_default_import_database` defaults to `matrix`, which is useful for importing multiple databases (for dumps made with `pg_dumpall`). If you're importing a single database (e.g. `synapse`), consider changing `postgres_default_import_database` accordingly"
  58. msgstr ""
  59. #: ../../../docs/importing-postgres.md:30
  60. msgid "after importing a large database, it's a good idea to run [an `ANALYZE` operation](https://www.postgresql.org/docs/current/sql-analyze.html) to make Postgres rebuild its database statistics and optimize its query planner. You can easily do this via the playbook by running `just run-tags run-postgres-vacuum -e postgres_vacuum_preset=analyze` (see [Vacuuming PostgreSQL](maintenance-postgres.md#vacuuming-postgresql) for more details)."
  61. msgstr ""
  62. #: ../../../docs/importing-postgres.md:32
  63. msgid "Troubleshooting"
  64. msgstr ""
  65. #: ../../../docs/importing-postgres.md:34
  66. msgid "Table Ownership"
  67. msgstr ""
  68. #: ../../../docs/importing-postgres.md:36
  69. msgid "A table ownership issue can occur if you are importing from a Synapse installation which was both:"
  70. msgstr ""
  71. #: ../../../docs/importing-postgres.md:38
  72. msgid "migrated from SQLite to Postgres, and"
  73. msgstr ""
  74. #: ../../../docs/importing-postgres.md:39
  75. msgid "used a username other than 'synapse'"
  76. msgstr ""
  77. #: ../../../docs/importing-postgres.md:41
  78. msgid "In this case you may run into the following error during the import task:"
  79. msgstr ""
  80. #: ../../../docs/importing-postgres.md:47
  81. msgid "where `synapse_user` is the database username from the previous Synapse installation."
  82. msgstr ""
  83. #: ../../../docs/importing-postgres.md:49
  84. msgid "This can be verified by examining the dump for ALTER TABLE statements which set OWNER TO that username:"
  85. msgstr ""
  86. #: ../../../docs/importing-postgres.md:61
  87. msgid "It can be worked around by changing the username to `synapse`, for example by using `sed`:"
  88. msgstr ""
  89. #: ../../../docs/importing-postgres.md:67
  90. msgid "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. Expand search/replace statement as shown in example above, in case of old user name like `matrix` — replacing `matrix` only would… well — you can imagine."
  91. msgstr ""
  92. #: ../../../docs/importing-postgres.md:69
  93. msgid "Note that if the previous import failed with an error it may have made changes which are incompatible with re-running the import task right away; if you do so it may fail with an error such as:"
  94. msgstr ""
  95. #: ../../../docs/importing-postgres.md:75
  96. msgid "Repeat import"
  97. msgstr ""
  98. #: ../../../docs/importing-postgres.md:77
  99. msgid "In this case you can use the command suggested in the import task to clear the database before retrying the import:"
  100. msgstr ""
  101. #: ../../../docs/importing-postgres.md:85
  102. msgid "Now on your local machine run `just run-tags setup-postgres` to prepare the database roles etc."
  103. msgstr ""
  104. #: ../../../docs/importing-postgres.md:87
  105. msgid "If not, you probably get this error. `synapse` is the correct table owner, but the role is missing in database."
  106. msgstr ""
  107. #: ../../../docs/importing-postgres.md:93
  108. msgid "Once the database is clear and the ownership of the tables has been fixed in the SQL file, the import task should succeed."
  109. msgstr ""
  110. #: ../../../docs/importing-postgres.md:95
  111. msgid "Check, if `--dbname` is set to `synapse` (not `matrix`) and replace paths (or even better, copy this line from your terminal)"
  112. msgstr ""
  113. #: ../../../docs/importing-postgres.md:101
  114. msgid "Hints"
  115. msgstr ""
  116. #: ../../../docs/importing-postgres.md:103
  117. msgid "To open psql terminal run `/matrix/postgres/bin/cli`"
  118. msgstr ""