Linux autofs技术小结

网友投稿 950 2022-09-02

Linux autofs技术小结

Linux autofs技术小结

1.autofs安装

#yum install autofs –y

2.编辑文件

#cat /etc/auto.master | grep -i "pgmcifs"/- /etc/auto.pgmcifs#cat /etc/auto.pgmcifs/home/PGM/Server -fstype=cifs,rw,domain=.,username=username,password=password,sec=ntlmssp,uid=2011,gid=5001,file_mode=0755,dir_mode=0755,vers=3.0 ://xx.xx.xx.xxx/Server

3.重启autofs

#systemctl enable autofs.service#systemctl restart autofs.service

针对autofs开启日志,打开autofs日志后,日志会打印到/var/log/message下。

#vi /etc/autofs.conflogging = debug

#systemctl restart autofs.service

重启autofs生效

针对autofs网络抓包,enp0s8为实际的网卡名称。

#tcpdump -i enp0s8 -w /tmp/tcpdump.cap &

6.重启重现时候停止脚本,脚本每隔十分钟检查一次是否重现问题,如果重现问题,则kill掉tcpdump命令。

#chmod +x /home/tcpdump.sh#cat /home/tcpdump.sh#!/bin/shcd /home/PGM/Server > /dev/null 2>&1if [[ $? -ne 0 ]];then kill -9 `ps -ef | grep tcpdump | grep -v grep | awk -F ' ' {'print $2'}`ficd /#crontab –l*/10 * * * * /home/tcpdump.sh

7.autofs配置timeout参数,如果TIMEOUT=0,则表示umount掉挂在目录,默认TIMEOUT=300,表示默认5分钟umount掉挂载掉

#cat /etc/autofs.conf | grep -w timeout | grep -v "#"timeout = 300

该设置需要重启autofs生效。

#systemctl restart autofs.service

Linux

版权声明:本文内容由网络用户投稿,版权归原作者所有,本站不拥有其著作权,亦不承担相应法律责任。如果您发现本站中有涉嫌抄袭或描述失实的内容,请联系我们jiasou666@gmail.com 处理,核实后本网站将在24小时内删除侵权内容。

上一篇:PHP中的这些坑,你没踩过算你厉害(为什么php)
下一篇:Sql Server判断数据库、表、存储过程、函数是否存在
相关文章

 发表评论

暂时没有评论,来抢沙发吧~