diff --git a/Web/Controls/Help/Installation/Docs.ascx b/Web/Controls/Help/Installation/Docs.ascx index 5eff598ba..a95a34fe5 100644 --- a/Web/Controls/Help/Installation/Docs.ascx +++ b/Web/Controls/Help/Installation/Docs.ascx @@ -170,6 +170,9 @@
  • ">Connecting Amazon S3 bucket as a cache to ONLYOFFICE Docs
  • ">Configuring IP filter for ONLYOFFICE Docs
  • +
  • +
  • +
  • System requirements
    @@ -279,6 +282,9 @@
  • ">Connecting Amazon S3 bucket as a cache to ONLYOFFICE Docs
  • ">Configuring IP filter for ONLYOFFICE Docs
  • +
  • +
  • +
  • Developing
    diff --git a/Web/Controls/Help/Installation/DocsCommunity.ascx b/Web/Controls/Help/Installation/DocsCommunity.ascx index 955aa1712..5d83af5ad 100644 --- a/Web/Controls/Help/Installation/DocsCommunity.ascx +++ b/Web/Controls/Help/Installation/DocsCommunity.ascx @@ -47,6 +47,9 @@
  • ">Connecting Amazon S3 bucket as a cache to ONLYOFFICE Docs
  • ">Configuring IP filter for ONLYOFFICE Docs
  • +
  • +
  • +
  • System requirements
    diff --git a/Web/Controls/Help/Installation/DocsDeveloper.ascx b/Web/Controls/Help/Installation/DocsDeveloper.ascx index 7739c6b1c..1843312e7 100644 --- a/Web/Controls/Help/Installation/DocsDeveloper.ascx +++ b/Web/Controls/Help/Installation/DocsDeveloper.ascx @@ -40,6 +40,9 @@
  • ">Connecting Amazon S3 bucket as a cache to ONLYOFFICE Docs
  • ">Configuring IP filter for ONLYOFFICE Docs
  • +
  • +
  • +
  • Developing
    diff --git a/Web/Controls/Help/Installation/DocsEnterprise.ascx b/Web/Controls/Help/Installation/DocsEnterprise.ascx index fb1087759..c4a3bf9aa 100644 --- a/Web/Controls/Help/Installation/DocsEnterprise.ascx +++ b/Web/Controls/Help/Installation/DocsEnterprise.ascx @@ -39,6 +39,9 @@
  • ">Connecting Amazon S3 bucket as a cache to ONLYOFFICE Docs
  • ">Configuring IP filter for ONLYOFFICE Docs
  • +
  • +
  • +
  • System requirements
    diff --git a/Web/Controls/Help/Server/Document/DocsConnectDameng/DocsConnectDameng.ascx b/Web/Controls/Help/Server/Document/DocsConnectDameng/DocsConnectDameng.ascx index d58bfacc8..b935e24b6 100644 --- a/Web/Controls/Help/Server/Document/DocsConnectDameng/DocsConnectDameng.ascx +++ b/Web/Controls/Help/Server/Document/DocsConnectDameng/DocsConnectDameng.ascx @@ -21,7 +21,7 @@
    The current guide suggests that a test bench has already been implemented in a separate feature/damengdb-compose branch: https://github.com/ONLYOFFICE/Docker-DocumentServer/tree/feature/damengdb-compose/tests/damengdb

    Connecting to Dameng server

    -

    The Document Server has several variables, DB_TYPE DB_HOST DB_USER DB_PASSWORD DB_PORT, that allow you to customize your database connection. However, currently only MYSQL/MariaDB and PostgreSQL are supported officially.

    +

    The Document Server has several variables, DB_TYPE, DB_HOST, DB_USER, DB_NAME, DB_PORT, that allow you to customize your database connection. However, currently only MYSQL/MariaDB and PostgreSQL are supported officially.

    To connect DamengDb, modify the entry point script and add connection conditions and parameters to the initialization entry point script of the Document Server image:

    1. @@ -39,17 +39,18 @@
    2. DB_TYPE: damengdb
    3. DB_HOST: Name (dns name) of the database service in compose file
    4. DB_USER: Username
    5. -
    6. DB_PASS: User password
    7. +
    8. DB_NAME
    9. DB_PORT: Service port with database
    10. -

      Mount the binary directory from the damengdb container so that the document server container has access to the disql utility. Please refer to the docker-compose.yml to learn more.

      +

      Mount the binary directory from the damengdb container so that the document server container has access to the disql utility. Please refer to the docker-compose.yml to learn more.

      Running a stand

      To start the stand, execute the following commands:

        -
      1. git clone -b feature/damentdb-compose https://github.com/ONLYOFFICE/Docker-DocumentServer.git
      2. +
      3. git clone --single-branch --branch feature/damengdb-compose https://github.com/ONLYOFFICE/Docker-DocumentServer.git
      4. cd Docker-DocumentServer/tests/damengdb/
      5. -
      6. docker compose up –d
      7. +
      8. docker compose build
      9. +
      10. docker compose up -d
      -
      The database image must be available on hub.docker. We have uploaded the image v8.1.2.128 for your convenience: https://hub.docker.com/r/danilaworker/damengdb
      +
      The database image must be available on hub.docker. We have uploaded the image v8.1.2.128 for your convenience: https://hub.docker.com/r/onlyoffice/damengdb
      \ No newline at end of file diff --git a/Web/Controls/Help/Server/Document/DocsConnectMsSQL/DocsConnectMsSQL.ascx b/Web/Controls/Help/Server/Document/DocsConnectMsSQL/DocsConnectMsSQL.ascx index c4c95a221..54ceeec43 100644 --- a/Web/Controls/Help/Server/Document/DocsConnectMsSQL/DocsConnectMsSQL.ascx +++ b/Web/Controls/Help/Server/Document/DocsConnectMsSQL/DocsConnectMsSQL.ascx @@ -24,7 +24,7 @@
    11. Install ONLYOFFICE Docs:
      sudo docker run -i -t -d -p 80:80 --name onlyoffice \
      -onlyoffice/documentserver-ee
      +onlyoffice/documentserveronlyoffice/documentserver-eeonlyoffice/documentserver-de
    12. Install MsSQL on the same or a separate server: @@ -53,7 +53,7 @@ nano /etc/onlyoffice/documentserver/local.json "CoAuthoring": { "sql": { "type": "mssql", - "dbHost": "", + "dbHost": "mssql_ip_or_hostname", "dbPort": "8080", "dbName": "onlyoffice", "dbUser": "sa", diff --git a/Web/Controls/Help/Server/Document/DocsConnectOracle/DocsConnectOracle.ascx b/Web/Controls/Help/Server/Document/DocsConnectOracle/DocsConnectOracle.ascx index dc4fc2feb..146e32cf4 100644 --- a/Web/Controls/Help/Server/Document/DocsConnectOracle/DocsConnectOracle.ascx +++ b/Web/Controls/Help/Server/Document/DocsConnectOracle/DocsConnectOracle.ascx @@ -24,7 +24,7 @@
    13. Install ONLYOFFICE Docs:
      sudo docker run -i -t -d -p 80:80 --name onlyoffice \
      -onlyoffice/documentserver-ee
      +onlyoffice/documentserveronlyoffice/documentserver-eeonlyoffice/documentserver-de
    14. Install Oracle on the same or a separate server: @@ -50,12 +50,13 @@ nano /etc/onlyoffice/documentserver/local.json "CoAuthoring": { "sql": { "type": "oracle", - "dbHost": "", + "dbHost": "oracle_ip_or_hostname", "dbPort": "8080", "dbName": "xepdb1", "dbUser": "onlyoffice", "dbPass": "onlyoffice" ... + supervisorctl restart all