Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 9 years ago.
Improve this question
I have just setup 5 centos 6 servers. I want to turn then all into webservers but I want one server to be able to control all the servers and install websites on them. How do I do this? Is there some software I could use that is preflably free.
I strongly recommend puppet configuration management system to automate your installation/configuration process. it is open source. it has one centralized server used to store/distribute configuration/updates across your network infrastructure.
reference
http://puppetlabs.com/
Hope it helps
Related
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 8 years ago.
Improve this question
I need a Mailing System in my local network, and actually i don't prefer now to spend time on developing new one, can anybody suggest me a free JSF web mail application. Knowing that i am using a local James-3 IMAP server.
JavaMail API? It is part of Java EE.
See the JavaMail Third Party Products page.
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 9 years ago.
Improve this question
I get a an error while installing MPICH, that the mpd files are missing.Can you please Suggest me with some links where i can get mpd tools for MPI.
Use Hydra it is a process management system for starting parallel jobs. Hydra is designed to natively work with multiple daemons such as ssh, rsh, pbs, slurm and sge. .
http://www.mpich.org/static/tarballs/3.0.2/hydra-3.0.2.tar.gz
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 9 years ago.
Improve this question
I am looking for DNS server software with statistics like all unqie IPs connected past 24hrs, top domain queries and etc...
Anyone know such software with free-license ?
This is not done through DNS. This is done with server logs. If you want big data there are plenty of tools, google it. google is even one of the answers.
Possible duplicate of:
Software to help in log analysis?
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 8 years ago.
Improve this question
Are there any pen-testing agencies that tests nodejs applications? And are there any good tools with wich you can do it yourself?
Regardless of what platform you choose a lot of the same vulnerabilities are found. I recommend the open source project skipfish or a service like Sitewatch. Skipfish doesn't have a JavaScript interpreter, so if you use client side js heavily then you should go with the open source Grendel-Scan.
Zaproxy, is a great tool for web application pentest http://sourceforge.net/projects/zaproxy/files/
A bit late in the day, however www.ZeroDayLab.com specialise in app security scans like this.
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 9 years ago.
Improve this question
Do you guys know fine tutorials, sample codes for SSL socket programming with Jetty? I am going to implement some secured applications with Jetty.. :)
Have a look at the Jetty Ssl Socket Connector instead of the often use Socket Connector.
http://docs.codehaus.org/display/JETTY/Ssl+Connector+Guide
http://docs.codehaus.org/display/JETTY/Embedding+Jetty?focusedCommentId=9241003#comment-9241003
Its not that difficult. Just add the sslSocketConnector to your server (after configuring it) and after this your application should respond to https requests.
server.addConnector(sslConnector);