Recent posts

Install ISCSI storage on Centos 7

less than 1 minute read

iscsi-initiator-client-setup yum -y install nano systemctl stop firewalld systemctl disable firewalld nano /etc/sysconfig/selinux SELINUX=disabled shut...

How to quickly resync mysql slave

less than 1 minute read

On master Dump databases: mysqldump --master-data -u user -ppassword dbname | gzip -1 > dbname.sql.gz Dump on disk to release the locks on the master...