摘要:
```1.切换到root用户sudo su -2.安装NFS服务器所需要的包apt-get install -y nfs-kernel-server3.目录mkdir /data/nfssharechmod 777 /data/nfsshare4.exports/data/nfsshare *(insecure,rw,sync,no_root_squash,no_subtree_check)5.重... 阅读全文
摘要:
```命令代码后边加上/path 2>&1* * * * * /data/a.sh >> /data/a.log 2>&1``` 阅读全文
摘要:
``` 新增 iptables -A INPUT -s 172.28.11.0/24 -d 0.0.0.0/0 -j ACCEPT 保存(非永久开机保存) iptables-save > 123.bak iptables-restore < 123.bak 永久保存可使用 service iptables save service iptables restart 或者使用脚本 ``` 阅读全文
摘要:
```备份指定库exammysqldump --set-gtid-purged=off -uroot -p'test' exam | gzip > exam.sql.gz gunzip exam.sql.gz 还原指定库mysql>source /data/exam.sql备份全部mysqldump --set-gtid-purged=off -uroot -p'test' -A | gzip >... 阅读全文