Centos7/8 如何安装ONLYOFFICE Community Server 最新版
时间: 2024-06-08 11:10:48 浏览: 182
Centos7下安装MongoDB
安装 ONLYOFFICE Community Server 最新版可以按照以下步骤进行操作:
1. 添加 ONLYOFFICE 官方仓库
CentOS 7:
```
sudo wget https://download.onlyoffice.com/repo/centos/main/noarch/onlyoffice-repo.noarch.rpm
sudo rpm -i onlyoffice-repo.noarch.rpm
```
CentOS 8:
```
sudo wget https://download.onlyoffice.com/repo/centos/main/noarch/onlyoffice-repo.noarch.rpm
sudo dnf localinstall onlyoffice-repo.noarch.rpm
```
2. 安装 ONLYOFFICE Community Server
```
sudo yum install onlyoffice-communityserver
```
3. 配置 ONLYOFFICE Community Server
编辑 ONLYOFFICE Community Server 的配置文件:
```
sudo nano /etc/onlyoffice/communityserver/default.json
```
根据需要修改以下参数:
- `public_http_port`:ONLYOFFICE Community Server 的 HTTP 端口,默认为 80。
- `public_https_port`:ONLYOFFICE Community Server 的 HTTPS 端口,默认为 443。
- `db_password`:ONLYOFFICE Community Server 数据库用户的密码。
- `rabbitmq_password`:ONLYOFFICE Community Server RabbitMQ 用户的密码。
保存并退出配置文件。
4. 启动 ONLYOFFICE Community Server
```
sudo systemctl start onlyoffice
```
5. 设置 ONLYOFFICE Community Server 开机自启动
```
sudo systemctl enable onlyoffice
```
6. 访问 ONLYOFFICE Community Server
在浏览器中输入 `http://your_server_address`,即可访问 ONLYOFFICE Community Server。
注意:如果您启用了防火墙,请确保已将端口 80 和 443 添加到防火墙规则中。
希望这个步骤能够帮助到您。
阅读全文