source: tmcsimulator/trunk/bin/systemstart_dev_full_session.sh @ 648

Revision 648, 643 bytes checked in by jdalbey, 4 years ago (diff)

bin startup scripts updated to include loggging service.

  • Property svn:executable set to *
Line 
1#!/bin/sh
2# Start the Simulator System with the full incident script
3
4cd ../webapps
5# Delete any existing CADcomments.log
6rm dynamicdata/CADcomments.log
7#  start the local webserver
8echo "Starting webserver in folder" `pwd`
9python -m CGIHTTPServer 8080 &
10sleep 1
11cd ..
12java -jar deploy/CADserver.jar &
13sleep 10
14java -jar deploy/SimManager.jar full_script_2016.xml &
15sleep 10
16# Start Unified Logger Service
17python deploy/unifiedlogger.zip &
18sleep 5
19# Start a browser and run the web applications
20firefox localhost:8080/einotebook  localhost:8080/cptms localhost:8080/unifiedlogmonitor.html &
21
22sleep 10
23java -jar deploy/CADclient.jar &
24sleep 5
25
Note: See TracBrowser for help on using the repository browser.