首页 > 代码库 > centos 使用sshfs快速搭建文件共享服务
centos 使用sshfs快速搭建文件共享服务
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
centos 使用sshfs快速搭建文件共享服务
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。