Regarding my issue trying to get some control over my OnlyOffice install…
Your last suggestion was to run the …workspace_install.sh, but it appears that it will reinstall Onlyoffice and I want to be sure I take prerequisite steps before such as backing up. I also want to understand what I have before changing things. And indeed, I found that oddly, another server was running Onlyoffice too. Could be an old version that got stopped and never meant to restart but with a power reboot may have started anyway. Regardless, I need to make sense of all this.
I last reported that when i try to navigate to the control panel I get to a blank page. I think it’s because although there’s a docker container for
d9929d499c8a onlyoffice/controlpanel "/var/www/onlyoffice…" 7 months ago Up 4 minutes 80/tcp, 443/tcp onlyoffice-control-panel
I believe it must related to something wrong with this container. The pages that is rendered states “The page isn’t redirecting properly”.
If I browse “https:///controlpanel/” the same page is rendered with the above message. Is there a way to examine the current controlpanel container and verify that the necessary configuration is in effect, such as the route, and port mapping?
Here’s my NGINX route for 
server {
listen 0.0.0.0:80;
listen [::]:80;
server_name <my onlyoffice host url> ;
return 301 https://$server_name$request_uri;
}
server {
listen 443 ssl http2;
listen [::]:443 ssl http2;
server_name office.nuspatial.xyz;
client_max_body_size 500M;
ssl_certificate<>
ssl_certificate_key <>
location / {
proxy_pass http://127.0.0.1:7788;
proxy_read_timeout 1800;
proxy_connect_timeout 1800;
http2_push_preload on;
proxy_set_header Host $http_host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Proto $scheme;
proxy_set_header X-Forwarded-Ssl on;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection $connection_upgrade;
}
}
What else can I tell you to verify the proper configuration of the controlpanel container?
ALSO, I’ve posting trying to get help getting access to the two mysql databases used by OnlyOffice, where I suspect the table reported earlier is missing, i.e :“Table 'onlyoffice.core_userdav” . I am looking for help figuring out user and passwd that is used to connect to both sql dbs.
Thanks