centos 使用sshfs快速搭建文件共享服务
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了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 [email protected]:/opt/ /opt/http 指定密钥文件 sshfs -o allow_other,nonempty ,IdentityFile=~/.ssh/id_rsa_storm1 [email protected]:/opt/ /opt/http 开机启动就添加映射 vim /etc/fstab sshfs#[email protected]:/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 [email protected] 注意:如果要使用web服务能够访问共用目录一定要添加allow_other 参数
本文出自 “成长记录” 博客,请务必保留此出处http://juestnow.blog.51cto.com/1515305/1878984
以上是关于centos 使用sshfs快速搭建文件共享服务的主要内容,如果未能解决你的问题,请参考以下文章