Matrix Docker Ansible eploy
No puede seleccionar más de 25 temas Los temas deben comenzar con una letra o número, pueden incluir guiones ('-') y pueden tener hasta 35 caracteres de largo.
 
 
 

197 líneas
6.3 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: 2024-12-16 12:05+0900\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/maintenance-migrating.md:1
  24. msgid "Migrating to new server"
  25. msgstr ""
  26. #: ../../../docs/maintenance-migrating.md:3
  27. msgid ""
  28. "This documentation explains how to migrate your Matrix services (server, "
  29. "client, bridges, etc.) and data **from an old server to a new server**."
  30. msgstr ""
  31. #: ../../../docs/maintenance-migrating.md:5
  32. msgid "**Notes**:"
  33. msgstr ""
  34. #: ../../../docs/maintenance-migrating.md:6
  35. msgid ""
  36. "This migration guide is applicable if you migrate from one server to "
  37. "another server having the same CPU architecture (e.g. both servers being "
  38. "`amd64`)."
  39. msgstr ""
  40. #: ../../../docs/maintenance-migrating.md:8
  41. msgid ""
  42. "If you're trying to migrate between different architectures (e.g. `amd64`"
  43. " --> `arm64`), simply copying the complete `/matrix` directory is **not**"
  44. " possible as it would move the raw PostgreSQL data "
  45. "(`/matrix/postgres/data`) between different architectures. In this "
  46. "specific case, you can use the guide below as a reference, but you would "
  47. "also need to avoid syncing `/matrix/postgres/data` to the new host, and "
  48. "also dump the database on your current server and import it properly on "
  49. "the new server. See our [Backing up PostgreSQL](maintenance-postgres.md"
  50. "#backing-up-postgresql) docs for help with PostgreSQL backup/restore."
  51. msgstr ""
  52. #: ../../../docs/maintenance-migrating.md:9
  53. msgid ""
  54. "If you have any questions about migration or encountered an issue during "
  55. "migration, do not hesitate to ask for help on [our Matrix "
  56. "room](https://matrix.to/#/%23matrix-docker-ansible-deploy:devture.com). "
  57. "You probably might want to prepare a temporary/sub account on another "
  58. "Matrix server in case it becomes impossible to use your server due to "
  59. "migration failure by any chance."
  60. msgstr ""
  61. #: ../../../docs/maintenance-migrating.md:11
  62. msgid ""
  63. "You can't change the domain (specified in the `matrix_domain` variable) "
  64. "after the initial deployment."
  65. msgstr ""
  66. #: ../../../docs/maintenance-migrating.md:13
  67. msgid "Lower DNS TTL"
  68. msgstr ""
  69. #: ../../../docs/maintenance-migrating.md:15
  70. msgid ""
  71. "Prepare by lowering DNS TTL for your domains (`matrix.example.com`, "
  72. "etc.), so that DNS record changes would happen faster, leading to less "
  73. "downtime."
  74. msgstr ""
  75. #: ../../../docs/maintenance-migrating.md:17
  76. msgid "Stop services on the old server completely"
  77. msgstr ""
  78. #: ../../../docs/maintenance-migrating.md:19
  79. msgid ""
  80. "Before migrating, you need to stop all services on the old server and "
  81. "make sure they won't be starting again."
  82. msgstr ""
  83. #: ../../../docs/maintenance-migrating.md:21
  84. msgid ""
  85. "To do so, it is recommended to run the `systemctl` command on the server."
  86. " Running the playbook's `stop` tag also stops the services, but just "
  87. "once; they will start again if you reboot the server."
  88. msgstr ""
  89. #: ../../../docs/maintenance-migrating.md:23
  90. msgid ""
  91. "Log in to the old server and run the command as `root` (or a user that "
  92. "can run it with `sudo`):"
  93. msgstr ""
  94. #: ../../../docs/maintenance-migrating.md:29
  95. msgid "Copy data directory to the new server"
  96. msgstr ""
  97. #: ../../../docs/maintenance-migrating.md:31
  98. msgid ""
  99. "After you've confirmed that all services were stopped, copy the `/matrix`"
  100. " directory from the old server to the new server. When copying, make sure"
  101. " to preserve ownership and permissions (use `cp -p` or `rsync -ar`)!"
  102. msgstr ""
  103. #: ../../../docs/maintenance-migrating.md:33
  104. msgid "Adjust DNS records"
  105. msgstr ""
  106. #: ../../../docs/maintenance-migrating.md:35
  107. msgid ""
  108. "Make sure your DNS records are adjusted to point to the new server's IP "
  109. "address."
  110. msgstr ""
  111. #: ../../../docs/maintenance-migrating.md:37
  112. msgid "Update `inventory/hosts` file"
  113. msgstr ""
  114. #: ../../../docs/maintenance-migrating.md:39
  115. msgid ""
  116. "Having adjusted DNS records, replace the old server's external IP address"
  117. " on the `inventory/hosts` file with that of the new server."
  118. msgstr ""
  119. #: ../../../docs/maintenance-migrating.md:41
  120. msgid "Create `matrix` user and group on the new server"
  121. msgstr ""
  122. #: ../../../docs/maintenance-migrating.md:43
  123. msgid ""
  124. "Then, run the command below on your local computer to create the `matrix`"
  125. " user and group on the new server:"
  126. msgstr ""
  127. #: ../../../docs/maintenance-migrating.md:49
  128. msgid ""
  129. "The shortcut command with `just` program is also available: `just run-"
  130. "tags setup-system-user`"
  131. msgstr ""
  132. #: ../../../docs/maintenance-migrating.md:51
  133. msgid ""
  134. "**Note**: because the `matrix` user and group are created dynamically on "
  135. "each server, the user/group ID may differ between the old and new server."
  136. " We suggest that you adjust ownership of `/matrix` files. To adjust the "
  137. "ownership, log in to the new server and run the command:"
  138. msgstr ""
  139. #: ../../../docs/maintenance-migrating.md:57
  140. msgid "Install and start all services on the new server"
  141. msgstr ""
  142. #: ../../../docs/maintenance-migrating.md:59
  143. msgid ""
  144. "Finally, run the command below on your local computer to finish the "
  145. "installation and start all services:"
  146. msgstr ""
  147. #: ../../../docs/maintenance-migrating.md:65
  148. msgid ""
  149. "The shortcut command with `just` program is also available: `just run-"
  150. "tags install-all,start`"
  151. msgstr ""
  152. #: ../../../docs/maintenance-migrating.md:67
  153. msgid "Check if services work"
  154. msgstr ""
  155. #: ../../../docs/maintenance-migrating.md:69
  156. msgid ""
  157. "After starting the services, you probably might want to ensure that "
  158. "you've migrated things correctly and that services are running. For "
  159. "instructions, see: [check if services work](maintenance-checking-"
  160. "services.md)"
  161. msgstr ""
  162. #: ../../../docs/maintenance-migrating.md:71
  163. msgid ""
  164. "Having make sure that both services and federation work as expected, you "
  165. "can safely shutdown the old server."
  166. msgstr ""