Skip to main content

Posts

How to install ftp server on ubuntu server 22.04

This guide will help you install and configure ftp server with vsftpd on ubuntu server. Follow the steps outline bellow to install vsftpd utility on ubuntu server 22.04. Step 1: Update System Package Repository sudo apt update

DNSSEC bind9

Part 1 - DNSSEC Validation Part 2 - DNSSEC Signing for Forward Zone Part 3 - Secure Delegation and Key Rollover

Install DNS server bind9 on ubuntu 22.04

  Part 1 - Recursive DNS Part 2 - Authoritative DNS Part 3 - Reverse DNS Part 4 - Secure Zone Transfer and RNDC

How to install and configure prometheus, grafana and node exporter on ubuntu server

1. Download and install prometheus Run the following command line for download and install prometheus : wget https://github.com/prometheus/prometheus/releases/download/v2.37.6/prometheus-2.37.6.linux-amd64.tar.gz tar xvfz prometheus-*.tar.gz rm prometheus-*.tar.gz sudo mkdir /etc/prometheus /var/lib/prometheus cd prometheus-2.37.6.linux-amd64 sudo mv prometheus promtool /usr/local/bin/ sudo mv prometheus.yml /etc/prometheus/prometheus.yml sudo mv consoles/ console_libraries/ /etc/prometheus/ prometheus --version