centos安装s3fs
时间: 2023-11-15 14:57:16 浏览: 190
centos安装
好的,以下是 centos 安装 s3fs 的步骤:
1. 安装依赖库
```
sudo yum install -y automake fuse fuse-devel gcc-c++ git libcurl-devel libxml2-devel make openssl-devel
```
2. 下载 s3fs 源码
```
git clone https://github.com/s3fs-fuse/s3fs-fuse.git
cd s3fs-fuse
```
3. 编译并安装 s3fs
```
./autogen.sh
./configure --prefix=/usr --with-openssl
make
sudo make install
```
4. 配置 s3fs
```
echo ACCESS_KEY_ID:SECRET_ACCESS_KEY > ~/.passwd-s3fs
chmod 600 ~/.passwd-s3fs
```
5. 挂载 S3 存储桶
```
mkdir /mnt/s3
s3fs bucket-name /mnt/s3 -o passwd_file=~/.passwd-s3fs
```
其中,ACCESS_KEY_ID 和 SECRET_ACCESS_KEY 是你的 AWS 访问密钥 ID 和访问密钥。
阅读全文