Skip to main content

Posts

Showing posts with the label Linux

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

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