Changeset 679 in tmcsimulator for trunk/bin/systemstart_dev_full_session.sh


Ignore:
Timestamp:
09/26/2022 05:03:29 PM (4 years ago)
Author:
jdalbey
Message:

Update scripts and bat files to use config/devlinux files.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/bin/systemstart_dev_full_session.sh

    r648 r679  
    11#!/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# Get path to this script 
     8# $0 contains path to the script file, even if launched from file manager 
     9SCRIPT_PATH=$(dirname "$(readlink -f "$0")") 
     10# CD to the script folder 
     11cd "$SCRIPT_PATH" 
     12 
    213# Start the Simulator System with the full incident script 
    3  
    414cd ../webapps 
    515# Delete any existing CADcomments.log 
     
    1020sleep 1 
    1121cd .. 
    12 java -jar deploy/CADserver.jar & 
     22java -DCONFIG_DIR=config/devlinux -jar deploy/CADserver.jar & 
    1323sleep 10 
    1424java -jar deploy/SimManager.jar full_script_2016.xml & 
     
    2131 
    2232sleep 10 
    23 java -jar deploy/CADclient.jar & 
     33java -DCONFIG_DIR=config/devlinux -jar deploy/CADclient.jar & 
    2434sleep 5 
    2535 
Note: See TracChangeset for help on using the changeset viewer.