You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Error while mounting KFS directory using FUSE ?
./kfs_fuse /media/hugedisk/KFS/mountkfs -f
kfs_fuse: /usr/include/boost/smart_ptr/shared_ptr.hpp:418: T*
boost::shared_ptr< <template-parameter-1-1> >::operator->() const [with T =
KFS::KfsClient]: Assertion `px != 0' failed.
Aborted
What version of the product are you using? On what operating system?
Im using kosmosfs .5 version on Ubuntu 10.04 64 bit ..
Original issue reported on code.google.com by swap4uma...@gmail.com on 10 Jun 2011 at 12:33
The text was updated successfully, but these errors were encountered:
I had the same issue. my kfs.prp file was as follows (copied from
http://sourceforge.net/apps/trac/kosmosfs/wiki/UsingWithFUSE)
metaServer.host = localhost
metaServer.port = 20000
After having a look at the code src/cc/libkfsClient/KfsClient.cc:
KfsClientPtr
KfsClientFactory::GetClient(const char *propFile)
{
bool verbose = false;
#ifdef DEBUG
verbose = true;
#endif
if (theProps().loadProperties(propFile, '=', verbose) != 0) {
KfsClientPtr clnt;
return clnt;
}
return GetClient(theProps().getValue("metaServer.name", ""),
theProps().getValue("metaServer.port", -1));
}
I changed the kfs.prp file to:
metaServer.name = localhost
metaServer.port = 20000
and it all worked fine.
Original comment by m...@robertobruggemann.com on 23 Oct 2011 at 11:01
Original issue reported on code.google.com by
swap4uma...@gmail.com
on 10 Jun 2011 at 12:33The text was updated successfully, but these errors were encountered: