Wiki source code of Installing a deployment environment on Debian or Ubuntu
Version 10.1 by Bastian Triller on 2013/01/17 20:33
Show last authors
| author | version | line-number | content |
|---|---|---|---|
| 1 | == Available packages == | ||
| 2 | |||
| 3 | The JavaMonitor and wotaskd is available for Ubuntu Lucid/Oneiric/Precise/Quantal and Debian Squeeze/Wheezy/Sid. The adaptor is built for amd64/i386 on Ubuntu Oneiric/Precise/Quantal (Lucid i386 only) and Debian Squeeze (Wheezy/Sid amd64 only). There is also a webobjects package, on which the JavaMonitor and wotaskd packages depend. | ||
| 4 | |||
| 5 | == Importing the APT key == | ||
| 6 | |||
| 7 | The APT key works for both distributions. You can import it by running following command: | ||
| 8 | |||
| 9 | {{code}} | ||
| 10 | |||
| 11 | $ wget -qO- http://packages.wocommunity.org/ubuntu/signature.gpg | sudo apt-key add - | ||
| 12 | |||
| 13 | {{/code}} | ||
| 14 | |||
| 15 | == Adding the APT data source == | ||
| 16 | |||
| 17 | Set DIST and SUITE according to your system: | ||
| 18 | |||
| 19 | {{code}} | ||
| 20 | |||
| 21 | $ DIST=ubuntu | ||
| 22 | $ SUITE=precise | ||
| 23 | $ echo "http://packages.wocommunity.org/$DIST $SUITE main" | sudo tee /etc/apt/sources.list.d/wocommunity.list | ||
| 24 | $ sudo apt-get update | ||
| 25 | $ sudo apt-get install libapache2-mod-wo projectwonder-javamonitor projectwonder-wotaskd | ||
| 26 | |||
| 27 | {{/code}} | ||
| 28 | |||
| 29 | == Notes == | ||
| 30 | |||
| 31 | The webobjects package default is to fetch the WebObjects543.dmg from the Apple servers and then to install the System frameworks to /usr/share/webobjects. If you have a local or closer mirror of that image, you can change this default value in the debconf database by importing [[^webobjects-local-dmg.debconf]] before the installation: | ||
| 32 | |||
| 33 | {{code}} | ||
| 34 | |||
| 35 | $ cat webobjects-local-dmg.debconf | sudo debconf-set-selections | ||
| 36 | |||
| 37 | {{/code}} |