Date Posted: EFS is a aws service which is similar to NFS service where we can add a single disk across multiple servers. The advantage of using EFS is we dont have to worry about data storage. Limitation: EFS has a limited to few regions as of now and it… Continue Reading Working with EFS (Elastic File System)

Date Posted:13-03-2017 Ajenti is a open source control panel which works with java. The beauty of the control panel is it will auto discover the application and display it on the control panel. It also has option to install services in it. Assumption: Ubuntu Host. In this post, we use… Continue Reading Install Ajenti Control Panel

Date Posted:11-03-2017 In this post, we deals with how to redirect all non www request to www request. If nginx is not installed, follow the posts. Ubuntu 16.04 Centos 7 Implementation: If you followed the above posts, the default location of nginx configuration is /etc/nginx/sites-enabled/default. Open nginx configuration and add the… Continue Reading Redirect non www request to www nginx

Date Posted: 28-02-2017 NFS(Network File system) used to mount remote files to the server. In this post, we will cover up on how to setup NFS server and mount the NFS directory to the client server. Assumption: 1.  Ubuntu Server. One server is Ubuntu Server used for NFS server and… Continue Reading Setup NFS server and configure NFS mount point on Ubuntu

Date Posted:25-02-2017 Assumption: Ubuntu Server Any custom Service. In our example, we will forward the port 8080 request to other server. We are gonna explain on how to install haproxy on Ubuntu server. Additionally, we will show up on how to configure service which forwards a requests from haproxy to… Continue Reading Install haproxy and configure haproxy

Date Posted:12-02-2017 Redis is a in memory cache used as database cache, database to serve the page faster. We are not going to deal with how the application works, usage,etc., Refer redis official documentation to get to know the use case,etc., Prerequisites: Ubuntu 16 Nginx webserver Php If webserver or… Continue Reading Enable redis module on php – nginx webserver

Date Posted:12-02-2017 In this article, we are gonna explain on how to setup varnish to listen on port 80(http) and forward request to backend webserver(our example, we deals with nginx as backend server). The backend server can be anything, either Apache or Nginx webserver. Assumption: Apache or nginx webserver. This post… Continue Reading Install Varnish on Ubuntu 16

Date Posted:28-01-2017 In the modern era, deploying the code on the multiple server is a challenging one. In classic, people normally use FTP/SFTP to upload the files and restart application. In this article, we are gonna explain how to use code deploy aws service to deploy the code on aws… Continue Reading Setup AWS codedeploy on Linux