File: start_his_server

package info (click to toggle)
ctn 3.2.0~dfsg-8
  • links: PTS, VCS
  • area: main
  • in suites: trixie
  • size: 16,924 kB
  • sloc: ansic: 179,652; makefile: 7,006; java: 1,863; csh: 1,067; yacc: 523; sh: 424; cpp: 394; sql: 389; lex: 170
file content (23 lines) | stat: -rw-r--r-- 385 bytes parent folder | download | duplicates (7)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# !/bin/csh
#
# A simple script for starting the his server for a ctn...
#

#
# This should be changed to match whatever the real root is
#
set ROOT = /mir_ctn/his

if( $1 == "" ) then
	echo Usage: $0 ctnname
	exit
endif

set PORT = 3200

setenv QUEUE_DIRECTORY $ROOT/q
setenv D $ROOT/db

his_server -v -c $1 -p $PORT $ROOT/config/his_connect.cfg $ROOT/config/his_database.cfg &

exit