install-only-office-document-server-on-ubuntu
This is an old revision of the document!
−Table of Contents
Install OnlyOffice Document Server on Ubuntu
Preequites to OnlyOffice Document Server Community Edition
Dependencies for OnlyOffice document server are Nginx webserver, PostgreSQL database server, Node.js, Redis Server, and RabbitMQ server.
Install PostgreSQL
sudo apt install postgresql
Create OnlyOffice Database, Username and Password in PostgreSQL
Both the username and password are required to be 'onlyoffice'
Create Only Office database within PostgreSQL (Not MySQL):
sudo -i -u postgres psql -c "CREATE DATABASE onlyoffice;"
Create the OnlyOffice user.
sudo -i -u postgres psql -c "CREATE USER onlyoffice WITH password 'onlyoffice';"
Grant Permissions for the user on the OnlyOffice database:
sudo -i -u postgres psql -c "GRANT ALL privileges ON DATABASE onlyoffice TO onlyoffice;"
install-only-office-document-server-on-ubuntu.1591846808.txt.gz · Last modified: 2020/06/11 03:40 by wikiadmin