UPload 失败
不知道为什么,这几天FAST DFS upload 不行了,但是用HTTP下载是没有问题的。有这样的错误:
[root@localhost src]# java -cp fastdfs_client_v1.8.jar org.csource.fastdfs.TestClient fdfs_client.conf /opt/test1.txt
java.version=1.4.2
network_timeout=20000ms
charset=ISO8859-1
file length: 14
java.lang.Exception: getStoreStorage fail, errno code: 2
at org.csource.fastdfs.StorageClient.newWritableStorageConnection(StorageClient.java:659)
at org.csource.fastdfs.StorageClient.do_upload_file(StorageClient.java:143)
at org.csource.fastdfs.StorageClient.upload_file(StorageClient.java:102)
at org.csource.fastdfs.TestClient.main(TestClient.java:86)
用http:
[root@localhost src]# /usr/local/bin/fdfs_test /etc/fdfs/storage.conf upload /opt/test1.txt
This is FastDFS client test program v1.21
Copyright (C) 2008, Happy Fish / YuQing
FastDFS may be copied only under the terms of the GNU General
Public License V3, which may be found in the FastDFS source kit.
Please visit the FastDFS Home Page http://www.csource.org/
for more detail.
[2009-11-11 11:30:26] ERROR - file: ../common/ini_file_reader.c, line: 191, include file "http.conf" not exists, line: "#include http.conf"
[2009-11-11 11:30:26] ERROR - load conf file "/etc/fdfs/storage.conf" fail, ret code: 2
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(8)
第一个问题,storage server没有正常运行起来吧?你看一下storage server的日志文件。
另外,建议使用最新的java API,目前版本是V1.11。
第二个问题,配置文件的问题。将storage.conf中的
#include http.conf
前面再加一个#将其注释掉。
估计storage server不能正常启动,也是这个原因。
建议将FastDFS server端升级到V1.22。
[2009-11-13 09:26:12] INFO - FastDFS v1.22, base_path=/home/data/fastdfs, network_timeout=60s, port=22122, bind_addr=, max_connections=256, store_lookup=2, store_group=, store_server=0, store_path=0, reserved_storage_space=2048MB, download_server=0, allow_ip_count=-1, sync_log_buff_interval=10s, check_active_interval=120s, thread_stack_size=1024 KB
[2009-11-13 09:26:12] INFO - HTTP supported: server_port=80, default_content_type=application/octet-stream, anti_steal_token=0, token_ttl=0s, anti_steal_secret_key length=0, token_check_fail content_type=, token_check_fail buff length=0
我把Fast DFS 都升成1.22了,java API也是最新的1.11 但还是上传不了,
[root@localhost src]# java -cp fastdfs_client_v1.11.jar org.csource.fastdfs.TestClient fdfs_client.conf /opt/test1.txt
Exception in thread "main" java.lang.NoClassDefFoundError: org.csource.fastdfs.TestClient
at gnu.java.lang.MainThread.run(libgcj.so.7rh)
Caused by: java.lang.ClassNotFoundException: org.csource.fastdfs.TestClient not found in gnu.gcj.runtime.SystemClassLoader{urls=[file:fastdfs_client_v1.11.jar], parent=gnu.gcj.runtime.ExtensionClassLoader{urls=[], parent=null}}
at java.net.URLClassLoader.findClass(libgcj.so.7rh)
at gnu.gcj.runtime.SystemClassLoader.findClass(libgcj.so.7rh)
at java.lang.ClassLoader.loadClass(libgcj.so.7rh)
at java.lang.ClassLoader.loadClass(libgcj.so.7rh)
at gnu.java.lang.MainThread.run(libgcj.so.7rh)
是那里出现问题了呢?
配置文件的问题。将storage.conf中的
#include http.conf
前面再加一个#将其注释掉。
这个早已经是注释了的,原来用http upload 都是可以的,
我看过里面配置也是对的
V1.11开始,对class的存放路径进行了调整。
原来的类名:org.csource.fastdfs.TestClient
新的类名:org.csource.fastdfs.test.TestClient
你的执行脚本改为:
java -cp fastdfs_client_v1.11.jar org.csource.fastdfs.test.TestClient fdfs_client.conf /opt/test1.txt
你参照README中的说明进行操作即可。
哦,原来是这样,
现在测试可以了,太谢谢fish兄了。都怪自已没有看说明,谢谢!
顺便说一声,大家storage跟tracker或者storage跟storage互联不了,大家注意防火墙。
问一问fish兄,Fast DFS 上传的文件有没有限制大少的呢?几百M的东西能上传吗?
对于文件大小,FastDFS本身没有做限制,可以上传的。
好的,知道了,太谢谢你啦