centos7-collabora-office(在线文档编辑)
阅读原文时间:2023年07月10日阅读:3

1.wget https://www.collaboraoffice.com/repos/CollaboraOnline/CODE-centos7/repodata/repomd.xml.key && rpm --import repomd.xml.key (网上自己下载)

yum-config-manager--add-repo https://www.collaboraoffice.com/repos/CollaboraOnline/CODE-centos7
(报错yum-config-manager:command not found?  则执行yum install -y yum-utils)
安装  yum install loolwsd CODE-brand

2.vi /etc/loolwsd/loolwsd.xml
       false   #禁止ssl ,禁用https
    

false

false

/etc/loolwsd/cert.pem

/etc/loolwsd/key.pem

/etc/loolwsd/ca-chain.cert.pem

1000

设置用户及密码

true

false

admin

123456

localhost  #设置允许的域名
配置 nginx 转发, 同样推荐https 。如果 owncloud 和 collabora 走得协议不一致也会出问题
3.启动服务
systemctl start loolwsd
4.curl -s http://localhost:9980/hosting/discovery 出现xml内容,   证明软件安装成功了
5. 配置nginx
server {
   listen      80;
   server_name  collabora.example.com;
 
    # static files
    location ^~ /loleaflet {
       proxy_pass http://localhost:9980;
       proxy_set_header Host $http_host;
    }
 
    # WOPI discovery URL
    location ^~ /hosting/discovery {
       proxy_pass http://localhost:9980;
       proxy_set_header Host $http_host;
    }
 
    # main websocket
    location ~ ^/lool/(.*)/ws$ {
       proxy_pass http://localhost:9980;
       proxy_set_header Upgrade $http_upgrade;
       proxy_set_header Connection "Upgrade";
       proxy_set_header Host $http_host;
       proxy_read_timeout 36000s;
    }
 
    # download, presentation and image upload
    location ~ ^/lool {
       proxy_pass http://localhost:9980;
       proxy_set_header Host $http_host;
    }
 
    # Admin Console websocket
    location ^~ /lool/adminws {
       proxy_pass http://localhost:9980;
       proxy_set_header Upgrade $http_upgrade;
       proxy_set_header Connection "Upgrade";
       proxy_set_header Host $http_host;
       proxy_read_timeout 36000s;
    }
}

配置完成后。 访问 https://localhost:9980/loleaflet/dist/admin/admin.html 输入配置项中的账号密码

会显示collabora的后台数据

安装 collabora online

从owncloud app 列表里边找到 collabora online 插件。安装。 有可能会出错。

https://marketplace.owncloud.com/apps 里边找到这个插件,下载后是richdocuments-2.3.0.tar.gz,然后传到 owncloud/apps 目录,然后解压启用。

然后配置 在线协作

配置好之后,列表里的office 文件可以直接线上打开

安装ONLYOFFICE插件

从owncloud app 列表里边找到 ONLYOFFICE 插件。安装。 有可能会出错。

https://marketplace.owncloud.com/apps 里边找到这个插件,下载,然后传到 owncloud/apps 目录,然后启用。

然后配置 在线协作