Author: Rahul

I, Rahul Kumar am the founder and chief editor of TecAdmin.net. I am a Red Hat Certified Engineer (RHCE) and working as an IT professional since 2009..

Angular is a versatile open-source web application framework developed by Google, used for building efficient and scalable single-page applications. This tutorial will guide you through setting up Angular on a Fedora system. Before we begin, it’s important to note that Angular requires Node.js and npm (Node Package Manager) to be installed on your system. We’ll also cover these installations. Step 1: Update Your System Firstly, ensure your Fedora system is up to date by running the following commands: sudo dnf update Step 2: Install Node.js and npm Node.js is a JavaScript runtime that is required for Angular to function. npm…

Read More

This tutorial will help you to automate the Magento2 codebase and database backup process using a shell script. The script will perform automatic backups on a scheduled interval. The script also has the ability to remove older backups as per configuration. Setup Magerun2 You need to download and configure the Magerun2 script on your system. wget https://files.magerun.net/n98-magerun2.phar mv n98-magerun2.phar /usr/local/bin/n98-magerun2 chmod +x /usr/local/bin/n98-magerun2 Download Shell Script You can download Magento2 backup script from here. Alternativly, use below command to download script using wget command. wget https://tecadmin.net/wp-content/downloads/scripts/magento2-backup.sh You can also copy the script below and paste it in a file on…

Read More

This tutorial will help you clear the log file on a Docker container. If your system is getting out of disk space and you found that the docker container’s log files are consuming high disk space. you can find the log file location and clear them with the help of this tutorial. While clearing log files of a docker container, you don’t need to stop it. Clear Docker Container Log File Below are the 3 different options to clear log files of Docker containers. Choose any one of the below options to truncate the docker container log files. Some of…

Read More

Redis is an in-memory data structure store. It is used as database store, cache server. You can also use redis as message broker to configure Publish/Subscribe (PUB/SUB) messaging system. Redis is capable to store Strings, Hashes, Lists, Sets, sorted sets, HyperLogLogs, bitmaps, streams, and spatial indexes etc. It also provides a PHP module for communication between PHP script with the Redis server. Redis is written in C programming language. This tutorial will help to install the Redis cache server along with PHP Redis extensions on a CentOS 8 Linux machine. Prerequisites CentOS 8 Linux system with shell access Newly installed…

Read More

Internet Information Service (IIS) is the popular web server developed by Microsoft Corporation. It runs on Windows servers and serve websites to users. The PowerShell is the configuration and management application for the Microsoft systems. In this tutorial you will learn how to enable (start) or disable (stop) all sites in single command with PowerShell. Useful links: How to create website in IIS using command line How To Redirect HTTP to HTTPS in IIS Launch PowerShell Type PowerShell in application search option. Then right click on PowerShell application and select “Run as administrator”. This will provide you administrative privileges to…

Read More

ownCloud is a software application provide self hosted file hosting services. You can install owncloud application on your server and use it as your own file server. Where you can easily upload/sync files from the client machine. It also provides options to sync and share across devices—all under your control. This tutorial will help you to set up your own file hosting server with the ownCloud on Debian 10 Buster Linux system. Prerequsites Shell access to Debian 10 Linux system Sudo privilege account access Step 1 – Install LAMP The first of all, to set up ownCloud you must have…

Read More

Magento is the best eCommerce software and solution for online services. Magento 2 is the latest version Recently the Magento team has released its new version Magento 2.0 with lots of improvements changes and optimizations over Magento 1. This tutorial will help you to install the Magento2 application on Ubuntu 18.04 system. Recommended: Magento2 codebase and database backup automation script Step 1 – Install LAMP You can use the following commands to install all requirements from default repositories. sudo apt update sudo apt install apache2 wget unzip Then install PHP and other required PHP modules. sudo apt install php libapache2-mod-php…

Read More

The Mono project is sponsored by the Microsoft. Mono is a software platform designed to allow developers to easily create cross platform applications. Mono supports most the modern operating systems with 32-bit and 64-bit architecture. This tutorial will help you to install Mono on CentOS 8 Linux systems. Useful tutorial: How to Install Visual Studio Code on CentOS 8 Prerequisites Login to the CentOS 8 system with sudo privileged account. Install Mono on CentOS 8 First of all, install some required packages and import GPG key to your system. rpmkeys –import “http://pool.sks-keyservers.net/pks/lookup?op=get&search=0x3fa7e0328081bff6a14da29aa6a19b38d3d831ef” You need to add yumrepository provide by the…

Read More

Apache Kafka is a distributed streaming platform. It is useful for building real-time streaming data pipelines to get data between the systems or applications. Another useful feature is real-time streaming applications that can transform streams of data or react on a stream of data. This tutorial will help you to install Apache Kafka CentOS 8 or RHEL 8 Linux systems. Prerequisites The newly installed system’s recommended to follow initial server setup. Shell access to the CentOS 8 system with sudo privileges account. Step 1 – Install Java You must have Java installed on your system to run Apache Kafka. You…

Read More

Are you looking to install and connect OpenVPN Client on Ubuntu? It’s easy to do! In this guide, we’ll walk you through the process step-by-step. Assuming one of your clients wants to secure a connection to their server. The client has configured OpenVPN server on their network and provide you client configuration file. By the end, you’ll have a secure, encrypted connection to your VPN server. So, let’s get started! Prerequisites Before you can install OpenVPN Client on Ubuntu, you’ll need to make sure you have the following: The latest version of Ubuntu is installed on your computer. A reliable…

Read More