First download the wigwam bootstrap script:
wget http://downloads.sourceforge.net/wigwam/wigwam-bootstrap-3.0.30
chmod +x wigwam-bootstrap-3.0.30 |
This script can create a new wigwam project; to learn about more specific
options, run:
./wigwam-bootstrap-3.0.30 --help |
To use that script run,
./wigwam-bootstrap-3.0.30 \
--project=jm3.0 \
---initialize=ApacheJServ,service_jserv_apache |
The
--project option tells the name of the project
and the directory to create.
--initialize
tells the bootstrap script to add certain packages to it immediately.
construct the project in as well as the name to give the project
Later, when checking the project out from CVS,
you'll need to run:
Finally you'll need to configure the services:
./ext/bin/servicectl check-config role developer |
This will report the needed environment variables that must be set for this
configuration to run under the role
developer.
To start all the services:
./ext/bin/servicectl start |
Now create a bit of content to test your configuration with:
cd www/htdocs
cat > index.jsp
<% out.println("TESTING 1,2,3......"); %>
^D
cat > index.html
Hello World
^D |