Difference between revisions of "AppSuite:Spreadsheet Installation Guide"

(Debian GNU/Linux 7.0)
 
(19 intermediate revisions by 6 users not shown)
Line 1: Line 1:
= Download & Installation OX Spreadsheet (Beta) =
+
{{Version_unsupported|7.8.2}}
  
 +
'''Please Note:'''
  
== Requirements ==
+
Open-Xchange provides a new installation and configuration page under:
  
See the [[AppSuite:OX_System_Requirements|Open-Xchange software requirements page]] for details.
+
http://oxpedia.org/wiki/index.php?title=AppSuite:Documents_Installation_Guide
 
 
OX Spreadsheet (Beta) needs to be installed in an OX App Suite configuration with a [[AppSuite:Grizzly|backend based on Grizzly]].
 
 
 
For compatibility with XLS files (not XLSX) and for printing functionality in OX Spreadsheet (Beta) the document converter components (incl. readerengine) are required. These are not available in the Community Version of OX AppSuite.
 
 
 
== Mandatory Modules ==
 
 
 
Additional functional modules need to be installed separately:
 
 
 
* The Document Converter API: See [[AppSuite:DocumentConverterAPIInstall|Document converter API installation instructions]]
 
 
 
* The calcengine: See [[AppSuite:CalcengineInstall|calcengine installation instructions]]
 
 
 
== Installation ==
 
 
 
The OX Spreadsheet (Beta) deployment consists of the packages <tt>open-xchange-documents-backend</tt>,<tt>open-xchange-documents-ui</tt> and <tt>open-xchange-documents-ui-static</tt>
 
 
 
=== Redhat Enterprise Linux 6 or CentOS 6 ===
 
 
 
Add the following repositories to your Open-Xchange yum configuration:
 
 
 
{{for loop||call=YUMBetaRepo|pv=reponame|pc1n=path|pc1v=components|pc2n=betapath|pc2v=beta/7.4.2/|pc3n=rhelname|pc3v=RHEL6|pc4n=ldbaccount|office|office-web}}
 
 
 
 
 
$ yum install open-xchange-documents-backend open-xchange-documents-ui open-xchange-documents-ui-static
 
 
 
=== Debian GNU/Linux 6.0 ===
 
 
 
Add the following repositories to your Open-Xchange apt configuration:
 
 
 
{{for loop||call=APTBetaRepo|pv=reponame|pc1n=path|pc1v=components|pc2n=betapath|pc2v=beta/7.4.2/|pc3n=debianname|pc3v=DebianSqueeze|pc4n=ldbaccount|office|office-web}}
 
 
 
$ apt-get update
 
$ apt-get install open-xchange-documents-backend open-xchange-documents-ui open-xchange-documents-ui-static
 
 
 
=== Debian GNU/Linux 7.0 ===
 
 
 
Add the following repositories to your Open-Xchange apt configuration:
 
 
 
{{for loop||call=APTBetaRepo|pv=reponame|pc1n=path|pc1v=components|pc2n=betapath|pc2v=beta/7.4.2/|pc3n=debianname|pc3v=DebianWheezy|pc4n=ldbaccount|office|office-web}}
 
 
 
$ apt-get update
 
$ apt-get install open-xchange-documents-backend open-xchange-documents-ui open-xchange-documents-ui-static
 
 
 
=== SUSE Linux Enterprise Server 11 ===
 
 
 
{{for loop||call=SUSEBetaRepo|pv=reponame|pc1n=path|pc1v=components|pc2n=betapath|pc2v=beta/7.4.2/|pc3n=susename|pc3v=SLES11|pc4n=ldbaccount|pc4v=LDBUSER:LDBPASSWORD|office|office-web}}
 
 
 
$ zypper ref
 
$ zypper install open-xchange-documents-backend open-xchange-documents-ui open-xchange-documents-ui-static
 
 
 
 
 
== Printing and .xls Editing ==
 
 
 
For .XLS and/or printing support from OX Spreadsheet (Beta) the Document Converter and readerengine components have to be installed separately (license key required)
 
 
 
* See [[AppSuite:DocumentConverterInstall|Document converter / readerengine installation instructions]]
 
 
 
== Configuration ==
 
 
 
=== Permissions ===
 
 
 
To enable OX Spreadsheet (Beta) for OX Drive the associated permission has to be set.
 
 
 
The default setting for all users is changed in the file '''permissions.properties''' in the directory ''/opt/open-xchange/etc''.
 
 
 
After installation the functionality is disabled:
 
<pre>
 
# Default permissions for all users
 
permissions=
 
</pre>
 
 
 
The following line enables the functionality:
 
<pre>
 
# Default permissions for all users
 
permissions=spreadsheet
 
</pre>
 
 
 
If there are already some permissions in this file, add ''spreadsheet'' separated with a comma.
 
 
 
=== calcengine ===
 
 
 
The calcengine has to be configured in the file ''/opt/open-xchange/etc/calcengine.properties''.
 
 
 
<pre>
 
# -----------------------------------------------------------------------------
 
# define the mode the calc engine will use at runtime
 
#
 
# possible values :
 
#
 
# - local
 
#      a set of worker processes are used at localhost;
 
#      One worker = one calc engine process.
 
#      JNI is used within worker process - not within main process.
 
#
 
# - http
 
#      calc engine client will connect to a remote server
 
#      where a calc engine server is running.
 
#      Every calc engine server will host a set of worker processes.
 
#      Communication protocol between client<->server<->worker is HTTP.
 
#
 
calcengine.mode=local
 
 
 
# -----------------------------------------------------------------------------
 
# timeout to detect hanging calc engine request
 
#
 
# unit    = [ms]
 
# default = 20s
 
 
 
calcengine.request.timeout=20000
 
 
 
# -----------------------------------------------------------------------------
 
# define the max. value for memory reserved for one worker instance.
 
#
 
# Each worker will use that value separately.
 
# So the memory consumption for the whole pool of worker instances
 
# will be : pool-size * worker.memory.
 
#
 
# unit=[MB]
 
#
 
# default = 2048
 
 
 
calcengine.worker.memory.max-mb=2048
 
 
 
# -----------------------------------------------------------------------------
 
# configure restart of one worker in case more then X documents was opened
 
# within those process.
 
#
 
# Note:
 
#
 
# - A value of 0 means -> these restart trigger is disabled
 
#  ... where might other restart trigger can be active.
 
#
 
# - Don't forget to configure reserve count value too
 
#  if you configure these restart trigger.
 
#
 
# default = 50
 
 
 
calcengine.worker.restart.trigger.max-doc-count=50
 
 
 
# -----------------------------------------------------------------------------
 
# timeout to detect non starting worker process
 
#
 
# unit    = [ms]
 
# default = 20s
 
 
 
calcengine.worker.init.timeout=20000
 
 
 
# -----------------------------------------------------------------------------
 
# define the range of ports to be used for a pool of worker processes.
 
#
 
# Of course MIN and MAX values needs to be in right (ascending) order.
 
# If not - an error is shown and calc engine environment wont work.
 
#
 
# MIN and MAX port are included in range. So pool size is MAX-MIN+1.
 
#
 
# default = 5001 ... 5003
 
 
 
calcengine.worker.port_range.min=5001
 
calcengine.worker.port_range.max=5003
 
</pre>
 

Latest revision as of 09:34, 29 November 2016

This information is valid until 7.8.2

Please Note:

Open-Xchange provides a new installation and configuration page under:

http://oxpedia.org/wiki/index.php?title=AppSuite:Documents_Installation_Guide