今天我第一次用我的新mac电脑。我遵循mongodb.org上的入门指南,直到创建/data/db目录的步骤。顺便说一句,我用的是自制路线。

所以我打开一个终端,我认为我在你所谓的主目录,因为当我按“ls”时,我看到桌面应用程序、电影、音乐、图片、文档和库的文件夹。

所以我做了一个

mkdir -p /data/db

首先,它说许可被拒绝。我不停地尝试了半个小时,最后:

mkdir -p data/db

工作。当我“ls”,一个目录的数据和嵌套在其中的db文件夹确实存在。

然后我启动mongod,它抱怨找不到data/db

我做错什么了吗?

现在我已经完成了

sudo mkdir -p /data/db

当我执行“ls”时,我确实看到了data dir和db dir。在db目录下,什么都没有,当我运行mongod

Sun Oct 30 19:35:19 [initandlisten] exception in initAndListen: 10309 Unable to create/open lock file: /data/db/mongod.lock errno:13 Permission denied Is a mongod instance already running?, terminating
Sun Oct 30 19:35:19 dbexit: 
Sun Oct 30 19:35:19 [initandlisten] shutdown: going to close listening sockets...
Sun Oct 30 19:35:19 [initandlisten] shutdown: going to flush diaglog...
Sun Oct 30 19:35:19 [initandlisten] shutdown: going to close sockets...
Sun Oct 30 19:35:19 [initandlisten] shutdown: waiting for fs preallocator...
Sun Oct 30 19:35:19 [initandlisten] shutdown: lock for final commit...
Sun Oct 30 19:35:19 [initandlisten] shutdown: final commit...
Sun Oct 30 19:35:19 [initandlisten] shutdown: closing all files...
Sun Oct 30 19:35:19 [initandlisten] closeAllFiles() finished
Sun Oct 30 19:35:19 [initandlisten] shutdown: removing fs lock...
Sun Oct 30 19:35:19 [initandlisten] couldn't remove fs lock errno:9 Bad file descriptor
Sun Oct 30 19:35:19 dbexit: really exiting now

编辑 获取错误消息

sudo chown mongod:mongod /data/db

chown: mongod: Invalid argument

谢谢,大家好!


当前回答

创建文件夹。

sudo mkdir -p /data/db/

给自己访问该文件夹的权限。

sudo chown `id -u` /data/db

然后你就可以不用sudo运行mongod了。工作在OSX优胜美地

其他回答

当我试图启动mongodb时,我一直得到以下错误。

"shutting down with code:100" 

我正在使用以下命令:

./mongod --dbpath=~/mongo-data

对我来说,修复是我不需要“=”符号,这导致了错误。所以我做了

./mongod --dbpath ~/mongo-data

我只是想把这个抛到一边因为这个错误并不能说明这就是问题所在。我几乎删除了~/mongo-data目录的内容,看看是否有帮助。很高兴我记得cli参数有时不使用“=”符号。

我在现有的Mongodb设置中遇到了这个问题。我仍然不确定为什么会发生这种情况,但出于某种原因,Mongod进程无法找到Mongod。配置文件。 因为它找不到配置文件,所以它试图在/data/ DB文件夹中找到DB文件,这个文件夹不存在。 然而,配置文件仍然可用,所以我确保该进程具有配置文件的权限,并使用——config标志运行mongod进程,如下所示:

mongod --config /etc/mongod.conf

在配置文件本身,我有这样的设置:

storage:
  dbPath: /var/lib/mongodb

这就是进程如何再次找到真正的DB文件夹。

创建文件夹。

sudo mkdir -p /data/db/

给自己访问该文件夹的权限。

sudo chown `id -u` /data/db

然后你就可以不用sudo运行mongod了。工作在OSX优胜美地

简单说明一下:

If you tried running mongod without changing the permissions first, you'll likely have a mongod.lock file (and some other files) in the /data/db directory. Even after you change the permissions for the /data/db directory to give access to your $USER, you'll continue to get the "Unable to create/open lock file: /data/db/mongod.lock errno:13 Permission denied" error. Run ls -al /data/db and you'll probably see that the permissions for the individual files are still set to root for user, not to your $USER. You should remove the mongod.lock file, and the others as well. Then when you run mongod again, everything should work, and you can verify that the file permissions match the directory permissions by running ls -al again.

确保Linux实例上有足够的磁盘空间。