These are some notes while upgrading my ESXi homelab server.Check current version/build number[nstah@kumala:~] vmware -vVMware ESXi 6.7.0 build-14320388Download ESXi update file at VMweare Customer Connect, then upload it to VM host storage I'm trying to update using October 2022 Patch, ESXi670-202210001 - Build 204970...
How to Setup MariaDB(MySQL) Master-Master Replication
December 26, 2021 by Haris
SpecificationLinux1: Ubuntu 18.04 LTSIP: 10.1.1.10Linux2: Ubuntu 18.04 LTSIP: 10.1.1.20MariaDB: 10.1.48-MariaDBInstall MariaDBsudo apt updatesudo apt-get install software-properties-commonsudo apt-get install mariadb-serverStop MariaDBsudo systemctl stop mariadb.serviceEdit /etc/mysql/my.cnf...
Centos Yum Install Download Only for Offline Install
December 17, 2019 by Haris
yum install yum-plugin-downloadonly yum-utils createrepo
mkdir /var/tmp/httpd
mkdir /var/tmp/httpd-installroot
yum install --downloadonly --installroot=/var/tmp/httpd-installroot --releasever=7 --downloaddir=/var/tmp/httpd httpd
createrepo --database /var/tmp/httpd
vi /etc/yum.repos.d/offline-httpd.repo
[offline-httpd]
name=CentOS-$releasever - httpd
baseurl=file:///var/tmp/httpd
enabled=0
gpgcheck=1
gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7
repoclosure...