Changes for page Your First Deployment

Last modified by Pascal Robert on 2013/04/21 13:53

From version 15.1
edited by Bastian Triller
on 2013/04/21 13:05
Change comment: There is no comment for this version
To version 13.1
edited by Pascal Robert
on 2012/01/23 04:21
Change comment: grammar

Summary

Details

Page properties
Author
... ... @@ -1,1 +1,1 @@
1 -XWiki.btriller
1 +XWiki.probert
Content
... ... @@ -12,11 +12,11 @@
12 12  
13 13  We will focus on the classic tools since this is the method that the majority of the community use. The classic deployment tools consists of:
14 14  
15 -* wotaskd. A daemon that acts as a watchdog to send lifebeat to the applications its manage + launching and stopping applications. Source code is available and it's actually a Project Wonder application
15 +* wotaskd. A daemon that act as a watchdog to send lifeboat to the applications its manage + launching and stopping applications. Source code is available and it's actually a Project Wonder application
16 16  
17 -* Module for your Web server software (Apache or IIS). If a module doesn't exist for your preferred Web server, you can use a CGI.
17 +* Module for your Web server software (Apache or IIS). If a module don't exist for your preferred Web server, you can use a CGI.
18 18  
19 -* JavaMonitor. A Web GUI to manage wotaskd configuration (which is a XML file). It's optional, and you can manage multiple instances of wotaskd with a single JavaMonitor installation. JavaMonitor also has REST APIs so that you can manage the configuration by command-line or by a JavaScript app.
19 +* JavaMonitor. A Web GUI to manage wotaskd configuration (which is a XML file). It's optional, and you can manage multiple instances of wotaskd with a single JavaMonitor installation. JavaMonitor also have REST APIs so that you can manage the configuration by command-line or by a JavaScript app.
20 20  
21 21  But first, we need to actually make our projects ready for deployment.
22 22  
... ... @@ -42,7 +42,7 @@
42 42  
43 43  We are now ready to install the deployment tools. The wiki have installation instructions for many platforms, so jump over to the instructions for your deployment platform. Running the deployment tools (at least wotaskd and the Apache module) is also useful on your development machine.
44 44  
45 -* [[Installing on Mac OS X>>Deploying on Mac OS X 10.6 (Snow Leopard)]]
45 +* [[Installing on Mac OS X>>Deploying on Mac OS X Server]]
46 46  * [[Installing on Linux>>Deploying on Linux]]
47 47  * [[Installing on Windows>>Deploying on Windows]]
48 48  * [[Installing on FreeBSD>>Deploying on FreeBSD 8.2 and WebObjects 5.4.3]]
... ... @@ -52,7 +52,7 @@
52 52  Before adding the application into JavaMonitor, you have to copy the applications on the deployment server. You can use any tools that you usually use to copy files on the remote server (scp, rsync, CyberDuck, etc.). Usually you need to copy the application to the following remote directory:
53 53  
54 54  * /Library/WebObjects/Applications (on OS X)
55 -* /opt/Local/Library/WebObjects/Applications (on UNIX systems other than OS X, like Linux, BSD or Solaris)
55 +* /opt/Local/Library/WebObjects/Applications (on other UNIX systems than OS X, like Linux, BSD or Solaris)
56 56  
57 57  Copy the **BlogRest-Application.tar.gz** archive into the correct directory from the above list and uncompressed it (//tar zxf BlogRest-Application.tar.gz//). This will create a new directory named **BlogRest.woa**.
58 58  
... ... @@ -67,7 +67,7 @@
67 67  Usually, the Web server resources goes to:
68 68  
69 69  * /Library/WebServer/Documents/WebObjects (on OS X)
70 -* /opt/Local/Library/WebServer/Documents/WebObjects (on UNIX systems other than OS X, like Linux, BSD or Solaris)
70 +* /opt/Local/Library/WebServer/Documents/WebObjects (on other UNIX systems than OS X, like Linux, BSD or Solaris)
71 71  
72 72  Copy the **BlogRest-WebServerResources.tar.gz** archive into the correct directory from the above list and uncompressed it (//tar zxf BlogRest-WebServerResources.tar.gz//). Doing this command will result in a new directory called **BlogRest.woa**.
73 73