blog.udhay.devHow to Update the Node.js Version in a PM2 InstanceUpdating the Node.js version in a PM2-managed application requires a few key steps to ensure a smooth transition without losing your process state. Follow these steps to update Node.js while keeping your PM2 processes intact. Step 1: Save the Current...Feb 21, 2025·2 min read
blog.udhay.devReset user password in MySQLLet's see how to reset the MySQL user password. I am using the below commands to reset the MySQL root user password in the Ubuntu 22 LTS. Stop the MySQL by the following commands sudo systemctl stop mysql sudo /etc/init.d/mysql stop Run the mysq...Oct 17, 2024·2 min read
blog.udhay.devHow to Set Up Vmmon and Vmnet Modules in VMware Workstation for UbuntuAre you facing the below error when installing the vmware modules in Vmware workstation? I followed the instructions to install those modules from this GitHub repo. Find the vmware version installed To find version of the vmware installed, run th...Oct 9, 2024·2 min read
blog.udhay.devHAProxy Basic AuthenticationYou can secure access to private or protected sites in HAProxy by enabling basic authentication, which prompts users for a username and password. Steps for Setting Up Basic Authentication: Create User Details: In /etc/haproxy/haproxy.cfg, add the us...Sep 27, 2024·1 min read