我在/usr/local/ampps/
目录中的ubuntu中启动并运行了AMPPS。
我想使用AMPPS中可用的MongoDB-我已经从AMPPS控制面板启动了MongoDB服务器。
但是我无法从终端使用它,我在/usr/local/ampps/mongodb/bin/
目录中,当我使用./mongo db mydb
时,我得到:
MongoDB shell version: 3.2.0
connecting to: use
2016-10-04T09:29:04.921+0330 E - [main] file [mydb] doesn't exist
failed to load: mydb
如何从终端使用mongoDB?
仅供参考:我以这种方式在终端使用AMPPS运行的mysql:
cd /usr/local/ampps/mysql/bin/
./mysql -u root -p
而且我能够从终端使用mysql。
最佳答案
我想出了如何做到这一点,只是在AMPPS文件夹中使用cd:
cd /usr/local/ampps/mongodb/bin
然后运行:
./mongo
你会得到这样的东西:
MongoDB shell version: 3.2.0
connecting to: test
Welcome to the MongoDB shell.
For interactive help, type "help".
For more comprehensive documentation, see
http://docs.mongodb.org/
Questions? Try the support group
http://groups.google.com/group/mongodb-user
Server has startup warnings:
2016-10-04T09:08:12.567+0330 I CONTROL [main] ** WARNING: --rest is specified without --httpinterface,
2016-10-04T09:08:12.567+0330 I CONTROL [main] ** enabling http interface
2016-10-04T09:08:38.127+0330 I CONTROL [initandlisten] ** WARNING: You are running this process as the root user, which is not recommended.
2016-10-04T09:08:38.127+0330 I CONTROL [initandlisten]
2016-10-04T09:08:38.127+0330 I CONTROL [initandlisten]
2016-10-04T09:08:38.127+0330 I CONTROL [initandlisten] ** WARNING: /sys/kernel/mm/transparent_hugepage/enabled is 'always'.
2016-10-04T09:08:38.127+0330 I CONTROL [initandlisten] ** We suggest setting it to 'never'
2016-10-04T09:08:38.127+0330 I CONTROL [initandlisten]
2016-10-04T09:08:38.127+0330 I CONTROL [initandlisten] ** WARNING: /sys/kernel/mm/transparent_hugepage/defrag is 'always'.
2016-10-04T09:08:38.127+0330 I CONTROL [initandlisten] ** We suggest setting it to 'never'
2016-10-04T09:08:38.127+0330 I CONTROL [initandlisten]
>
如您所见,您可以在
>
前面键入命令,例如:> show dbs
admin 0.078GB
local 0.078GB
mydb 0.078GB
>
关于mysql - 在ubuntu中由AMPPS运行的终端中使用MongoDB,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/39845157/