TECH TIPS
How to use NGINX to proxy requests for Confluence
Purpose This page describes a possible way to use NGINX to proxy requests for Confluence running in a standard Tomcat container. You can find additional documentation that explains how to use Apache mod_proxy for the very same purpose. For...
Start and Stop JIRA applications
How you start and stop your JIRA application depends on whether you are running JIRA as a Service. Windows If you installed JIRA as a service, you can Start JIRA Server and Stop JIRA Server from the Windows Start menu. You can't start or stop JIRA...
Confluence: pid file found but no matching process was found. Stop aborted.
I am trying to stop confluence through ./stop-confluence.sh but it is showing error like this "PID file found but no matching process was found. Stop aborted." so I try to kill that process with "kill -9 pid" but it showing that "PID: no process found". Can anyone...
Mozilla SSL Configuration Generator
Nifty tool to show you a generic SSL configuration would look like for Apache, nginx, AWS ELB, among others. See tool here.
How to drop a PostgreSQL database if there are active connections to it?
I need to write a script that will drop a PostgreSQL database. There may be a lot of connections to it, but the script should ignore that. The standard DROP DATABASE db_name query doesn't work when there are open connections. How can I solve the problem?...
Permission denied in Postgres
I added the user myuserto Postgres. Then I added the database mydatabase in the pgAdmin III GUI and restored from a backup file. So the owner of mydatabase is the superuser postgres. Then I tried to give all rights to access and...