© 2023 Hashnode
#apache
Hello 👋,Welcome to the second article in the "Deploying PHP Application on Digital Ocean" series. In this article, we will connect to the droplet via SSH and configure the droplet. Connecting via SSH…
This command is using several command line utilities to gather information about the current network connections on a Linux or Unix-based system. netstat -ntu|awk '{print $5}'|cut -d: -f1 -s|sort|uniq -c|sort -nk1 -r netstat -ntu: The net…
We are going to host a basic HTML page on an instance on apache web server installed on top of our instance. Log into your aws account. Assuming we created an instance with Ubuntu Operating System. Just like the one in this link. Next i…
A LAMP Stack is a set of open-source software that can be used to create websites and web applications. LAMP is an acronym: these stacks typically consist of the Linux operating system, the Apache HTT…
This tutorial will take you from zero to having a codeigniter app fully installed on AWS Lightsail instance. Introduction In this article, I will guide you to setting up the following technologies AW…
This setup includes installing Web Development tools and packages like Apache, MySQL, PHP, WP-CLI, Composer, PHP Code Sniffer, WordPress Coding Standards, NodeJS, Mongo DB, and also some tools includi…
Apache Cassandra is a highly scalable, high-performance, and fault-tolerant NoSQL database. It is designed to handle large amounts of data across many commodity servers, providing high availability an…
Apache Kafka was built for real-time. In programming we consider everything to be events. Now, events have states as well. But the primary idea is that the event is an indication in time that the thing took place. Now it’s a little bit cumb…
A web server is a computer system that stores and manages the content and functionality of a website. Web servers are an essential part of the modern internet, as they enable users to access and interact with websites and web-based applicat…
In this article, we will look at how to extract names from a webpage using the JSoup library and Apache OpenNLP Name Finder API in Java. JSoup is a Java library for parsing HTML and XML documents, whi…