In this article, I will explain how you can Notify a Pagerduty oncall by mentioning @oncall in Slack channel with help of Hubot. If you are a DevOps, Developer or any engineer who works on infrastructure which demands high availability and stability, you must be familiar with Pagerduty. Pagerduty takes care of oncall management and […]
How to integrate Hubot with Slack to create an efficient Chatbot
In this article, let me get you through the steps to integrate (a chatbot app) with . Have you thought of having a chatbot who can automate most of your office works? like Jarvis of Tony Stark (not exactly 😛 ). If yes, go ahead and read this article. If you are not familiar with […]
How to efficiently use AWS Free Tier services ( RDS,EC2,EIP,S3 ) to host your Website / blog
I know you are aware that AWS provides free tier services to new customers for one year. This is mainly to attract new customers to AWS. Actually AWS free tier service encouraged me to start a new blog because other hosting providers make you pay at-least 200INR monthly. Usually bloggers make money with advertisement programs […]
How to periodically Backup your website and MySQL database to local server as well as S3 bucket using Bash script (video)
You might have gone through situation where you need simple script to backup your website and database server. In this article, I will explain how you can periodically Backup your MySQL database and website to local server as well as S3 bucket using Bash script. The reason I am writing the backup script in bash […]
How to Create a MySQL Database in RDS and migrate existing MySQL database to RDS (Video)
Amazon Relation Database Service(RDS) is a managed database service in Cloud provided by AWS. If you are tired of managing database server of your website/webapp, RDS is your best choice. RDS comes with monitoring, 99.99% uptime and Backup service. AWS even provides RDS Free tier service for new customer so that they can test the […]
How to create Linux EC2 instance and connect to it with Elastic IP in AWS (Video)
In this article, let me explain how you can create an Linux EC2 instance in AWS and connect to it with Elastic IP. As you might know, AWS is a popular cloud platform and EC2 is Infrastructure As Service(IaaS ) Cloud solution from AWS. Basically EC2 instance is a virtual machine which can be launched on desired OS […]
How to Install Linux, Apache, MySQL and PHP ( LAMP ) stack in Ubuntu 18.04.1 / Ubuntu 18.10 (Video)
In this article, Let me explain how you can setup a LAMP server with default configuration in Ubuntu 18.04.1 / Ubuntu 18.10. Majority of the websites in the internet are running on LAMP stack which is a combination of Linux Apache MySQL and PHP. LAMP servers are very popular and it is easy to setup. Before […]
How to get Build status of Jenkins Job using python script (Video)
Most of us might have gone through situations where we need to check status of a Jenkins Job and do some automations based on it. In this article, let me get you through steps on how you can check build status of last Jenkins job using Python script. Step1: Use Jenkins API: Yeah, Jenkins has […]
How to Setup ReactJS with Django – Steps Explained
As I promised in my last article, I will explain how you can setup ReactJS with Django today. ReactJS is a best combination with Django. ReactJS takes care of frontend and Django takes care of Backend of your Website or User Interface. Before you begin, I assume you have Django installed and setup till HTML […]
How to run Python, Perl, Ruby, Bash – any script with Django Views
Have you ever wondered how we can run a ready-made script with Django ? In this article, I will explain how to run / execute any script( Python , Perl , Ruby , Bash ..etc) from Django views. I hope you have installed and configured Django on your box. If not, read my article on “How to Install and configure […]