Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am trying to run psservice.exe and plink.exe from servlet using runtime exec. It will be used for starting or stopping services on remote computer running windows and unix aix.

I have set system variables so that i am able to run them from command prompt. These commands are running perfectly from command prompt and java program

I am using below code in Servlets for remote windows machine

    Runtime.getRuntime().exec(serverPropLoader.getServerProperties("psservice \\\\172.xx.xx.xx -u username -p password stop MySQL")); 

I am using below code in Servlets for remote unix aix 5.3 machine

    Runtime.getRuntime().exec(serverPropLoader.getServerProperties("PLINK.exe -ssh -pw "password" username@172.xx.xx.xx /home/mysql/stopservice.sh"));

Below are my observations :

If i run above statement from Eclipse (ver 3.4.2) using Tomcat6 it runs perfectly fine, but if export my web app as WAR and deploy it in Tomcat6 mannually it dosen't run. ( i have tried deploying it in mine and other system)

I have tried puting these command in Batch file and calling it from servlet but no success. From Batch file "net" and "sc" command are working but i am not able to run pservice and plink command. also "sc" command is working for local processes only.

After execution of servlet i am able to see psservice.exe and plink.exe in windows task manager but required services on local and remote system is not starting / stopping

share|improve this question
I have found a work around for above problem : Now i am creating a new file with name of service to be started \ stopped. I have written a another java program which will read file name and start or stop required service. – Piyush_Chandra Sep 5 '12 at 8:28
I feel this issue has some thing to do with catalina.policy in tomcat or windows user permission as i able to run Runtime.getRuntime().exec() from normal java program but not from servlet deployed in tomcat. Another strange thing is i am able to run servlet from eclipse. – Piyush_Chandra Sep 5 '12 at 8:32

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.