File tree Expand file tree Collapse file tree 3 files changed +7
-2
lines changed Expand file tree Collapse file tree 3 files changed +7
-2
lines changed Original file line number Diff line number Diff line change @@ -187,3 +187,8 @@ Licensed under the GNU GPL version 2
187187 # pkg-config --modversion fuse
188188 2.8.4 //看到版本表示安装成功
189189 ```
190+
191+ * 为什么cosfs在正常使用过程中,突然退出了,重新挂载显示"unable to access MOUNTPOINT /path/to/mountpoint: Transport endpoint is not connected"
192+
193+ 如果cosfs不是被强制Kill掉,那么检查机器上的fuse版本是否低于2.9.4,libfuse在低于2.9.4版本的情况下可能会导致cosfs异常退出。
194+ 建议更新fuse版本,或下载cosfs V1.0.2及以上版本。下载地址: https://github.com/tencentyun/cosfs/releases
Original file line number Diff line number Diff line change 1818dnl Process this file with autoconf to produce a configure script.
1919
2020AC_PREREQ ( 2.59 )
21- AC_INIT ( cosfs , 1.0.0 )
21+ AC_INIT ( cosfs , 1.0.2 )
2222AC_CONFIG_HEADER([ config.h] )
2323
2424AC_CANONICAL_SYSTEM
Original file line number Diff line number Diff line change @@ -307,7 +307,7 @@ mimes_t S3fsCurl::mimeTypes;
307307int S3fsCurl::max_parallel_cnt = 10 ; // default
308308off_t S3fsCurl::multipart_size = MULTIPART_SIZE; // default
309309bool S3fsCurl::is_sigv4 = true ; // default
310- const string S3fsCurl::skUserAgent = " tencentyun-cosfs-v5" + string(VERSION);
310+ const string S3fsCurl::skUserAgent = " tencentyun-cosfs-v5- " + string(VERSION);
311311
312312// -------------------------------------------------------------------
313313// Class methods for S3fsCurl
You can’t perform that action at this time.
0 commit comments