Friday, April 25, 2025

Essential Chrony Commands Every System Administrator Should Know

 


Introduction

Chrony is an NTP client and server software designed for keeping accurate time on Linux-based systems. It is especially suited for systems that may have intermittent network connectivity or systems that need to maintain time synchronization during periods of high latency. Unlike older NTP implementations, Chrony is optimized for faster response times, greater precision, and less resource consumption.

Chrony’s main advantages include:

  • Faster initial synchronization compared to traditional NTP
  • Better accuracy on systems with unreliable or intermittent network connections
  • The ability to work with systems that have no permanent internet connection
  • Easy-to-use configuration and troubleshooting tools

With Chrony, system administrators can ensure that their systems remain in sync with reliable time sources, which is crucial for everything from logging to security protocols and performance monitoring.

Chrony Commands for Systems Administrators: Installing Chrony

Before using Chrony commands, you’ll need to install Chrony on your system. This is a straightforward process.

On CentOS/RHEL/Fedora (Linux-based Distributions)

sudo yum install chrony
sudo dnf install chrony      # CentOS/RHEL 8 or higher

On Ubuntu (Debian-based Distributions)

sudo apt install chrony

Once Chrony is installed, you can start and enable the Chrony service.

Start and Enable Chrony

sudo systemctl enable --now chronyd

This will start the Chrony service and ensure that it starts automatically on boot.

Key Chrony Commands for System Administrators

Checking Synchronization Status

The first thing you need to know when working with Chrony is whether your system is synchronized to a reliable time source. To check the status, use the following command:

chronyc tracking

This command provides detailed information about the synchronization state, including the current time offset and the last time the system synchronized with its time sources.

Reference ID    : 192.168.1.17 (time.dev.naijalabs.net)
Stratum         : 2
Ref time (UTC)  : Sun Feb 17 09:34:16 2025
System time     : 0.000123456 seconds fast
Last offset     : +0.000012345 seconds
RMS offset      : 0.000001234 seconds
Frequency       : 0.000000123 Hz

In the example output (above), you’ll find details like:

  • Reference ID: The time server to which your system is synced.
  • Stratum: The level of your time server in the NTP hierarchy.
  • Last offset: The time difference between your system and the reference time source.

Configuring Chrony Servers

To set up Chrony to synchronize with specific NTP servers, you need to edit the /etc/chrony.conf configuration file. Open the configuration file for editing:

sudo vim /etc/chrony.conf

Inside this file, you can add or modify server entries like so:

server time.dev.naijalabs.net iburst
server time1.example.org iburst

The iburst option ensures rapid synchronization at startup. Once the changes are made, restart the Chrony service to apply them:

sudo systemctl restart chronyd

To verify your server synchronization status, use the following command:

chronyc sources

Your output should look similar to (example output):

MS Name/IP address            Stratum Poll Reach LastRx Last sample
===============================================================================
^- time1.example.org          2  10   377    14  -3658us[-3658us] +/-   34ms
^* time.dev.naijalabs.net     2  10   377   421  +3914us[+3830us] +/-   16ms

Popular Time Servers

Here’s a list of actual time servers widely used and trusted across various network, enterprise, academic and public environments.

#Time Server NameIP AddressStratumDescription
1pool.ntp.org162.159.200.1231Public NTP server pool providing reliable time synchronization.
2time.google.com216.239.35.01Google’s NTP servers offering high availability and accuracy.
3time.windows.com131.107.0.01Microsoft’s public time server used for Windows devices.
4time.apple.com17.253.56.241Apple’s public time server used by Apple devices and services.
5time.cloudflare.com1.1.1.11Cloudflare’s fast and secure time synchronization service.
6tick.usno.navy.mil192.5.41.2090U.S. Naval Observatory’s official time server.
7ntp1.za.net196.190.24.152South African time server operated by ZA-NTCP.
8ntp2.nict.jp133.243.238.1641National Institute of Information and Communications Technology (Japan).
9ntp.time.org216.239.35.41Time.org’s public NTP service offering accurate time data.
10europe.pool.ntp.org193.167.212.1002European region of the public NTP server pool for global access.

For a reliable configuration, ensure that you configure multiple time sources to avoid disruptions and ensure precision in your system clocks.

Force Synchronization

At times, you may need to manually synchronize the system clock with a time source immediately. Use the chronyc makestep command to force synchronization and correct any clock drift.

sudo chronyc makestep

This command is particularly useful if the system clock is off by a large margin, for instance, after the server is started or the time server has changed.

Configure Additional Time Servers

To add more NTP servers to your Chrony configuration, edit the chrony.conf file or use the chronyc command for dynamic changes. Here’s how you can add an additional server using the chronyc CLI:

sudo chronyc add server 203.0.113.2 iburst

Show Synchronization Sources

To get a more detailed view of the time sources, including reachability, stratum, and timestamps, the chronyc sourcestats command provides an in-depth summary of each server’s statistics.

sudo chronyc sourcestats

Example Output:

MS Name/IP address         Stratum    Poll Reach  LastRx  Last sample
===============================================================================
^+ 203.0.113.2                  2       6   377    20     -0.000038   +/-  0.000079
^* 192.168.1.100                2       6   377    19     +0.000012   +/-  0.000076
^- 198.51.100.200               3       6   377    22     +0.000017   +/-  0.000098

Check Drift (Clock Stability)

Chrony tracks the stability of the system clock with an internal drift file. Use the chronyc activity command to assess how stable your system clock is.

sudo chronyc activity
200 OK
4 sources online
0 sources offline
0 sources doing burst (return to online)
0 sources doing burst (return to offline)
0 sources with unknown address

This command gives you insight into whether Chrony is successfully stabilizing the system clock or if there are any issues in maintaining synchronization.

View Chrony Log

Chrony logs can provide valuable insight into any issues that may arise. On most systems, Chrony logs are stored in the system log files. To view them:

sudo journalctl -u chronyd

This will display recent logs related to the Chrony service. Look for errors or warnings that might indicate time synchronization issues.

Comparison of Chrony Commands and Their Functions

CommandFunction
chronyc trackingDisplays the system’s synchronization status
chronyc sourcesShows a list of NTP servers and their synchronization status
chronyc makestepForces an immediate synchronization of the system clock
chronyc add serverAdds a new NTP server dynamically
chronyc sourcestatsProvides detailed stats about time sources
chronyc activityShows the system’s clock stability and drift
chronyc timeDisplays the current time in UTC

Best Practices for Using Chrony

  • Use Multiple Time Sources: Always configure more than one time source to ensure accurate synchronization, especially if one server becomes unreachable.
  • Configure Local Time Servers for High Availability: If you are managing a large infrastructure, consider setting up internal time servers that sync with external NTP servers, minimizing dependency on external sources.
  • Monitor Regularly: Use chronyc tracking and chronyc sources to monitor the status of synchronization regularly. This helps you identify and address potential issues before they affect system performance.

Wednesday, December 11, 2024

LINUX ADMINISTRATION PART 1

Section 1: 

Introduction To Linux and OS Installations


what-is-linux-and-how-does-linux-work

a-basic-guide-to-linux-boot-process

linux-directory-structure-and-important

how-to-download-and-install-rhel-93-for_17

how-to-install-virtualbox-70-on-rhel

the-best-linux-distributions-for

install-rocky-linux-9-on-virtualbox-on


Section 2: 

Essential Basic Linux Commands


20-basic-ls-command-examples-in-linux

15-practical-examples-of-cd-command-in

15-pwd-print-working-directory-command

how-to-use-dir-command-with-different

linux-mkdir-command-examples

linux-rmdir-command-examples-for

how-to-use-mv-command-in-linux-9-useful

how-to-copy-files-and-directories-in

8-practical-examples-of-linux-touch

35-practical-examples-of-linux-find

how-to-use-cat-command-in-linux-22

12-linux-df-commands-to-check-disk

10-useful-du-disk-usage-commands-to

18-tar-command-examples-in-linux

12-practical-examples-of-linux-grep

how-to-create-hard-and-symbolic-links

how-to-create-and-use-alias-command-in

15-practical-examples-of-echo-command

9-practical-examples-of-tail-command-in

16-top-command-examples-in-linux

30-useful-ps-command-examples-for-linux

how-to-kill-process-in-linux-from

8-uniq-command-examples-remove


Section 3: 

Essentials of Advance Linux Commands


7-quirky-ls-command-tricks-every-linux

manage-files-effectively-using-head

6-wc-command-to-count-number-of-lines

7-interesting-sort-command-examples-in

14-useful-examples-of-sort-command-in

pydf-alternative-df-command-to-check

10-free-commands-to-check-memory-usage

rename-command-line-tool-for-renaming

15-practical-examples-of-echo-command


Section 4: 

Some More Advanced Linux Commands


level-up-linux-20-must-know-commands

level-up-linux-20-advanced-commands-for

sysadmins-devops-20-must-know-advanced

24-funniest-commands-to-try-in-linux

24-funniest-commands-to-try-in-linux

51-useful-lesser-known-commands-for

10-most-dangerous-commands-you-should


Section 5: 

User, Group, and File Permissions Management


how-to-create-users-in-linux-15-useradd

level-up-linux-20-advanced-commands-for

managing-users-groups-file-permissions

difference-between-su-and-sudo-and-how

how-to-monitor-linux-users-activity


Section 6: 

Linux Package Management


20-linux-yum-yellowdog-updater-modified

20-practical-examples-of-rpm-commands

20-useful-apt-get-commands-for-ubuntu

15-useful-dpkg-commands-for

45-zypper-commands-to-manage-suse-linux

linux-package-management-with-yum-rpm_18

27-dnf-fork-of-yum-commands-for-rpm


Section 7: 

System Monitoring & Cron Scheduling


16-top-command-examples-in-linux

how-to-kill-process-in-linux-from

how-to-use-lsof-command-to-check-open

11-cron-command-examples-in-linux

20-command-line-tools-to-monitor-linux

15-useful-performance-and-network

how-to-install-nagios-monitoring-in

how-to-install-zabbix-on-rhelcentos-and

a-shell-script-to-monitor-network-diske


Section 8: 

Linux Archiving/Compression, Backup/Sync and Recovery

Archiving/Compression Files


18-tar-command-examples-in-linux

how-to-create-extract-and-list-rar

5-best-command-line-archive-tools-for

lfcs-3-how-to-archive-files-set-file


Backup/Sync Files and Directories in Linux


how-to-use-rsync-command-in-linux-16

10-scp-commands-to-transfer

rsnapshot-powerful-backup-tool-based-on

how-to-sync-two-apache-web


Backup/Recovery Linux Filesystems


redo-backup-and-recovery-tool-to-backup

how-to-clonebackup-linux-systems-using

scalpel-powerful-tool-to-recover

disk-cloning-is-process-of-copying-data


Section 9: 

Linux File System / Network Storage Management


what-are-ext2-ext3-ext4-how-to-create

linux-file-system-explained-boot

lfcs-4-how-to-partition-storage-devices_17

setting-up-standard-linux-file-systems_39

Ifcs-5-how-to-mount-local-and-network_17

introduction-to-glusterfs-file-system_16


Section 10:

Linux LVM Management


how-to-create-disk-storage-with-logical

how-to-extendreduce-lvms-logical-volume

how-to-take-snapshot-of-logical-volume

setup-thin-provisioning-volumes-in

manage-multiple-logical-volume

migrating-lvm-partitions-to-new-logical


Section 11: 

Linux RAID Management


introduction-to-raid-concepts-of-raid_34

creating-software-raid0-stripe-on-two_14

setting-up-raid-1-mirroring-using-two_88

creating-raid-5-striping-with_42

setup-raid-level-6-striping-with-double_79

setting-up-raid-10-or-10-nested-in_96

growing-existing-raid-array-and_18

lfcs-6-how-to-assemble-partitions-as_18


Section 12: 

Manage Services in Linux


chkconfig-vs-systemctl-manage-linux

how-to-stop-and-disable-unwanted

how-to-manage-systemd-services-and

lfcs-managing-system-startup-process_18


Section 13:

Linux System Security and Firewall

Linux Security and Tools


26-security-hardening-tips-for-modern

5-best-openssh-server-best-security

how-to-set-grub2-password-in-rhel-based

how-to-show-security-warning-message-to

how-to-do-security-auditing-of-linux

secure-filesdirectories-using-acls

how-to-audit-network-performance_16

rhcsa-series-mandatory-access-control


Linux Firewall and Tools


the-beginners-guide-to-iptables-linux

how-to-setup-iptables-firewall-to_17

how-to-configure-firewalld-in-rhel

useful-firewalld-rules-to-configure-and

how-to-install-and-configure-ufw-un

shorewall-high-level-firewall-for

install-and-configure-configserver

how-to-install-ipfire-free-firewall

how-to-install-and-configure-pfsense


Section 14:

LAMP (Linux, Apache, MySQL/MariaDB and PHP) Setup’s


how-to-install-apache-mysqlmariadb-and

how-to-install-lamp-server-on-rhel

installation-of-ubuntu-2204-server-with

how-to-install-lamp-linux-apache-mysql

setting-up-lamp-linux-apache

installing-lamp-linux-apache-mysql-php

how-to-host-website-for-free-at-your

apache-virtual-hosting-name-based-and

how-to-setup-standalone-apache-server_17

creating-virtual-hosts-generate-ssl

protect-apache-against-brute-force-or

18-apache-web-server-security-and

how-to-sync-two-apache-web_17

how-to-install-varnish-and-perform-web

how-to-install-and-configure-lemp-on


Section 15: 

LEMP (Linux, Nginx, MySQL/MariaDB and PHP) Setup’s


how-to-install-nginx-115-mariadb-10-and

installing-fcgiwrap-and-enabling-perl

installing-lemp-linux-nginx

how-to-install-nginx-php-mariadb-and


Section 16: 

MySQL/MariaDB Administration


learn-mysql-create-update-and-delete

20-mysqladmin-commands-for-mysqlmariadb

mysql-backup-and-restore-commands-for

how-to-setup-mysql-replication-in-rhel

8-best-mysqlmariadb-gui-tools-for-linux

4-useful-commandline-tools-to-monitor


Section 17: 

Basic Shell Scripting


understand-linux-shell-and-basic-shell

5-useful-shell-scripts-for-linux

learn-practical-bash-scripting-projects

learn-basic-mathematical-operations-in_18

calculating-mathematical-expressions-in

understanding-and-writing-functions-in

deeper-into-function-complexities-with

working-with-arrays-in-linux-shell

an-insight-of-linux-variables-in-shell

understanding-and-writing-linux_18

nested-variable-substitution-and


Section 18: Linux Interview Questions

15-interview-questions-on-linux-ls

10-useful-ls-command-interview

11-basic-linux-interview-questions-and

basic-linux-interview-questions-and

10-linux-interview-questions-and

10-core-linux-interview-questions-and

10-useful-interview-questions-and

20-most-commonly-asked-mysql-interview

10-mysql-database-interview-questions

11-advance-mysql-database-interview

10-vsftp-very-secure-file-transfer

10-advance-vsftp-interview-questions

10-useful-ssh-secure-shell-interview

10-useful-squid-proxy-server-interview

nishita-agarwal-shares-her-interview

10-basic-interview-questions-and


Section 19: Shell Scripting Interview Questions

10-useful-interview-questions-and

practical-interview-questions-and





Monday, December 9, 2024

Azure Link

what-is-future-of-microsoft-azure

azure-administrator-salary-in-india-for

what-is-cloud-computing-beginners-guide

what-salary-can-you-expect-being-azure

an-introduction-to-microsoft-azure

what-is-microsoft-azure-introduction-to

how-to-build-career-with-microsoft

microsoft-azure-certification-exams

microsoft-certification-exams

how-to-become-microsoft-certified-azure

microsoft-azure-architect-technologies

how-to-prepare-for-microsoft-azure

microsoft-azure-certification

microsoft-certified-azure-administrator

everything-you-need-to-know-about-az

everything-you-need-to-know-about-az

what-is-azure-web-app-create-azure-web

vm-scale-set-availability-zone

everything-you-need-to-know-about-azure

azure-data-factory-interview-questions

what-is-az-900-exam-microsoft-azure

what-is-serverless-computing-exploring

migrate-data-with-azure-data-factory

microsoft-azure-developer-salary-in

az-900-microsoft-azure-fundamentals

how-to-build-career-with-microsoft_19

how-much-does-azure-certification-cost

top-paying-microsoft-azure

10-reasons-to-get-microsoft-azure

what-is-azure-api-apps-exploring-api

top-paying-microsoft-azure-jobs

what-is-virtual-machine-in-azure

most-popular-microsoft-azure-services

top-10-most-used-microsoft-azure

whats-difference-between-aws-vs-azure

top-50-azure-administrator-interview

microsoft-azure-certification-course

azure-developer-certification-course

azure-devops-course-overview

microsoft-azure-virtual-network

azure-tutorials-for-beginners

what-are-azure-data-centers

azure-geographies

azure-regions-paired-regions

azure-resource-groups

azure-resource-group-benefits

azure-management-groups-and

azure-availability-set

azure-availability-set-vs-availability

virtual-machine-scale-sets

create-azure-virtual-machine-scale-set

autoscale-azure-virtual-machine-scale

when-to-use-azure-virtual-machines

how-to-create-virtual-machine-in-azure

unable-to-connect-to-azure-vm-using-rdp

azure-just-in-time-vm-access

public-ip-address-vs-private-ip-address

what-is-azure-app-service

azure-app-service-plan

azure-pricing-tiers

how-to-deploy-aspnet-web-application-in

how-to-deploy-web-application-with-sql

database-and-entity-framework-to-azure

how-to-access-azure-sql-database-from

azure-with-code-and-database-changes

azure-deployment-slots

impact-of-azure-deployment-slot-swap-on

azure-deployment-slots-auto-swap

what-is-swagger

how-to-use-swagger-in-aspnet-core-web

how-to-deploy-aspnet-core-web-api-to

what-is-azure-api-management-service

create-azure-api-management-service

add-api-to-azure-api-management

cloud-computing-tutorial-for-beginners

the-state-of-it-before-virtual-machines

what-is-virtual-machine-and-why-is-it

what-are-containers-and-how-are-they

benefits-of-cloud-computing

risks-of-cloud-computing

what-is-public-cloud-benefits

what-is-private-cloud-benefits

what-is-hybrid-cloud-benefits

private-vs-public-vs-hybrid-cloud

what-is-iaas-in-cloud-computing

what-is-paas-in-cloud-computing

what-is-saas-in-cloud-computing

cloud-computing-course-wrap-up

azure-availability-sets

virtual-machines-in-azure

getting-started-with-microsoft-azure

microsoft-azure-virtual-machine

labcreate-linux-virtual-machine-with

lab-create-linux-virtual-machine-in

lab-create-linux-virtual-machine-in_20

labcreate-virtual-machines-in-scale-set

lab-create-virtual-machines-in-scale

lab-create-virtual-machines-in-scale_20

lab-create-windows-virtual-machine

azure-site-recovery

community-images-in-azure-new-way-to

azure-compute-gallery-virtualization

mastering-azures-compute-gallery-and-vm

a-step-by-step-guide-for-creating-azure

azure-disk-pool

azure-disk-pool_21

make-most-out-of-your-azure-disks-using

deploy-and-attach-azure-disk-pool-to

azure-dedicated-hosts

deploy-vms-and-scale-sets-to-dedicated

azure-vm-hots-group

microsoftcompute-hostgroups

using-custom-image-templates-to-create

creating-vm-image

build-custom-images-using-azure-vm

create-image-through-azure-portal-with

create-image-through-azure-portal-with

images-azure

mastering-azures-compute-gallery-and-vm_22

how-to-manage-and-harden-vm-images-in

using-custom-image-templates-to-create_22

how-to-use-image-templates

creating-vm-image_22

build-custom-images-using-azure-vm_22

preparing-custom-image-templates-with

generate-and-store-ssh-keys-in-azure

use-ssh-key-authentication

ssh-to-your-azure-linux-vms-with

azure-create-new-linux-vm-and-connect

replicate-virtual-machines-running-in

create-proximity-placement-groups-in

create-virtual-machine-restore-points

recovery-points-and-retention

create-and-manage-lab-accounts

set-up-lab-account-with-azure-lab

manage-labs-in-azure-lab-services-when

azure-lab-accounts

create-and-deploy-to-cloud-services

how-to-use-azure-devops-to-publish

deploy-azure-cloud-services-extended

azure-app-services

azure-web-apps-azure-app-services

a-serverless-container-service-for

create-automator-config-key

deploy-containerized-app-to-azure

how-to-deploy-azure-container-apps

azure-container-service-aks-detailed

manage-environment-variables-on-azure

azure-container-apps-workshop

review-and-practical-examples

getting-started-with-azure-functions

introduction-to-azure-functions-app

azure-functions-tutorial

azure-functions-simple-explanation-with

azure-functions

azure-functions

azure-functions_26

deploying-multi-container-application

quickstart-deploy-azure-kubernetes

deploying-azure-kubernetes-service-demo

introducing-aks-automatic-managed

connect-baremetal-infrastructure

work-with-azure-large-instances-in

integrating-megaport-with-sap-on-azure

create-batch-account-in-azure-portal

use-azure-portal-to-create-batch

set-up-azure-batch-computation-provider

use-container-for-azure-batch-service

batch-entry

batch-payments-by-bank-deposit

batch-pool-with-user-assigned-managed

create-batch-payment-payable

batch-payments

batch-payments_27

adm-account-batch-creation-and

run-workflow-through-microsoft-genomics

genomics-on-azure

different-ways-to-connect-to-your-azure

share-access-to-your-azure-quantum

get-started-with-q-programs-and-visual

azure-quantum

quantum-entanglement

sap-hana-infrastructure-configurations

back-up-sap-hana-databases-in-azure-vms

backup-sap-hana-databases-with-hsr

how-to-connect-and-process-sap-hana

azure-monitor-for-sap-solutions-hana

microsoft-azure-introduction-to-azure

technical-brief-for-microsoft-azure-arc

azure-kubernetes-service-azure

implement-azure-container-instanceslab

azure-container-instances-vs-app-service

azure-container-instances-tutorial

azure-container-instances

challenges-of-managing-multiple-azure

orchestrate-updates-across-multiple

deploying-multi-container-application_28

azure-kubernetes-service-azure_28

azure-kubernetes-service-aks-cluster

how-to-secure-your-azure-container

what-is-azure-container-instances

azure-container-instances-for-single

using-container-registries

azure-container-instance-and-private

create-azure-container-registry-using

building-docker-images-compatible-with

deploy-application-to-azure-kubernetes

how-to-use-azure-kubernetes-service-aks

building-microservices-with-azure

creating-aks-cluster-lab

creating-continuous-integration-ci

azure-kubernetes-service-control-plane

benefits-of-using-azure-openshift

deploying-openshift-on-azure

deploy-azure-red-hat-openshift-cluster

service-fabric-managed-clusters

create-cluster-in-azure

service-fabric-overview

get-started-with-deploying-and

provisioning-your-first-azure-service

installing-azure-service-fabric-cluster

microsoft-azure-service-fabric

creating-secure-cluster

configure-app-service-app

create-azure-app-configuration-store

using-azure-app-configuration-with-ais

app-configuration

creating-azure-app-configuration

using-azure-container-apps-at-scale

introducing-azure-container-apps

implement-azure-container-appslab

implement-azure-container-appslab

how-to-deploy-azure-container-apps_29

how-to-deploy-azure-container-apps_29

deploying-docker-images-to-azure

serverless-platform-with-azure

deploy-dockerized-spring-boot-app-to

azure-container-apps-general

create-azure-edge-hardware-center

use-azure-portal-to-manage-your-azure

to-create-management-resource-for

prepare-to-deploy-azure-stack-edge-pro

move-azure-edge-hardware-center

technical-brief-for-microsoft-azure-arc_30

step-by-step-azure-stack-edge-azure

monitor-your-azure-stack-edge-device

manage-access-power-and-connectivity

restrict-importexport-access-for

introduction-to-azure-managed-disks

azure-disk-data-exfiltration

get-started-with-azure-native-qumulo

kom-igang-med-azure-native-qumulo

hantera-azure-native-qumulo-scalable

azure-vm-snapshots

microsoft-azure-creating-os-disk

manage-and-use-snapshots

how-to-find-and-remove-old-azure

create-or-restore-virtual-machine-from

prerequisites-for-azure-netapp-files

set-up-azure-netapp-files-and-create

disaster-recovery-with-azure-netapp

create-azure-storage-account

microsoft-azure-storage-account

create-azure-storage-account_31

create-storage-account-to-use-with

microsoft-azure-storage-accounts

adding-microsoft-azure-storage-accounts

how-to-use-ibm-app-connect-with

steps-to-find-account-name-and-key-for

create-azure-blob-storage-from-scratch

azure-storage-account-and-storage

azure-storage-account-and-storage

testing-out-azure-storage-mover

microsoft-azure-for-beginners-moving

create-azure-storage-mover-resource

overview-and-steps-to-create

what-is-azure-bastion

create-rdp-connection-to-windows-vm

create-azure-bastion-to-secure

deploy-azure-bastion-by-using-specified

azure-bastion-with-native-tools-aad

azure-bastion

create-custom-ipv6-address-prefix-using

multi-nic-f5-big-ip-virtual-edition

brief-introduction-of-azure-virtual

network-connections

virtualnetwork-service-tag-and-network

step-by-step-azure-nat-gateway-static

criando-um-public-ip-prefixes-na-azure_5

configuring-site-to-site-vpn-tunnels-to

simplifying-data-transfer-to-azure

azure-data-box-physical-devices-for

deploy-azure-storage-mover-agent

connect-to-azure-data-lake-gen1-in

copy-data-to-or-from-azure-data-lake


Tuesday, December 3, 2024

AWS LAB

linux-administration-in-graphical-lab

efs-lab

aws-elastic-disaster-recovery-lab

aws-fsx-labs

s3-lab

s3-glacier-lab

aws-storage-gateway-labs

aws-artifact-lab

aws-audit-manager-lab

certificate-manager-lab

cloudhsm-labs

cognito-lab

detective-lab

directory-service-lab

aws-firewall-manager-lab

guardduty-lab

ground-station-lab

aws-robomaker-lab

braket-account-lab

api-gateway-lab

aws-app-mesh-lab

amazon-application-recovery-controller

aws-cloud-map-lab

cloudfront-lab

direct-connect-lab

application-discovery-service-lab

aws-application-migration-service-lab

aws-mainframe-modernization-lab

aws-migration-hub-lab

aws-deadline-cloud-lab

elastic-transcoder-lab

amazon-interactive-video-service-lab

aws-lab-step-by-step-process

aws-lab

aws-cloud-job-oriented-program-step-by

aws-certification-path-learn-aws

aws-vs-azure-vs-gcp-comparison-which

learn-aws-certification-hierarchy-2024

aws-vs-azure-vs-gcp-comparison-which_5

top-3-cloud-computing-service-models

aws-exploration-amazon-web-services

top-50-aws-solution-architect-interview

aws-storage-overview-types-benefits-s3

aws-vs-azure-vs-gcp-comparison-which_65

exploring-aws-data-exchange-for-sharing

hands-on-labs-projects-for-jobs

through-aws-marketplace

how-zoom-implemented-streaming-log

introduction-to-data-engineering

microsoft-certified-azure-data-engineer

introducing-data-products-in-amazon

match-and-link-related-records-from

aws-certified-machine-learning

rnn-training-advantages-disadvantages

complete-data-science-bootcamp-step-by

amazon-documentdb

how-i-solved-dynamic-task-scheduling

amazon-dynamodb-tutorial-for-beginners

how-to-use-cost-management-billing-to

database-lab-tutorial-for-amazon-rds

virtual-edition-without-aws-marketplace

configure-ise-31-through-aws-marketplace

aws-backup-labs-step-by-step

efs-aws-labs-step-by-step

aws-elastic-disaster-recovery-labs-step

fsx-aws-labs-step-by-step

s3-glacier-aws-labs-step-by-step

storage-gateway-aws-labs-step-by-step

api-gateway-aws-labs-step-by-step

aws-app-mesh-labs-step-by-step-with

amazon-application-recovery

aws-cloud-map-awslabs-step-by-step-with

cloudfront-awslabs-step-by-stepwith

direct-connect-awslabs-step-by-stepwith

aws-private-5gawslabs-step-by-step

route-53labs-step-by-stepwith-screenshot

vpc-aws-labs-step-by-stepwith-screenshot

api-gateway-aws-lab-step-by-step-with

aws-app-mesh-aws-lab

amazon-application-recovery-controller_23









HTTP Appache Server LAB 7

 Apache HTTP Server (httpd) Configuration,