File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
Oracle Scripts/DAC/init.d Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -299,13 +299,13 @@ echo_in_progress() {
299
299
300
300
start () {
301
301
echo -en " \nStarting DAC Server"
302
- su $ORACLE_OWNR -c " $JAVA -server -Xms256m -Xmx800m -cp $DACCLASSPATH com.siebel.etl.net.QServer" > $START_LOG 2>&1 &
302
+ su $ORACLE_OWNR -c " cd $DAC_HOME ; $JAVA -server -Xms256m -Xmx800m -cp $DACCLASSPATH com.siebel.etl.net.QServer" > $START_LOG 2>&1 &
303
303
wait_to_start $DAC_FINGERPRINT $START_TIMEOUT
304
304
}
305
305
306
306
stop () {
307
307
echo -en " \nStopping DAC Server"
308
- su $ORACLE_OWNR -c " $JAVA -cp $DACCLASSPATH com.siebel.etl.bootup.DAWUtils TERMINATE" > $STOP_LOG 2>&1 &
308
+ su $ORACLE_OWNR -c " cd $DAC_HOME ; $JAVA -cp $DACCLASSPATH com.siebel.etl.bootup.DAWUtils TERMINATE" > $STOP_LOG 2>&1 &
309
309
wait_to_die $DAC_FINGERPRINT $STOP_TIMEOUT
310
310
}
311
311
You can’t perform that action at this time.
0 commit comments