source: tmcsimulator/trunk/bin/systemstart_systest.sh @ 663

Revision 663, 748 bytes checked in by jdalbey, 4 years ago (diff)

Update bin scripts to match revised config filenames

  • Property svn:executable set to *
Line 
1#!/bin/sh
2
3# Kill any process leftover from previous run
4kill $(ps  aux | grep "[p]ython -m CGIHTTPServer 8080" | awk '{print $2}')
5kill $(ps  aux | grep "[p]ython deploy/unifiedlogger.zip" | awk '{print $2}')
6
7# Start the Simulator System with the system test script
8cd ../webapps
9python -m CGIHTTPServer 8080 &
10sleep 1
11cd ..
12java -DPROP_FILE=cad_server_systest.properties -jar deploy/CADserver.jar &
13sleep 7
14java -jar deploy/SimManager.jar system_test_script.xml &
15# Manual step for now, until it's integrated into Sim Mgr
16#cp Scenarios/system_test_script.xml webapps/dynamicdata/incident_script.xml
17
18# Start a browser and run the web applications
19firefox localhost:8080/einotebook  localhost:8080/cptms
20#localhost:8080/unifiedlogmonitor.html &
Note: See TracBrowser for help on using the repository browser.