Email: inbox [at] sysadmin.lk
LinkedIn: https://www.linkedin.com/in/prabatht
Facebook: https://www.facebook.com/prabath.hinoize
Related Articles
Mount SSHFS In Redhat / CentoS
Step 1 – Enabling the kernel module This is a simple step – all you need to do is run the following command as the root user: modprobe fuse Step 2 – Installing Fuse/SSHFS yum install fuse-sshfs sshfs Step 3 – Using SSHFS The commands to use SSHFS are fairly simple. To mount a remote […]
Important Linux Commands
### Check Inode usage for i in /*; do echo $i; find $i |wc -l; done ### How do you empty a linux directory with a large size/number of files? -bash: /bin/rm: Argument list too long find . -name “*” | xargs -n 10 rm
MySQL Master-Master Replication Bug – ERROR 1872
Description: When i tried to configurate a crash safe slave with MTS and GTID based replication, but after a OS crash replication failed to be start. error log: ——————————— 2016-10-26 21:00:23 2699 [Warning] Neither –relay-log nor –relay-log-index were used; so replication may break when this MySQL server acts as a slave and has his hostname […]