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..

A background process is the process which executes behind the scenes. These processes run without user intervention. There are various way to do it for example using & or nohup or screen command. The most popular and frequently used are & and nohup. Including of these two options this tutorial will also describes you to use of screen command. 1. Using & On Linux/Unix based systems we can easily send any process in background by appending & in command. $ ls -l & $ tar czf temp.tar.gz /tmp & In this way if you start a command in background and…

Read More

A few days back PHP version 7.2 has been released. Which has a number of changes and improvements over PHP version 7.X. This article will help you to install PHP 7, NGINX and MySQL 5.6 on CentOS / RHEL 7.4 & 6.9 operating systems. This tutorial has been tested with CentOS 7.4, so all the services command are used with systemctl, For CentOS 6 users change all systemctl command correspondence service command. Step 1 – Setup Yum Repository In the first step install all the required yum repositories in your system used in the remaining tutorial for various installations. You…

Read More

The latest major release of PHP version 7.2 has been released with the number of speed optimizations and security. So you should try this version for your development. This tutorial will help you to install Nginx, PHP 7.2 & MySQL 5.7 on Ubuntu 17.10, 16.04, and 14.04 LTS release. Step 1 – Nginx Installation First of all, we will install Latest Nginx web server on our system. Use the following commands to add PPA for installing latest Nginx version on your Ubuntu 14.04 (Trusty). echo “deb http://nginx.org/packages/mainline/ubuntu/ `lsb_release -cs` nginx” >> /etc/apt/sources.list echo “deb-src http://nginx.org/packages/mainline/ubuntu/ `lsb_release -cs` nginx” >> /etc/apt/sources.list…

Read More

How do I install Java 9 on Debian 9/8. Oracle Java 9 is the latest stable release available to install. The first Oracle Java 9 stable version was released on Sep 21, 2017. This tutorial will help you with the installation of Java 9 on Debian Linux. Follow the instructions below to install Java 9 (JDK and JRE) on Debian system. The users still want Java 8 on their system can use below tutorial to install Java 8 on Debian machine. Install Java 8 on Debian Step 1 – Add JAVA 9 PPA In this tutorial, we need to add…

Read More

Have you ever wondered how you can add a new user to your Ubuntu or Debian machine? Did you know that it’s possible to add a new user without using the root account? If yes, then read on. Creating users in your operating system is important. Not everyone who uses your computer should have access to all its files and folders. This article will guide you through the process of creating and deleting user accounts in Ubuntu, Debian, and other Debian derivatives Linux machines. How to Create a New User For this tutorial, we are using adduser command for example.…

Read More

Symfony is a web application framework written in PHP. Its provides a set of reusable PHP components. Symfony 2.8 is the current stable version available in series of Symfony 2 framework. Symfony is providing 30 stand-alone components for your applications. This tutorial will help you to install Symfony 2 framework on CentOS, Red Hat and Fedora operating systems. Step 1 – Setup Yum Repositories First you need to add REMI and EPEL rpm repositories in your system. these repositories have updated packages. Use one of the below command as per your OS version and system architecture. CentOS/RHEL 7, 64 Bit…

Read More
PHP

Symfony is a web application framework written in PHP. Its provides a set of reusable PHP components. Symfony 3 is the latest version available of this releases. Currently it is providing 30 stand-alone components for your applications. This tutorial will help you to install Symfony 3 php framework on CentOS, Red Hat and Fedora operating systems Step 1 – Setup Yum Repositories First you need to add REMI and EPEL rpm repositories in your system. these repositories have updated packages. Use one of the below command as per your OS version and system architecture. CentOS/RHEL 7, 64 Bit System: #…

Read More

Node.js, a leading server-side programming language akin to PHP and Java, is widely used in web development. Paired with MySQL, the most preferred database for web applications, Node.js enables efficient data management. This guide offers a step-by-step tutorial on integrating MySQL with Node.js, covering essential operations such as INSERT, UPDATE, SELECT, and DELETE in MySQL database tables. Prerequisites Before you begin this tutorial on integrating Node.js with MySQL, ensure you have the following prerequisites in place: Node.js Installed: A current version of Node.js must be installed on your system. You can download it from the official Node.js website. MySQL Server:…

Read More

The Common Gateway Interface (CGI) is a standard protocol that enables web servers to execute external scripts and return dynamic content to web clients. Apache, one of the most widely used web servers, supports CGI scripts out of the box. In this article, we will explain how to enable or disable CGI scripts in Apache on various platforms, including Ubuntu, CentOS, and Fedora. Prerequisites Before proceeding, ensure you have the following: A server running Ubuntu, CentOS, or Fedora with Apache installed. Access to a user account with sudo or root privileges. A text editor, such as nano or vi, for…

Read More

Node.js is a popular server-side JavaScript platform used to build scalable and high-performance applications. MySQL is a popular open-source relational database management system used to store and manage data. In this article, we will discuss how to connect Node.js with MySQL to build database-driven applications. Step 1: Install MySQL and MySQL module for Node.js The first step is to install MySQL and the MySQL module for Node.js. You can install MySQL using your package manager or download it from the official website. Once MySQL is installed, you can install the MySQL module for Node.js using the following command: npm install…

Read More