At work, I set up Tomcat 6.0.16 to use SSL using the instructions from http://techtracer.com/2007/09/12/setting-up-ssl-on-tomcat-in-3-easy-steps/
. However, I had to modify some of the steps to make it work on mys system:
When generating the Keystore file, make sure you tell keytool that you wnat RSA:
keytool -genkey -alias techtracer -keypass yourpassword -keystore techtracer.bin -storepass yourpassword -keyalg RSA
Also, in tomcat's sever.xml, use the code snippet from the official documentation (http://tomcat.apache.org/tomcat-6.0-doc/ssl-howto.html) instead of his snippet, e.g.:
< connector port="8443" minsparethreads="5" maxsparethreads="75" enablelookups="true" disableuploadtimeout="true" acceptcount="100" maxthreads="200" scheme="https" secure="true" sslenabled="true" keystorefile="/home/yourself/apache/webapps/techtracer.bin" keystorepass="yourpassword" clientauth="false" sslprotocol="TLS" >
The jruby on rails applications deployed on Apache also now run on a secure SSL connection.
The following Powershell script can be used to send an email alert when a file is missing from a folder or it is the same file from a previous check: $path_mask = "yourfile_*.txt" $previous_file_store = "lastfileread.txt" $script_name = "File Check" ###### Functions ########## Function EMailLog($subject, $message) { $emailTo = "juanito@yourserver.com" $emailFrom = "alert@yourserver.com" $smtpserver="smtp.yourserver.com" $smtp=new-object Net.Mail.SmtpClient($smtpServer) $smtp.Send($emailFrom, $emailTo, $subject, $message) } Try { #get files that match the mask $curr_file = dir $path_mask | select name if ($curr_file.count -gt 0) { #file found #check if the file is different from the previous file read $previous_file = Get-Content $previous_file_store $curr_file_name = $curr_file.Item(0).Name if ($
Comments