Harendra Barotharrybdevops.hashnode.dev·Nov 11, 2024How to Free Up Disk Space on a Full Linux SystemCheck Disk Usage ~ Run the following command to identify which partitions are full: df -h ~ Look for the partition with 100% usage, usually /. Clear Temporary Files ~ Free up space by clearing temporary files: sudo rm -rf /var/tmp/* sudo rm -rf...1 likeDisk space Management
vishal raivishalrai.hashnode.dev·Nov 10, 2024🛠️ Prevent 502 Gateway Errors During Pod Scaling with terminationGracePeriodSeconds and preStop Hooks!When running applications on Kubernetes with auto-scaling, you may experience 502 Gateway Errors, particularly when Pods are scaling in response to sudden traffic changes. Here’s how using terminationGracePeriodSeconds and preStop hooks in your Kuber...troubleshooting tips
Willow Stellawillowstella98.hashnode.dev·Jun 24, 2024127.0.0.1:62893: Understanding and Fixing Common ErrorsHave you at any point experienced the strange 127.0.0.1:62893 blunder while exploring the advanced domain? You can definitely relax; you're in good company in this techno labyrinth! In this blog entry, we'll unwind the mysteries behind this confoundi...Common Errors
Vincent Kovincentko.hashnode.dev·Mar 23, 2024Troubleshooting Guide for SSH Password-less LoginUnder normal circumstances, by following the key pair, and adding the public key to the remote server's ~/.ssh/authorized_keys, you can achieve password-less login. However, there may be unexpected situations. Recently, I encountered an issue where e...ssh-keys