标签:config autot use 环境安装 com gen ssl 适用于 info
环境安装CentOS 系统下安装环境依赖包方法:
sudo yum install automake gcc-c++ git libcurl-devel libxml2-devel fuse-devel make openssl-devel
注意在 centos6.5 及较低版本,可能会提示 fuse 版本太低,在安装过程的 configure 操作时返回
checking for common_lib_checking... configure: error: Package requirements (fuse >= 2.8.4 libcurl >= 7.0 libxml-2.0 >= 2.6) were not met:
Requested ‘fuse >= 2.8.4‘ but version of fuse is 2.8.3
此时,您需要来手动安装 fuse 版本,具体命令如下:
#yum remove -y fuse-devel
#wget https://github.com/libfuse/libfuse/releases/download/fuse_2_9_4/fuse-2.8.4.tar.gz
#tar -zxvf fuse-2.8.4.tar.gz
#cd fuse-2.8.4
#./configure
#make
#make install
#export PKG_CONFIG_PATH=/usr/lib/pkgconfig:/usr/lib64/pkgconfig/:/usr/local/lib/pkgconfig
#modprobe fuse
#echo "/usr/local/lib" >> /etc/ld.so.conf
#ldconfig
#pkg-config --modversion fuse
2.8.4 //看到版本表示安装成功
使用方法
进入到该目录,编译安装:
cd /usr/cosfs
./autogen.sh
./configure
make
sudo make install
其中:
bucketname/ SecretId/ SecretKey 需要替换为用户的真实信息。
bucketname 形如 bucketprefix-123456789, 更多关于 bucketname 的命名规范,请参见 存储桶命名规范。
示例:
echo bucketprefix-123456789:AKID8ILGzYjHMG8zhGtnlX7Vi4KOGxRqg1aa:LWVJqIagbFm8IG4sNlrkeSn5DLI3dCYi > /etc/passwd-cosfs
chmod 640 /etc/passwd-cosfs
其中:
your-bucketname 需要替换为用户真实的信息;
your-mount-point 替换为本地需要挂载的目录(如 /mnt);
cos-domain-name 为存储桶对应的访问域名,形式为 http://cos.<Region>.myqcloud.com (适用于XML API),其中 为地域简称,如: ap-guangzhou 、 eu-frankfurt 等。更多地域信息,请查阅 可用地域。
-odbglevel 参数表示信息级别,可选 info、dbg,建议参照示例设置为“info”。
标签:config autot use 环境安装 com gen ssl 适用于 info
原文地址:http://blog.51cto.com/somethingshare/2339431