corrections for Readme.md

This commit is contained in:
alexandervnuchkov
2016-06-24 15:40:36 +03:00
parent 9122fe6df1
commit 1f186755f8

View File

@ -5,34 +5,51 @@ This instruction describes document service deployment for Windows based platfor
1. Installing necessary components
For the document service to work correctly it is necessary to install the following components for your Windows system (if not specified additionally, the latest version for 32 or 64 bit Windows can be installed with default settings):
a) Node.js 4.0.x 32 bit version (https://nodejs.org/dist/v4.0.0/node-v4.0.0-x86.msi)
To find out which Node.js version is used on your system currently run the `node -v` command
The 32 bit version is necessary for the spellchecking module only. In case you do not plan to use this module, you can install 64 bit Node.js version.
To find out which Node.js version is used on your system currently run the `node -v` command
The 32 bit version is necessary for the spellchecking module only. In case you do not plan to use this module, you can install 64 bit Node.js version.
b) MySql Server version 5.5 or later (http://dev.mysql.com/downloads/windows/installer/). When installing use the `onlyoffice` password for the `root` user
c) Erlang (http://www.erlang.org/download.html)
d) RabbitMQ (https://www.rabbitmq.com/releases/rabbitmq-server/v3.5.4/rabbitmq-server-3.5.4.exe)
e) Redis (https://github.com/MSOpenTech/redis/releases/download/win-2.8.2102/Redis-x64-2.8.2102.msi)
f) Python 2.7.x (http://www.python.org/download/releases/2.7.3/#download)
g) Microsoft Visual C++ Express 2010 (necessary for the spellchecker modules build)
2. Setting up the system
a) Database setup
Run the schema/createdb.sql script for MySQL
b) Install the Web Monitor for RabbitMQ (see the details for the installation here - https://www.rabbitmq.com/management.html)
Open the command line `cmd` executable. Switch to the installation directory using the `cd /d Installation-directory/sbin` command.
Run the following command:
```
rabbitmq-plugins.bat enable rabbitmq_management
```
The Web Monitor is located at the http://localhost:15672/ address. Use the `guest/guest` for the login/password combination.
c) If Redis does not start or crashes after the start for some reason, try to change the `maxheap` parameter in the config settings. For 64 bit version of Windows 7 the config file can be found here: C:\Program Files\Redis\redis.windows-service.conf.
Find the `# maxheap <bytes>` line and change it to, e.g.
```
maxheap 128MB
```
Restart the service.
3. Running the service
@ -41,7 +58,7 @@ Run the `run.bat` script to start the service.
Notes
All config files for the server part can be foun in the 'Common\config' folder
All config files for the server part can be foun in the `Common\config` folder
* `default.json` - common config files similar for all production versions.
* `production-windows.json` - config files for the production version running on a Windows based platform.
* `production-linux.json` - config files for the production version running on a Linux based platform.