Failed to connect to 127.0.0.1:27017, reason: errno:111 Connection refused

前端 未结 27 2529
孤街浪徒
孤街浪徒 2020-12-12 15:06

while trying this mongo command in ubuntu I am getting this error.

    ritzysystem@ritzysystem-Satellite-L55-A:~$ mongo
    MongoDB shell version: 2.6.1
             


        
27条回答
  •  自闭症患者
    2020-12-12 15:21

    I think except for disk space issuse, you should check the log in /var/log/mongodb to know the details for why mongodb start failed.

    cat /var/log/mongodb/mongod.log
    
    2016-06-26T15:26:26.642+0800 I CONTROL  [main] ***** SERVER RESTARTED *****
    2016-06-26T15:26:26.649+0800 I CONTROL  [initandlisten] MongoDB starting : pid=8130 port=27017 dbpath=/var/lib/mongodb 64-bit host=hadoop-master
    2016-06-26T15:26:26.649+0800 I CONTROL  [initandlisten] db version v3.2.7
    2016-06-26T15:26:26.649+0800 I CONTROL  [initandlisten] git version: 4249c1d2b5999ebbf1fdf3bc0e0e3b3ff5c0aaf2
    2016-06-26T15:26:26.649+0800 I CONTROL  [initandlisten] OpenSSL version: OpenSSL 1.0.1f 6 Jan 2014
    2016-06-26T15:26:26.649+0800 I CONTROL  [initandlisten] allocator: tcmalloc
    2016-06-26T15:26:26.649+0800 I CONTROL  [initandlisten] modules: none
    2016-06-26T15:26:26.649+0800 I CONTROL  [initandlisten] build environment:
    2016-06-26T15:26:26.649+0800 I CONTROL  [initandlisten]     distmod: ubuntu1404
    2016-06-26T15:26:26.649+0800 I CONTROL  [initandlisten]     distarch: x86_64
    2016-06-26T15:26:26.649+0800 I CONTROL  [initandlisten]     target_arch: x86_64
    2016-06-26T15:26:26.649+0800 I CONTROL  [initandlisten] options: { config: "/etc/mongod.conf", net: { bindIp: "127.0.0.1,192.168.3.10", port: 27017 }, storage: { dbPath: "/var/lib/mongodb", journal: { enabled: true } }, systemLog: { destination: "file", logAppend: true, path: "/var/log/mongodb/mongod.log" } }
    2016-06-26T15:26:26.678+0800 E NETWORK  [initandlisten] Failed to unlink socket file /tmp/mongodb-27017.sock errno:1 Operation not permitted
    2016-06-26T15:26:26.678+0800 I -        [initandlisten] Fatal Assertion 28578
    2016-06-26T15:26:26.678+0800 I -        [initandlisten] 
    
    ***aborting after fassert() failure
    

    So, here I need to rm all the files in the /tmp. That works fine for me.

提交回复
热议问题