Hey all you smart people out there. I've got a functioning JIRA and Confluence environment using Apache and reverse proxy using SSL on Windows. We've been having a lot of problems with crashing, and I've been asked to move it to Linux. I'm not much of a Linux guru, but I do have my RHCSA so I can get around. I am struggling with this environment though, and I'm wondering if anyone could help out with some of the configs like the httpd.conf and server.xml.
Also, I'm hoping I can setup a good test environment with a self-signed cert, but I haven't gotten that working yet. Do you know if it's even possible in this config?
I have a basic JIRA install working but other than that I've been struggling.
Thanks,
Joe
httpd.conf:
SSLPassPhraseDialog builtin SSLSessionCache shmcb:/var/cache/mod_ssl/scache(512000) SSLSessionCacheTimeout 300 SSLMutex default SSLRandomSeed startup file:/dev/urandom 256 SSLRandomSeed connect builtin SSLCryptoDevice builtin NameVirtualHost xx.xx.xx.xx:80 NameVirtualHost xx.xx.xx.xx:443 # # Note that in my configuration, virtual hosts on 80 do redirect on 443. # We do not accept http traffic. Virtual host on port 80 omitted. # <VirtualHost jira.foo.com:443> ServerName jira.foo.com # Easy, right ? I use AJP, but you can simply use another protocol ProxyPreserveHost On ProxyPass / ajp://127.0.0.1:8515/ ProxyPassReverse / ajp://127.0.0.1:8515/ # SSL SSLEngine on SSLProtocol all -SSLv2 SSLCertificateFile /etc/httpd/conf/server.crt SSLCertificateKeyFile /etc/httpd/conf/private.key SSLCertificateChainFile /etc/httpd/conf/intermediate.crt SSLCipherSuite HIGH:!aNULL:!MD5 </VirtualHost>
Server.xml - no real change
Anyway:
"We've been having a lot of problems with crashing" - I'm not sure that if you move to Linux, things will be suddenly ok. Most probably, you are moving the problems, too
Edited: some explanations
True, it's worth looking into the causes of crashes before assuming that a change of OS is going to fix it. If the problem is an addon, you're not going to find much change (although it's Linux, so it's going to be easier to debug, fix and maintain...) On the bright side, Linux does tend to crash less than Windows, and a clean setup (rather than copying everything) is far more likely to land you with a stable system.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.