I've been tasked with setting up an automated system that will have to do some things on the Linux server that, from my understanding and research thus far are not able to easily be done from within Java, such as mounting a hard drive on the linux server. I have used some SSH over Java libraries but found them a bit difficult to use reliably. I can run the java app directly on the linux server so I'm wondering if there is a better way to make the needed calls to the server than over SSH. Any advice would be appreciated
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
Runtime.getRuntime().exec("some linux command"); Example:
|
|||||||||||
|
|
There are plenty of Linux webadmin tools that allow this sort of administration - Google's top hit is Webmin - written in Perl or PHP. Unless you need to integrate with existing a java code on the server I think I'd look at adapting one of these rather than starting from scratch in a language that really isn't well suited to this type of task. Don't underestimate the potential security risks of this system - another advantage to building on the work of others. |
|||||
|