Sometimes when we ssh to Linux box, we get this error “WARNING: Your password has expired.” You must change your password now and login again! Changing password for user ocp. Changing password for ocp.” What does “WARNING: Your password has expired.” mean? That means the password for this account expired. We need to change the …
Linux
Rp_filter is short for reverse path filtering on Linux. We can use this to filter packets on Linux. Here are 5 common questions about rp_filter. What is reverse path filtering? Reverse path filtering is a mechanism adopted by the Linux kernel, as well as most of the networking devices out there to check whether a …
NFS performance is important for the production environment. In this tutorial, we will review how to use DD command to test local storage and NFS storage performance. Test nfs storage performance on Linux There are some differences between each testing command. We choose dd command in the following example. dd – without conv=fsync or oflag=direct. …
A system is having a single core, and if there is a single process consuming all the CPU Time, then CPU utilization will show 100% utilization. But in case of multi core systems it is not necessary that all the CPU’s are been used for running all processes. In such cases uneven CPU utilization across …
Linux monitoring is not an easy task for Linux admins. Luckily we have open-source software to monitor these metrics now. Today we are going to learn Linux metrics we can monitor using this monitor bundle Telegraf/Influxdb/Grafana. We can monitor the following metrics with TIG system. Monitor Basic OS metrics For Linux system Monitor Application Metrics …
Troubleshooting a slow network issue on Linux is not an easy task. We are going to dive into this issue with network metrics. Setting up a monitor on each network metric can help us speed up the troubleshooting process. Hope this post can give you more ideas on how to fix a slow network issue …
This article is part of the following series. 6 performance tools you should know in Linux 5 Ways to Check disk size in Linux 4 Ways to Check Disk Partition with Examples in Linux How I Fixed a disk performance issue in Minutes – A Step by Step Guide to Optimize Linux System High …
This is a true story based on my own experience. For anyone who seriously needs a web hosting or a website, please take 2 minutes to read it. I am pretty sure that this will save you at least days even weeks, especially for new website starters. For 2020, it is a different time for …
actimeo is a common NFS mount option in Linux. actimeo=0 can make a big performance difference in the production environment. What does actimeo mean in nfs mount? The “actimeo=0” option means turn attribute caching off. The actimeo option actually makes the time duration the nfs client holds the various cache attributes like “acregmin”,”acregmax”,”acdirmin” and “acdirmax” …