Note: You are currently viewing documentation for Moodle 3.6. Up-to-date documentation for the latest stable version of Moodle is likely available here: Universal Office Converter (unoconv).

Universal Office Converter (unoconv): Difference between revisions

From MoodleDocs
Line 22: Line 22:
Download and install LibreOffice for Mac
Download and install LibreOffice for Mac


Get the latest version of the unoconv python script from here: https://github.com/dagwieers/unoconv/. Unzip it and move the unoconv binary to /usr/local/bin/unoconv.
Get the latest version of the unoconv python script. One way to do this is with [[http://brew.sh/ brew]].
 
Change the first line of the unoconv script to point to the python version installed with LibreOffice.
 
Change this:
<pre>
<pre>
brew install unoconv
</pre>
</pre>


To this:
If you haven't done it already - install ghostscript. One way to install ghostscript is also with [[http://brew.sh/ brew]]
<pre>
<pre>
brew install ghostscript
</pre>
</pre>


If you haven't done it already - install ghostscript. The easiest way to install ghostscript is with [[http://brew.sh/ brew]]
Set the paths to unoconv and ghostscript in Moodle (Site administration ▶︎ Server ▶︎ System paths ). If you used brew, they will both be installed to /usr/local/bin.
 
Set the paths to unoconv and ghostscript in Moodle (Site administration ▶︎ Server ▶︎ System paths ).


== Installing unoconv on Windows ==
== Installing unoconv on Windows ==

Revision as of 08:19, 19 May 2016

Installing unoconv

"unoconv" is a command line program that is used to convert between different office document file formats. It uses an instance of LibreOffice to do the conversion and is used by the assignment module to convert documents to pdf so that they can be annotated. If unoconv is not installed - the only impact is that the assignment module will only allow annotations when students upload a pdf document.

The steps required to install unoconv are different depending on the operating system that you have installed Moodle on.

Installing unoconv on Linux

The required version of unoconv is at least 0.7. Depending on your flavour of linux, this may be available in your package manager and you can install it directly with:

(Ubuntu 16.04 LTS)

apt-get install unoconv

If your package manager contains an older version of the package, you will have to find a newer version and install it manually (Debian Testing). Unoconv itself is just a python script, so it has few dependencies.

Potential problems:

  • On some systems the apache user home directory is set to a non existent folder. This can cause unoconv to fail. There are 2 solutions to this - one is to make a (writable) home directory for the apache user (like /home/www-data). The other is to run a unoconv listener (described below) as another user other than the apache user (someone with a valid, writable home directory).

Installing unoconv on OS X

Download and install LibreOffice for Mac

Get the latest version of the unoconv python script. One way to do this is with [brew].

brew install unoconv

If you haven't done it already - install ghostscript. One way to install ghostscript is also with [brew]

brew install ghostscript

Set the paths to unoconv and ghostscript in Moodle (Site administration ▶︎ Server ▶︎ System paths ). If you used brew, they will both be installed to /usr/local/bin.

Installing unoconv on Windows

Download and install LibreOffice for windows.

Download the latest version of the unoconv script from https://github.com/dagwieers/unoconv/releases.

Rename the downloaded script to C:\unoconv\unoconv.py

Create a batch file C:\unoconv\unoconv.bat with these contents:

@cd "C:\Program Files (x86)\LibreOffice 5\program"
@"python-core-3.3.0\bin\python.exe" unoconv.py %* 

Set paths in Moodle.

Login as admin and go to Site administration ► Server ► System paths

Set pathtogs setting to your ghostscript installation binary, (C:\gs\bin\gswin32.exe)

Set pathtounoconv to the batch file created above (C:\unoconv\unoconv.bat)

Test ghostscript and unoconv are working correctly in the admin test pages "Site administration ► Plugins ► Activity modules ► Assignment ► Feedback plugins ► Annotate PDF".

Run a unoconv listener

unoconv utilises a client/server process when converting documents. By default, when there is no running server process - each time unoconv runs it will start a server process, send it's request and shutdown the server process when the request is complete. The drawback of this mode is that if 2 requests are submitted simultaneously - this can cause the first request to shutdown the server process when the second request is still in progress - and the second conversion request fails. A more robust way to configure unoconv is to start a server process at boot time, and run a script to monitor it and restart it if it crashes.

To start a unoconv listener at boot time on linux - you need a start up script. Different linux distributions use different startup scripts - but here is an example of an init.d script for debian systems.

Init script for Debian

Offload processing to a different server

Processing office documents can put increased load on your webserver, which may impact on the responsiveness of your site. If you are installing unoconv on a large site you may want to consider running unoconv on a server that is not also serving web requests.

How to do this:

Install unoconv on each webservers and the remote server following the installation instructions above.

Make sure unoconv is started at boot time on the remote server with the "--listener" argument and is monitored and restarted if it exits (see Debian init script for an example of how to do this).

Open the firewall port 2002 between the moodle webservers and the machine running unoconv.

Share the moodle data root between the webservers and the machine running unoconv. This folder must be mounted at the same path on all servers.

Install a wrapper for unoconv on the webservers that forwards the requests to the remote server. Example:

#!/bin/bash
# Wrapper script for unoconv to forward processing.
# Install to /usr/bin/unoconv-remote with 755 permissions
/usr/bin/unoconv --server=<ip of remote server> "$@"

Configure the path to unoconv in the Moodle admin settings to point to this wrapper script.

Additional Resources

The unoconv documentation site has additional information on installation of unoconv and troubleshooting tips.