...
From the transmart-library web site, download the application's war files: transmart transmartApp-release-19.0.war and gwava-release-19.0.war. We will copy then to a staging directory at ~/transmart/war-files . And then, install then in tomcat's webapps directory as transmart.war and gwava.war. Specifically,
Code Block | ||||
---|---|---|---|---|
| ||||
cd ~/transmart mkdir war-files cd war-files curl http://library.transmartfoundation.org/release/release19_0_0_artifacts/transmarttransmartApp-release-19.0.war --output transmart.war curl http://library.transmartfoundation.org/release/release19_0_0_artifacts/gwava-release-19.0.war--output gwava.war sudo cp *.war /var/lib/tomcat8/webapps/ |
...