Posts

Showing posts from 2022

How to Disable IPV6 on RHEL 8 / Rocky Linux 8 / Alma Linux 8

Image
Method 1: Using GRUB2 Edit /etc/default/grub and append ipv6.disable=1 to GRUB_CMDLINE_LINUX  GRUB_CMDLINE_LINUX="rd.lvm.lv=rhel/swap crashkernel=auto rd.lvm.lv=rhel/root ipv6.disable=1" Run the grub2-mkconfig command to regenerate the grub.cfg file: grub2-mkconfig -o /boot/grub2/grub.cfg Alternatively, on UEFI systems, run the following: grub2-mkconfig -o /boot/efi/EFI/redhat/grub.cfg Reboot Server reboot   Method 2: Using sysctl Create File ipv6.conf nano /etc/sysctl.d/ipv6.conf ============================== # First, disable for all interfaces net.ipv6.conf.all.disable_ipv6 = 1 # If using the sysctl method, the protocol must be disabled all specific interfaces as well. net.ipv6.conf..disable_ipv6 = 1 ============================== Reloaded sysctl -p /etc/sysctl.d/ipv6.conf Create a backup of the initramfs before making any changes to it: cp /boot/initramfs-$(uname -r).img /boot/initramfs-$(uname -r).bak.$(date +%m-%d-%H%M%S).img rebuild the Initial RAM Disk Image dracut -f...

How to Install Nextcloud 22 on Debian 9

Image
Import the GPG key and add the following Apt repository to your system. sudo apt install ca-certificates apt-transport-https -y wget -q https://packages.sury.org/php/apt.gpg -O- | sudo apt-key add - echo "deb https://packages.sury.org/php/ stretch main" | sudo tee /etc/apt/sources.list.d/php.list Install PHP version 7.3 apt install php7.3-cli php7.3-common php7.3-curl php7.3-mbstring php7.3-mysql php7.3-xml php7.3-zip php7.3-gd ufw apache2 mariadb-server -y Start and enable service ufw, apache2, and mariadb systemctl start ufw apache2 mariadb && systemctl enable ufw apache2 mariadb Setup mariadb server mysql_secure_installation mysql -u root -p On database create database cloud; create user 'cloud'@'localhost' IDENTIFIED BY 'password'; grant all privileges on cloud.* TO 'cloud'@'localhost'; flush privileges; exit; Go to directory /var/www cd /var/www/ Download Nextcloud version 22.1.1.zip wget https://download.nextcloud.com/s...

How to Setup Zimbra 8.8.12 On Rhel 7.9

Image
Zimbra Coordinated effort Suite (ZCS) is an Open Source, cooperative stage for email servers, created in two versions, Open Source release (Free) and Organization Release (Paid), which offers types of assistance like LDAP, SMTP, POP and IMAP, webmail client, calendaring, assignments, antivirus, antispam and others. This instructional exercise portrays how to introduce Zimbra Coordinated effort Suite Open Source Release on a CentOS/RHEL 7 server. yum update -y Install Development Tools and package zimbra needed yum group install "Development Tools" -y yum -y install unzip sysstat openssh-clients perl-core libaio nmap-ncat libstdc++.so.6 bind-utils bind systemctl status firewalld systemctl status postfix systemctl stop postfix && systemctl disable postfix Disable ipv6 nano /etc/sysctl.conf Add line net.ipv6.conf.all.disable_ipv6 = 1 net.ipv6.conf.default.disable_ipv6 = 1 net.ipv6.conf.lo.disable_ipv6 = 1 service network restart ===================================...

How to Install Nextcloud 25 On Ubuntu 20.04 With PHP 7.4

Image
Nextcloud offers a cutting edge, on-premises content joint effort stage with continuous record altering, video visit and groupware on versatile, work area and web. My Spesification Server Lab on virtualbox OS               : UBUNTU 20.04 Hard Disk    : 80 GB RAM           :  2 GB Hostname    : svr-cloud IP Address   : 192.168.1.20/24 Change hostname hostnamectl set-hostname svr-cloud Reboot Server reboot Login to your server again Check ufw status ufw status Status: inactive Enable ufw (for secure) ufw enable if putty, disconnect, login again or restart your putty ufw status give permission for OpenSSH ufw allow OpenSSH && ufw reload Change IP Address static nano /etc/netplan/00-installer-config.yaml =================================================== # This is the network config written by 'subiquity' network: ...

How To Install Nextcloud 25 On Red Hat 8.6 With PHP 7.4

Image
Nextcloud offers a cutting edge, on-premises content joint effort stage with continuous record altering, video visit and groupware on versatile, work area and web. My Spesification Server Lab on virtualbox OS            : Red Hat Enterprise Linux 8.6 Hard Disk     : 160 GB RAM           :  4 GB Hostname      : cloud-rhel IP Address    : 192.168.1.86/24 =================================== Change hostname to cloud-rhel hostnamectl set-hostname cloud-rhel Change ip address nmtui Follow steps change the ip address and reboot server Restart your putty and login again Install php 7.4 dnf -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-8.noarch.rpm dnf -y install https://rpms.remirepo.net/enterprise/remi-release-8.rpm dnf -y install dnf-utils dnf module reset php -y dnf update -y dnf module install php:...