Skip to content

TechOnline

TechOnline

  • Home
  • About
  • Contact
Linux

How to join a RedHat Linux Machine to Windows Active Directory Domain

Mahesh No Comments

✅ As part of Prerequisites, Set up Active Directory Domain Services (AD DS): ✅ Install required packages on the Linux machine: ✅ Configure hostname on the Linux machine. ✅ Update…

Projects

Step-by-Step Guide to Host a Website on Apache with SSL

Mahesh No Comments

Launch an EC2 instance and install the required packages: httpd & mod_ssl yum install httpd mod_ssl -y -> Add the following line in httpd configuration file if it is not…

Linux

How to install, configure NFS server and client in RedHat Linux

Mahesh No Comments

This tutorial demonstrates the installation and configuration of NFS on two RHEL 9 servers, one acting as a server and the other as a client. On the NFS server: Install…

Docker

How to reduce the size of docker image

Mahesh No Comments

Let us create a sample docker file for the node.js application Build a Docker image using the Dockerfile docker build -t app1 -f dockerfile.nodeapp . Verify the size of the…

Linux

How to setup SFTP server on Redhat Linux

Mahesh No Comments

Prerequisites for Setting Up an SFTP Server: Steps Involved: -> Log in to the Linux machine and check the status of the SSH service. -> Create SFTP Group and User.…

Docker

How to persist Mongodb data in containers using Docker volumes

Mahesh No Comments

-> Data inside a container is temporary and will be lost once the container stops. Although this may be appropriate for some use cases, ensuring data persistence for databases like…

Docker

How to change Docker default root data directory

Mahesh No Comments

-> By default, Docker-related data such as images, containers, volumes, and networks is stored in the /var/lib/docker directory on a Linux machine. -> To verify, run the below command. docker…

Linux

How to install subversion(SVN) in RedHat Linux

Mahesh No Comments

Install the required packages yum install httpd subversion mod_dav_svn -y Create and Configure a Local SVN Repository. mkdir -p /var/www/svn Navigate to the svn directory and create a repo. cd…

Recent Posts

  • How to join a RedHat Linux Machine to Windows Active Directory Domain
  • Step-by-Step Guide to Host a Website on Apache with SSL
  • How to install, configure NFS server and client in RedHat Linux
  • How to reduce the size of docker image
  • How to setup SFTP server on Redhat Linux

Recent Comments

No comments to show.

Categories

  • Docker
  • Linux
  • Projects

TechOnline