Physical Address

304 North Cardinal St.
Dorchester Center, MA 02124

Tag install

Install MariaDB 10.1 – CentOS 7.2

About MariaDB MariaDB one of the most popular and an enhanced drop-in replacements for MySQL. It was created and is maintained by the original developers of MySQL. MariaDB is very interesting because if is fast, scalable and more robust than MySQL.…

Install Percona 5.6 – Ubuntu 16.04

Percona is a free, fully compatible and high performance drop-in replacement for MySQL server. Percona supports high performance hardware and provides improved reliability and performance. To install first we need to add the repo: wget (lsb_release -sc)_all.deb Next, install the…

Install Nginx – Ubuntu 16.04

Installing Nginx on Ubuntu 16.04 is pretty straight forward, start off by updating the sources on your box: sudo apt-get update Issue the following to install nginx: sudo apt-get install nginx Start nginx by issuing the following: sudo service nginx…

Install SSH – Ubuntu 16.04

If you’ve installed Ubuntu 16.04 Desktop you won’t be able to remotely ssh in to the box until you install the ssh server. To do so, issue the following at the terminal: sudo apt-get install ssh That’s it, try ssh’ing…

Install Varnish 4 – CentOS 7.2

Installing Varnish on CentOS 7.2 is pretty straight forward, start off by adding the epel-release repo. yum install epel-release With the repo added install Varnish yum install varnish Start Varnish service varnish start Start Varnish at startup chkconfig varnish on…

Add / Install Epel repo to CentOS 7

epel logo

With CentOS 7 the process of adding the Epel repo has been simplified, you now install the repo with the CentOS package manager yum. With this new method, you don’t need to worry about manually re-adding the repo if it has gone out…

Install Odoo 9 – CentOS 7

I’ve found that if you insist on installing Odoo on CentOS, like I do, doing it on CentOS 7 is the easiest and quickest way of going about it. If you have a fresh CentOS 7 minimal install that’s great,…