Physical Address

304 North Cardinal St.
Dorchester Center, MA 02124

Category Uncategorized

Install Odoo 10 – CentOS 7.2

We’ve done guides on installing Odoo 8 and Odoo 9 on CentOS 7, it’s now time to install the latest version of Odoo, version 10, on CentOS 7.2 As always, we’ll start off with a fresh installation of CentOS 7.2.…

Install Mariadb 10.1 – Ubuntu 16.04

Installing the latest stable version of Mariadb, v. 10.1, is pretty straight forward. Start off by heading over to the repo configurator and getting the links for your version of Ubuntu: LINK For us the commands were as follows, enter them…

Add / Modify Static IP Address on Ubuntu 16.04

To add /modify the static IP address of your ubuntu installation follow the steps below: Find out which interface is connected to the internet, issue the following: user@ubuntu:~$ ifconfig enp0s3 Link encap:Ethernet HWaddr 08:00:27:1d:33:18 inet addr:192.168.123.153 Bcast:192.168.123.255 Mask:255.255.255.0 inet6 addr:…

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…

Get owner / username of php process

To find out which user is running the php process on your website put the following into a file inside your websites public directory <?php $processUser = posix_getpwuid(posix_geteuid()); print $processUser[‘name’]; ?>