today's howtos
-
How to Install WordPress with LAMP in RHEL Distributions
WordPress is an open source and free blogging application and a dynamic CMS (Content Management System) developed using MySQL and PHP.
It has a huge number of third-party plugins and themes. WordPress is currently one of the most popular blogging platforms available on the internet and is used by millions of people across the globe.
In this tutorial we are going to explain how to install the popular content management system – WordPress using LAMP (Linux, Apache, MySQL/MariaDB, PHP) on RHEL-based distributions such as CentOS Stream, Fedora, Rocky Linux, and AlmaLinux distributions.
-
How to set up Django application with Postgres, Nginx, and Gunicorn on Rocky Linux/Alma Linux 9
In this guide we will learn how to set up django application on a Rocky Linux 9 server. We will be setting up a PostgreSQL database instead of using the default SQLite database. We will configure the Gunicorn application server to interface with our applications. We will then set up Nginx to reverse proxy to Gunicorn, giving us access to its security and performance features to serve our apps.
-
How to Install Chromium Browser on Linux Mint 21 LTS
Chromium is an open-source browser project that was first launched in 2008. The project aims to build a safer, faster, and more stable way for all users to experience the web. To do this, the Chromium codebase is constantly being improved, with new features and security updates being released regularly. The Chromium codebase is also used by many other browsers, including Microsoft Edge, Opera, and Vivaldi. This means that any improvements made to Chromium will benefit these browsers as well. Chromium is well-liked amongst advanced users who prefer not to have all the bloat of tracking in Chrome and other proprietary software. This is because Chromium does not collect user data, and all browser extensions are open-source and available on the Chrome Web Store. As a result, Chromium provides a more private and secure browsing experience for all users.
-
How to manage service accounts and security context constraints in OpenShift | Enable Sysadmin
Kubernetes and OpenShift utilize user accounts and service accounts. The difference is simple: User accounts are for humans, and service accounts are for processes. In my previous article, I demonstrated how to use a service account and security context constraints (SCCs) to ensure that a pod has sufficient permissions to run system-level processes. This article discusses using and managing service accounts and SCCs.
-
Introduction To Bash Scripting - OSTechNix
If you are taking the first step in learning Bash scripting, then you have come to the right place. This introduction to Bash scripting guide is created with a bunch of different topics that will make you comfortable in writing your first bash script.
Before learning shell scripting, you should have a good amount of knowledge on how to work with terminal and run some basic commands like cd, chmod, ls, cp, mv, etc., and an understanding of the Linux process.