centos 使用sshfs快速搭建文件共享服务 看了很多教程都写的不够完整所以自己根据实际操作找遇到的坑共享一下给大家
共享文件服务器必须打开ssh服务器
实例:IP192.168.7.50 yum -y install epel-release # 安装epel 源码 yum -y install fuse-sshfs # 安装sshfs sshfs -o allow_other,nonempty root@192.168.7.205:/opt/ /opt/http 指定密钥文件 sshfs -o allow_other,nonempty ,IdentityFile=~/.ssh/id_rsa_storm1 root@192.168.7.205:/opt/ /opt/http 开机启动就添加映射 vim /etc/fstab sshfs#root@192.168.7.205:/opt/ /opt/http fuse defaults,auto,allow_other,nonempty,IdentityFile=~/.ssh/id_rsa_storm1 0 0 也可以修改/etc/ssh/ssh_config 指定ssh使用私钥文件 添加 sed -i "/# Port 22/i\IdentityFile ~\/.ssh\/id_rsa_storm1" /etc/ssh/ssh_config ssh 密钥生成 ssh-keygen 输入:id_rsa_storm1 copy 公钥到远程服务器 ssh-copy-id -i root@192.168.7.25 注意:如果要使用web服务能够访问共用目录一定要添加allow_other 参数
本文出自 “成长记录” 博客,请务必保留此出处http://juestnow.blog.51cto.com/1515305/1878984
原文地址:http://juestnow.blog.51cto.com/1515305/1878984