Hashicorp Vault Systemd Startup Script

From Hashicorp Vault project documentation Starting the Server vault server -config=example.hcl With the configuration in place, starting the server is simple, as shown below. Modify the -config flag to point to the proper path where you saved the configuration above. Vault outputs some information about its configuration, and then blocks. This process should be run…Continue reading Hashicorp Vault Systemd Startup Script

Run JIRA on Budget – JIRA + Varnish + VPS = $7/mo

One of the main reasons why I like JIRA is its integration with BitBucket, the free Git repository service. Both JIRA and BitBucket are from Atlassian, the company behind many other great products. Recently I started using JIRA for all my project works. It works very well. JIRA has hosted version available for $10/month (…Continue reading Run JIRA on Budget – JIRA + Varnish + VPS = $7/mo

Download Browseable Copy Of A Website Using Wget

Wget is a great tool in linux to download files from the internet. Wget can also be used to download a browseable copy of a website into your hard disk. To download a complete website, use the command provided below [code]wget  –recursive  –no-clobber   –page-requisites  –html-extension  –convert-links  –restrict-file-names=windows –no-parent -e robots=off  http://google.com[/code] Wget will download all…Continue reading Download Browseable Copy Of A Website Using Wget

Installing Monit & Restart Apache Automatically

Monit is a free open source utility for managing and monitoring, processes, programs, files, directories and filesystems on a UNIX system. Monit conducts automatic maintenance and repair and can execute meaningful causal actions in error situations. You can use Monit to monitor daemon processes or similar programs running on localhost. Monit is particular useful for…Continue reading Installing Monit & Restart Apache Automatically