# - 在Windows上安装ONLYOFFICE
# 系统要求
- 操作系统: 64-bit Windows Server 2012 或者更高版本
- 其他要求:
- Erlang: 24.2 版本
- RabbitMQ:3.9.12 版本
- Redis:5.0 版本
- PostgreSQL: 12.9 版本或者更高
# 安装组件
- 组件下载
# Erlang安装
# RabbitMQ安装
# Redis安装
# PostgreSQL安装以及初始化
1、傻瓜式一直next安装
![](https://onlygraph.oss-cn- beijing.aliyuncs.com/gh/yigexuqiu/onlygraph/onlyoffice/postgresql/database.jpg)
2、初始化数据库
在安装目录C:\Program Files\PostgreSQL\12\bin
下cmd,新建名为onlyoffice的数据库。初始化onlyoffice用户,设置密码为onlyoffice,且分配对应的操作权限。
psql -U postgres -c "CREATE DATABASE onlyoffice;"
psql -U postgres -c "CREATE USER onlyoffice WITH password 'onlyoffice';"
psql -U postgres -c "GRANT ALL privileges ON DATABASE onlyoffice TO onlyoffice;"
1
2
3
2
3
也可以在图形化桌面上操作。
# 安装ONLYOFFICE
# 验证ONLYOFFICE是否安装成功
1、以管理员身份运行cmd
2、执行启动example命令
net start DsExampleSvc
1
3、浏览器访问http://localhost/example/,新建文档,观察是否可以正常打开。
4、访问api.js,即http://localhost/web-apps/apps/api/documents/api.js进行开发集成。