Category Archives: DevOps
How to install metabase and connect MySQL DB
Reading Time: 3 minutes Metabase is an open source business intelligence tool. It lets you ask questions about your data, and displays answers in formats that make sense, whether that’s a bar graph or a detailed table. You can explore their product from here https://www.metabase.com Installing Metabase Metabase can be installed by several ways. Personally i prefer to use…
Beginner Tutorial for RabbitMQ
Reading Time: 4 minutes What’s RabbitMQ? RabbitMQ is a queuing system which is based on queuing protocol called AMQP and mainly used for queuing jobs that’s initiated from a source which we call it a producer, then RabbitMQ manages these requests by putting them in a queue or several queues according to the configuration. Then these messages are handled…
APIs For Non-Technical People
Reading Time: 4 minutes The simplest way, APIs are connectors. It’s all about connecting different technologies. Most of us carry phones and other small computers in our pockets that are connected to networks that give us unprecedented access to our friends and colleagues. By now, we are so used to the instant connectivity that puts the world at our…
What is WebDav
Reading Time: 3 minutes What is WebDav?? It is a collaborative protocol; let you edit files on a remote server. Also, access your cloud storage and web hosting. So it is meant for remote file editing and manipulation, It can also transfer files. Moreover, Web distributed authoring and versioning is an extension to HTTP that lets clients do remote…
How to Redirect HTTP to HTTPS Using .htaccess
Reading Time: 2 minutes Traditionally, all websites and web servers are configured by default to all HTTP traffic over port 80 (Check Network Protocols Standards). But HTTP is insecure and vulnerable to hackers’ attacks. So today we’ll configure your web-server to redirect HTTP to HTTPS using .htaccess Because HTTP traffic is transferred as a plain text (not encrypted). So…
How to Install LAMP Web Server?
Reading Time: 2 minutes A LAMP (Linux, Apache, PHP and MySQL) stack is a common, free, and open-source web stack used for hosting web content in a Linux environment. And this server is used for high performance web app deployment. This guide shows how to install and test a LAMP stack on Ubuntu 18.04 (LTS). At first we need…
Network Protocols Standard List
Reading Time: 8 minutes A port is a logical component that identifies a specificprocess or a network service. Ports are identified for each protocol andaddress combination by 16-bit unsigned numbers, commonly known as the portnumber. The most common protocols that use port numbers are the TransmissionControl Protocol (TCP) and the User Datagram Protocol (UDP). A port number is always…