You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If the current behavior is a bug, please provide the steps to reproduce and if possible a minimal demo of the problem.
I have tried to install the document server multiple times but without success.
bash documentserver-configure.sh connects to PostgreSQL, Redis and RabbitMQ successfully. SELINUX is set to disabled in /etc/selinux/config.
All ports are opened:
In addition, in some installation tries I was trying to setup next properties to all /etc/supervisord.d/ds* services which cause a lot of restart tries but all of them are failed.
startretries=5
startsecs=0
In addition I would like to mention that Nextcloud version 16 is installed on the server also.
rwx permissions are granted to users and groups ds, nginx, root for folders /var/www/onlyoffice/ and /etc/onlyoffice.
After that go to http://localhost:8089 or http://localhost (if installed with default port). It will redirect you to http://localhost:8089/welcome/ or http://localhost/welcome/ and show you 502 Bad Gateway.
supervisor: couldn't chdir to /var/www/onlyoffice/documentserver/server/DocService/sources/: EACCES
supervisor: child process was not spawned
supervisor: couldn't chdir to /var/www/onlyoffice/documentserver/server/DocService/sources/: EACCES
supervisor: child process was not spawned
ds:converter FATAL Exited too quickly (process log may have details)
ds:docservice FATAL Exited too quickly (process log may have details)
ds:gc FATAL Exited too quickly (process log may have details)
ds:metrics FATAL Exited too quickly (process log may have details)
ds:spellchecker FATAL Exited too quickly (process log may have details)
cat /var/log/supervisor/supervisord.log
2019-08-01 18:26:08,046 INFO exited: docservice (exit status 127; not expected)
2019-08-01 18:26:08,048 INFO exited: converter (exit status 127; not expected)
2019-08-01 18:26:08,048 INFO exited: spellchecker (exit status 127; not expected)
2019-08-01 18:26:08,051 INFO exited: metrics (exit status 127; not expected)
2019-08-01 18:26:08,052 INFO exited: gc (exit status 127; not expected)
2019-08-01 18:26:11,059 INFO spawned: 'docservice' with pid 7236
2019-08-01 18:26:11,062 INFO spawned: 'converter' with pid 7237
2019-08-01 18:26:11,064 INFO spawned: 'spellchecker' with pid 7238
2019-08-01 18:26:11,065 INFO spawned: 'metrics' with pid 7239
2019-08-01 18:26:11,067 INFO spawned: 'gc' with pid 7240
2019-08-01 18:26:11,068 INFO exited: docservice (exit status 127; not expected)
2019-08-01 18:26:11,068 INFO gave up: docservice entered FATAL state, too many start retries too quickly
2019-08-01 18:26:11,069 INFO exited: converter (exit status 127; not expected)
2019-08-01 18:26:11,070 INFO gave up: converter entered FATAL state, too many start retries too quickly
2019-08-01 18:26:11,070 INFO exited: spellchecker (exit status 127; not expected)
2019-08-01 18:26:11,071 INFO gave up: spellchecker entered FATAL state, too many start retries too quickly
2019-08-01 18:26:11,071 INFO exited: metrics (exit status 127; not expected)
2019-08-01 18:26:11,073 INFO gave up: metrics entered FATAL state, too many start retries too quickly
2019-08-01 18:26:11,073 INFO exited: gc (exit status 127; not expected)
2019-08-01 18:26:12,075 INFO gave up: gc entered FATAL state, too many start retries too quickly
What is the expected behavior?
Start document server correctly.
Did this work in previous versions of DocumentServer?
I was able to run Onlyoffice DocumentServer and Nextcloud on the same server in Fedora 28. I don't remember the exact version of Onlyoffice but it was > 5. The version of Nextcloud was 13.
DocumentServer version:
5.3.4
Operating System:
Fedora 30
Browser version:
Firefox Quantum 68.0
The text was updated successfully, but these errors were encountered:
Hi, seems there is some permissions issues with /var/www/onlyoffice/documentserver/server/DocService/sources/ folder.
Also please note, that we officially do not support Fedora as rpm, and I think it's a better idea to you to use Docker on Fedora
@ShockwaveNN I don't know why there are such permissions problems but I followed your suggestion and installed Docker on Fedora and started Document server as you proposed. Document server started perfectly in Docker.
Do you want to request a feature or report a bug?
Bug
What is the current behavior?
After following the next tutorial the document server cannot be started. Supervisord cannot startup any of
ds
services.The tutorial which was used: https://helpcenter.onlyoffice.com/server/linux/document/linux-installation-centos.aspx
The only difference: NodeJS 10 instad of NodeJS 8
If the current behavior is a bug, please provide the steps to reproduce and if possible a minimal demo of the problem.
I have tried to install the document server multiple times but without success.
bash documentserver-configure.sh
connects toPostgreSQL
,Redis
andRabbitMQ
successfully.SELINUX
is set todisabled
in/etc/selinux/config
.All ports are opened:
I've tried to use default port and
8089
(i.e.export DS_PORT=8089
in/etc/environment
).The steps are:
nginx
postgresql
andpostgresql-server
service postgresql initdb
andchkconfig postgresql on
ident
totrust
in/var/lib/pgsql/data/pg_hba.conf
service postgresql restart
cd /tmp
sudo -u postgres psql -c "CREATE DATABASE onlyoffice;"
sudo -u postgres psql -c "CREATE USER onlyoffice WITH password 'onlyoffice';"
sudo -u postgres psql -c "GRANT ALL privileges ON DATABASE onlyoffice TO onlyoffice;"
redis
service redis start
andsystemctl enable redis
yum install rabbitmq-server
service rabbitmq-server start
systemctl enable rabbitmq-server
sudo yum install https://download.onlyoffice.com/repo/centos/main/noarch/onlyoffice-repo.noarch.rpm
yum install onlyoffice-documentserver
bash documentserver-configure.sh
and provide all creds (all default)In addition before
17
in several installation tries I was trying this fix ONLYOFFICE/onlyoffice-nextcloud#3 (comment)In addition, in some installation tries I was trying to setup next properties to all
/etc/supervisord.d/ds*
services which cause a lot of restart tries but all of them are failed.In addition I would like to mention that Nextcloud version 16 is installed on the server also.
rwx
permissions are granted to users and groupsds
,nginx
,root
for folders/var/www/onlyoffice/
and/etc/onlyoffice
.After that go to
http://localhost:8089
orhttp://localhost
(if installed with default port). It will redirect you tohttp://localhost:8089/welcome/
orhttp://localhost/welcome/
and show you502 Bad Gateway
.cat /var/log/onlyoffice/documentserver/nginx.error.log
cat /var/log/onlyoffice/documentserver/docservice/err.log
supervisorctl restart all
supervisorctl status
cat /var/log/supervisor/supervisord.log
What is the expected behavior?
Start document server correctly.
Did this work in previous versions of DocumentServer?
I was able to run Onlyoffice DocumentServer and Nextcloud on the same server in Fedora 28. I don't remember the exact version of Onlyoffice but it was > 5. The version of Nextcloud was 13.
DocumentServer version:
5.3.4
Operating System:
Fedora 30
Browser version:
Firefox Quantum 68.0
The text was updated successfully, but these errors were encountered: