0
votes
1answer
30 views
mongodb unmet dependencies
When I try to install mongodb (sudo apt-get install mongodb), i get this :
The following packages have unmet dependencies:
mongodb : Depends: mongodb-dev but it is not going to be installed
...
1
vote
3answers
54 views
Check services running on the server and restart them if they have stopped?
I am trying to write a python script which shows me the services which are running on my server.
The thing is that mongodb keeps going down on the server and each time it happens I have to manually ...
3
votes
1answer
152 views
Yum error while installing MongoDB on CentOS?
I am using Centos 6.6 (x86_64)
Trying to install most stable mongodb version available.
but I am stuck with this error (which might seem repeated but none of the previous answers worked for me)
...
0
votes
1answer
130 views
mongodb service wont start, what is default pid for mongodb?
I tried to run mongo db service but it won't start. I get the message
Job for mongod.service failed. See "systemctl status mongod.service" and
"journalctl -xn" for details.
I googled and found that ...
1
vote
2answers
304 views
problem installing mongodb on fedora
I'm trying to install mongodb on fedora 22 and this is the error i get
$ yum search mongo-org
Failed to synchronize cache for repo 'MongoDB' from ...
0
votes
1answer
656 views
Mongodb permissions error after changing data directory
I just installed mongodb version 3.0.3, on Ubuntu. I edited the conf file to change the default data directory to "/home/user/mongodb", and gave it the following permissions:
drwxr-xr-x 4 mongodb ...
1
vote
1answer
88 views
Automate input to the shell of a program
These days many programs like mongodb, docker etc, have there own shell i.e., if you type docker -i it opens an interactive shell (similarly with mongo and other programs).
Is there a way to automate ...
0
votes
0answers
192 views
installing mongodb with linuxbrew
I want to install mongodb with brew in ubuntu 15.04 but despite several attempts to install i can't do that, even if I completely remove homebrew and reinstall it. when i type in terminal :
brew ...
1
vote
1answer
610 views
How do I run a service with numactl
I need to do something like this to run MongoDB
$numactl --interleave=all /usr/bin/mongod --config /etc/mongod.conf &
What should I change to be able to run the mongo daemon with the options ...
2
votes
1answer
398 views
MongoDB will not uninstall
So, it would appear that following the official MongoDB installation instructions when installing on Debian - you're heading for a world of pain. Firstly, it didn't install correctly so now - i'm ...
0
votes
1answer
3k views
After upgrade MongoDB it does not start and log is empty
Can you help me with this problem please? I have updated (apt-get upgrade) my system Debian GNU/Linux 7.6 (wheezy) but for problem with disk space operation failed. After I have released disk space, ...
1
vote
0answers
136 views
MongoDB “service” on clean Redhat can not be started
I just bring up Redhat 6.5 64-bit from AWS and did the below things:
Disabled SELinux
Disabled Iptables
All ports opened in Security Group
Rebooted
Then i just followed, both of the below ...
2
votes
2answers
3k views
Get running status of mongodb
Having a script where I start/stop various services depending on what I need. For example Apache, BIND, MySQL, PostFix, Memcached, Tomcat, ... and so on.
Depending on status options to script etc. ...
0
votes
0answers
458 views
Easy way to push data into MongoDB from Bash shell script?
I know you can create a Javascript file that the MongoDB shell will execute upon startup. But I'm hoping for something more "lightweight" than that. I am using a Linux program that has a scripting ...