Install HAProxy on Ubuntu 20.04 Rumi, January 18, 2025 Prerequisites To follow along with this HAProxy tutorial, you require the following: A set of 3 Ubuntu 20.04 servers configured with private networking. Please refer to the guide on How to Create a Private Network to set up private networking for your Vultr servers. Your servers should be in the… Continue Reading
mirrorlist.centos.org no longer available – updating centos 8 repository Rumi, January 18, 2025 mirrorlist.centos.org doesn’t exists anymore. From the .repo file: # The mirror system uses the connecting IP address of the client and the # update status of each mirror to pick mirrors that are updated to and # geographically close to the client. You should use this for CentOS updates #… Continue Reading
Install GoAccess Log Analysis tool on Rocky Linux 9 Rumi, January 18, 2025January 18, 2025 Perform a system update Before installing any packages on the CentOS server instance, it is recommended to update the system. Log in using the sudo user and run the following commands to update the system. sudo yum -y install epel-release sudo yum -y update sudo shutdown -r now Once the… Continue Reading
Setting Up Docker and Docker Compose on Debian 12 Rumi, December 27, 2024 Installing Docker on Debian 12 Before installing Docker, ensure your Debian system is up-to-date with the following command: sudo apt update && sudo apt upgrade -y Once your system is updated, install the necessary packages to allow apt to use a repository over HTTPS: sudo apt install apt-transport-https ca-certificates curl… Continue Reading
Gitlab SMTP settings with Zimbra Mail Rumi, December 22, 2024December 22, 2024 If you would rather send application email via an SMTP server instead of via Sendmail or Postfix, add the following configuration information to /etc/gitlab/gitlab.rb and run gitlab-ctl reconfigure. gitlab_rails[‘smtp_enable’] = true gitlab_rails[‘smtp_address’] = ‘mail.siteage.net’ gitlab_rails[‘smtp_port’] = 465 gitlab_rails[‘smtp_user_name’] = ‘gitlab@domain.com’ gitlab_rails[‘smtp_password’] = ‘password’ gitlab_rails[‘smtp_authentication’] = ‘login’ gitlab_rails[‘smtp_enable_starttls_auto’] = false gitlab_rails[‘gitlab_email_from’]… Continue Reading
Nginx directory list allow Rumi, December 19, 2024 location /somedirectory/ { autoindex on; autoindex_exact_size off; autoindex_format html; autoindex_localtime on; } Continue Reading
Fixing Ubuntu 22 SSH connection problem Rumi, December 18, 2024 Enable this parameter KbdInteractiveAuthentication yes in /etc/ssh/sshd_conf file ubuntu in 22.04 LTS and restart the sshd services it will work Continue Reading
Force User to Change Password at Next Login in Linux Rumi, December 7, 2024 To force a user to change his/her password, first of all the password must have expired and to cause a user’s password to expire, you can use the passwd command, which is used to change a user’s password by specifying the -e or –expire switch along with username as shown. # passwd –expire ravi Next… Continue Reading
Install Proxmox 8 on Debian 12 Rumi, December 7, 2024 Install a standard Debian Bookworm, for details consider the Debian installation guide, and configure a static IP. Note: The Debian installer performs network configuration by IPv6 autoconfiguration and DHCP by default, if available. To force manual network configuration in the UEFI installer, press E and add netcfg/disable_autoconfig=true to the Linux command line. For the… Continue Reading
Running react js on virtualmin server Rumi, November 21, 2024November 22, 2024 Just make sure, you have node, npm andp m2 installed in the server as root administrator. Now, you can run the rest as a virtualmin user in the virtualmin shell account. npm install npm run build npm run dev pm2 start npm — run dev Step-3 will let you know… Continue Reading