Git Product home page Git Product logo

gridfs-fuse's Introduction

GridFS FUSE

Allows you to mount a MongoDB GridFS instance as a local filesystem.

Requirements

  • MongoDB 1.6+
  • FUSE
  • Boost

Building

$ make

Usage

$ ./mount_gridfs --db=db_name --host=localhost mount_point

Current Limitations

  • No directories
  • No permissions or Mongo authentication
  • File creation/writing very experimental

gridfs-fuse's People

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

gridfs-fuse's Issues

Cannot find -lfuse_ino64 and -lmongoclient when compiling

I trying to compile gridfs-fuse and get some errors:

root@z11:/111/gridfs-fuse# make
g++ -o mount_gridfs main.o operations.o options.o local_gridfile.o -L/usr/local/lib -L. -lmongoclient -lfuse_ino64 >-lboost_thread-mt -lboost_filesystem-mt -lboost_system-mt
/usr/bin/ld: cannot find -lmongoclient
/usr/bin/ld: cannot find -lfuse_ino64
collect2: ld returned 1 exit status
make: *** [mount_gridfs] Error 1
root@z11:
/111/gridfs-fuse#

What shall I do to compile it correctly?

Error on "‘off_t’ has not been declared"

I'm curious if anyone has come across "‘off_t’ has not been declared" error, here's the dump i got:

g++ -g -D_FILE_OFFSET_BITS=64 -I. -I/usr/local/include -c local_gridfile.cpp
In file included from local_gridfile.cpp:1:0:
local_gridfile.h:31:44: error: ‘off_t’ has not been declared
local_gridfile.h:32:36: error: ‘off_t’ has not been declared
local_gridfile.cpp:7:5: error: prototype for ‘int LocalGridFile::write(const char_, size_t, off_t)’ does not match any in class ‘LocalGridFile’
In file included from local_gridfile.cpp:1:0:
local_gridfile.h:31:7: error: candidate is: int LocalGridFile::write(const char_, size_t, int)
local_gridfile.cpp:46:5: error: prototype for ‘int LocalGridFile::read(char_, size_t, off_t)’ does not match any in class ‘LocalGridFile’
In file included from local_gridfile.cpp:1:0:
local_gridfile.h:32:7: error: candidate is: int LocalGridFile::read(char_, size_t, int)
make: *** [local_gridfile.o] Error 1

I'm willing to fix it, but i'm at a lost.

Error: can't find library: mongoclient

When I try to build with scons I get:

Error: can't find library: mongoclient

I've tried copying the contents of mongodb/lib and mongodb/include/mongo/client to my gridfs-fuse dir before building and that doesn't help. Any ideas?

FreeBSD compilation

Changes required to compile it under freebsd ( mabe other *BSD systems )

-LDOPTS=-L/usr/local/lib -L. -lmongoclient -lfuse_ino64 -lboost_thread-mt -lboost_filesystem-mt -lboost_system-mt
+LDOPTS=-L/usr/local/lib -L. -lmongoclient -lfuse -lboost_thread -lboost_filesystem -lboost_system

Tested under:
FreeBSD 8.1-RELEASE #6: Sat May 21 21:46:12 CEST 2011 amd64

MongoDB, Boost-* from freebsd ports collection.

Linux build issues...

There are a couple problems I had building in Linux.

  1. sys/types.h
  2. boost libraries with -mt suffixes (which aren't necessary -- see the comments on this issue: https://bugs.archlinux.org/task/22471)

This patch fixes the problems:

diff --git a/Makefile b/Makefile
index e73c523..f0c600d 100644
--- a/Makefile
+++ b/Makefile
@@ -1,6 +1,6 @@
 CC=g++
 CCOPTS=-g -D_FILE_OFFSET_BITS=64 -I. -I/usr/local/include
-LDOPTS=-L/usr/local/lib -L. -lmongoclient -lfuse_ino64 -lboost_thread-mt -lboost_filesystem-mt -lboost_system-mt
+LDOPTS=-L/usr/local/lib -L. -lmongoclient -lfuse -lboost_thread -lboost_filesystem -lboost_system

 mount_gridfs : operations.o local_gridfile.o main.o options.o
    $(CC) -o mount_gridfs main.o operations.o options.o local_gridfile.o $(LDOPTS)
diff --git a/local_gridfile.h b/local_gridfile.h
index 2353a1a..70e48b0 100644
--- a/local_gridfile.h
+++ b/local_gridfile.h
@@ -1,6 +1,7 @@
 #ifndef _LOCAL_GRIDFILE_H
 #define _LOCAL_GRIDFILE_H

+#include "sys/types.h"
 #include <vector>
 #include <cstring>
 #include <iostream>

Status of this project?

Hi, is there a successor to this project? There hasn't been much recent activity. Thanks!

undefined reference to `boost::system::get_generic_category()

I'm trying to compile this on Debian Lenny 5.0 and I'm getting the following output when I try to compile:

scons: Reading SConscript files ...
Checking for C library mongoclient... yes
Checking for C library fuse... yes
Checking for C library boost_thread-mt... yes
Checking for C library boost_filesystem-mt... yes
Checking for C library boost_system-mt... yes
scons: done reading SConscript files.
scons: Building targets ...
g++ -o main.o -c -D_FILE_OFFSET_BITS=64 main.cpp
g++ -o operations.o -c -D_FILE_OFFSET_BITS=64 operations.cpp
g++ -o options.o -c -D_FILE_OFFSET_BITS=64 options.cpp
g++ -o local_gridfile.o -c -D_FILE_OFFSET_BITS=64 local_gridfile.cpp
g++ -o mount_gridfs main.o operations.o options.o local_gridfile.o -lmongoclient -lfuse -lboost_thread-mt -lboost_filesystem-mt -lboost_system-mt
/usr/lib/gcc/x86_64-linux-gnu/4.3.2/../../../../lib/libmongoclient.a(jsobj.o): In function __static_initialization_and_destruction_0(int, int)': (.text+0x58bf): undefined reference toboost::system::get_generic_category()'
/usr/lib/gcc/x86_64-linux-gnu/4.3.2/../../../../lib/libmongoclient.a(jsobj.o): In function __static_initialization_and_destruction_0(int, int)': (.text+0x58cb): undefined reference toboost::system::get_generic_category()'
/usr/lib/gcc/x86_64-linux-gnu/4.3.2/../../../../lib/libmongoclient.a(jsobj.o): In function __static_initialization_and_destruction_0(int, int)': (.text+0x58d7): undefined reference toboost::system::get_generic_category()'
/usr/lib/gcc/x86_64-linux-gnu/4.3.2/../../../../lib/libmongoclient.a(json.o): In function __static_initialization_and_destruction_0(int, int)': (.text+0x61): undefined reference toboost::system::get_generic_category()'
/usr/lib/gcc/x86_64-linux-gnu/4.3.2/../../../../lib/libmongoclient.a(json.o): In function __static_initialization_and_destruction_0(int, int)': (.text+0x6d): undefined reference toboost::system::get_generic_category()'
/usr/lib/gcc/x86_64-linux-gnu/4.3.2/../../../../lib/libmongoclient.a(json.o):(.text+0x79): more undefined references to `boost::system::get_generic_category()' follow
collect2: ld returned 1 exit status
scons: *** [mount_gridfs] Error 1
scons: building terminated because of errors.

I am using the libboost1.35-dev libraries

MongoDB source tree / compiling problems

I am trying to compile the wwoods fork of gridfs-fuse in an Ubuntu server with the lastest stable version of MongoDB, but I am getting the following error:

operations.cpp:30:36: error: mongo/util/hostandport.h: No such file or directory

I noticed that that file is in the "mongo/util/net" directory instead of "mongo/util".

Maybe something need to be updated in order to work with this version of MongoDB?

install error

Try to install:
boost_1_48_0
fuse-2.8.6
mongodb-linux-x86_64-2.0.0
CentOS release 5.5

Error occur :
g++ -o mount_gridfs main.o operations.o options.o local_gridfile.o -L/usr/local/lib -L. -lmongoclient -lfuse_ino64 -lboost_thread-mt -lboost_filesystem-mt -lboost_system-mt
/usr/bin/ld: cannot find -lmongoclient
collect2: ld returned 1 exit status

Got this error when I compile the code, how can I fix that ?

g++ -o mount_gridfs main.o operations.o options.o local_gridfile.o -L/usr/local/lib -L. -lmongoclient -lfuse_ino64 -lboost_thread-mt -lboost_filesystem-mt -lboost_system-mt
/usr/bin/ld: cannot find -lmongoclient
collect2: ld returned 1 exit status
make: *** [mount_gridfs] Error 1

where to get libfuse_ino64 (Ubuntu 10.04) ?

I solved all the dependencies.
Just the last won't to give up!

g++ -o mount_gridfs main.o operations.o options.o local_gridfile.o -L/usr/local/lib -L. -lmongoclient -lfuse_ino64 -lboost_thread-mt -lboost_filesystem-mt -lboost_system-mt
/usr/bin/ld: cannot find -lfuse_ino64
collect2: ld returned 1 exit status

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.