-
-
Notifications
You must be signed in to change notification settings - Fork 2.1k
Description
โ Have you read and understood the above guidelines?
yes
๐ What is the name of the script you are using?
OnlyOffice
๐ What was the exact command used to execute the script?
bash -c "$(curl -fsSL https://raw.githubusercontent.com/community-scripts/ProxmoxVE/main/ct/onlyoffice.sh)"
โ๏ธ What settings are you using?
- Default Settings
- Advanced Settings
๐ฅ๏ธ Which Linux distribution are you using?
No response
๐ Provide a clear and concise description of the issue.
When creating the LXC and accessing the example server and opening a doc, the page won't load up and no document shows up.
But I found an error on systemctl status ds-docservice.service
[AMQP] Error: Handshake terminated by server: 403 (ACCESS-REFUSED) with message "ACCESS_REFUSED - Login was refused using authentication mechanism PLAIN.
This error indicates an authentication problem when OnlyOffice tries to connect to RabbitMQ. The cause can be incorrect credentials, missing permissions, or the user not being flagged as a management user.
Possible Causes:
- Incorrect Credentials: The username or password for RabbitMQ access configured in OnlyOffice are incorrect.
- Missing Management Tag: The configured user does not have the necessary rights to log in to the Management Interface.
- Missing Permissions: The configured RabbitMQ user does not have the required permissions (configure, write, read) for the used VHost (default is "/").
I managed to solve the issue by:
- Checking if the user exists fpr RabbitMQ
sudo rabbitmqctl list_usersIn my case the User wasn't known. - Creating the User manually
sudo rabbitmqctl add_user onlyoffice_rmq password - Set up the permissions.
sudo rabbitmqctl set_permissions -p / onlyoffice_rmq ".*" ".*" ".*" - Set the user tag.
sudo rabbitmqctl set_user_tags onlyoffice_rmq administrator
After these steps, i could open up a document via ds-example service and edit it
๐ Steps to reproduce the issue.
Install the LXC
Try to access the example server and open a doc
Fails to load up
โ Paste the full error output (if available).
`
systemctl status ds-docservice.service
[AMQP] Error: Handshake terminated by server: 403 (ACCESS-REFUSED) with message "ACCESS_REFUSED - Login was refused using authentication mechanism PLAIN.`
๐ผ๏ธ Additional context (optional).
No response