unable to execute a .sh script with Jsch
-
i'm trying to execute a script shell in a unix server from my java application (on my windows seven station) using the ssh api Jsch. the script shell i'm using "start_lm" is a C binary. this is the code i'm using (it's from the Jsch website exemples) try{ JSch jsch=new JSch(); Session session=jsch.getSession(user, host, 22); UserInfo ui=new MyUserInfo(); session.setUserInfo(ui); session.connect(); String command="user/psi/start_lm"; Channel channel=session.openChannel("exec"); ((ChannelExec)channel).setCommand(command); channel.setInputStream(null); ((ChannelExec)channel).setErrStream(System.err); InputStream in=channel.getInputStream(); channel.connect(); while(true){ if(channel.isClosed()){ System.out.println("exit-status: "+channel.getExitStatus()); break; } try{Thread.sleep(1000);}catch(Exception ee){} } channel.disconnect(); session.disconnect(); } the error i'm getting is exit-status: -1 what does it mean thanks for ure help.
-
Answer:
There's the problem I believe ". ./start_lm.sh It should be below provided script present in current directory "./start_lm.sh as exit status 127 says 127 "command not found" illegal_command
sm1988 at Stack Overflow Visit the source
Related Q & A:
- How to deploy a server script?Best solution by Stack Overflow
- How to call a function with parameter in a bash script?Best solution by tldp.org
- How to execute a selected statement?Best solution by Stack Overflow
- How do you submit a movie script?Best solution by Yahoo! Answers
- How to start creating a php script, that will be installed on many servers?Best solution by Stack Overflow
Just Added Q & A:
- How many active mobile subscribers are there in China?Best solution by Quora
- How to find the right vacation?Best solution by bookit.com
- How To Make Your Own Primer?Best solution by thekrazycouponlady.com
- How do you get the domain & range?Best solution by ChaCha
- How do you open pop up blockers?Best solution by Yahoo! Answers
For every problem there is a solution! Proved by Solucija.
-
Got an issue and looking for advice?
-
Ask Solucija to search every corner of the Web for help.
-
Get workable solutions and helpful tips in a moment.
Just ask Solucija about an issue you face and immediately get a list of ready solutions, answers and tips from other Internet users. We always provide the most suitable and complete answer to your question at the top, along with a few good alternatives below.