簡體   English   中英

無法使用pymongo連接到mongdb docker內部

[英]can't connect inside a mongdb docker with pymongo

所以我在遠程計算機192.168.0.17上用mongodb制作了一個docker容器,我使用以下命令運行該容器:

docker run -t -i -p 27019:27019 mongodb /bin/bash

在容器內,我以用戶炒鍋的方式使用以下選項運行它:

mongod --bind_ip 0.0.0.0 --noauth

這是輸出(我已經創建並授予/ data / db /的權限):

wok@91cf429cfc28:~$ mongod --bind_ip 0.0.0.0 --noauth
warning: bind_ip of 0.0.0.0 is unnecessary; listens on all ips by default
2016-04-08T15:40:08.661+0000 I CONTROL  [initandlisten] MongoDB starting : pid=41 port=27017 dbpath=/data/db 64-bit host=91cf429cfc28
2016-04-08T15:40:08.661+0000 I CONTROL  [initandlisten] db version v3.2.4
2016-04-08T15:40:08.661+0000 I CONTROL  [initandlisten] git version: e2ee9ffcf9f5a94fad76802e28cc978718bb7a30
2016-04-08T15:40:08.661+0000 I CONTROL  [initandlisten] OpenSSL version: OpenSSL 1.0.1f 6 Jan 2014
2016-04-08T15:40:08.661+0000 I CONTROL  [initandlisten] allocator: tcmalloc
2016-04-08T15:40:08.661+0000 I CONTROL  [initandlisten] modules: none
2016-04-08T15:40:08.661+0000 I CONTROL  [initandlisten] build environment:
2016-04-08T15:40:08.661+0000 I CONTROL  [initandlisten]     distmod: ubuntu1404
2016-04-08T15:40:08.661+0000 I CONTROL  [initandlisten]     distarch: x86_64
2016-04-08T15:40:08.661+0000 I CONTROL  [initandlisten]     target_arch: x86_64
2016-04-08T15:40:08.661+0000 I CONTROL  [initandlisten] options: { net: { bindIp: "0.0.0.0" }, security: { authorization: "disabled" } }
2016-04-08T15:40:08.672+0000 I -        [initandlisten] Detected data files in /data/db created by the 'wiredTiger' storage engine, so setting the active storage engine to 'wiredTiger'.
2016-04-08T15:40:08.672+0000 I STORAGE  [initandlisten] wiredtiger_open config: create,cache_size=2G,session_max=20000,eviction=(threads_max=4),config_base=false,statistics=(fast),log=(enabled=true,archive=true,path=journal,compressor=snappy),file_manager=(close_idle_time=100000),checkpoint=(wait=60,log_size=2GB),statistics_log=(wait=0),
2016-04-08T15:40:09.498+0000 I CONTROL  [initandlisten] 
2016-04-08T15:40:09.498+0000 I CONTROL  [initandlisten] ** WARNING: /sys/kernel/mm/transparent_hugepage/enabled is 'always'.
2016-04-08T15:40:09.498+0000 I CONTROL  [initandlisten] **        We suggest setting it to 'never'
2016-04-08T15:40:09.498+0000 I CONTROL  [initandlisten] 
2016-04-08T15:40:09.498+0000 I CONTROL  [initandlisten] ** WARNING: /sys/kernel/mm/transparent_hugepage/defrag is 'always'.
2016-04-08T15:40:09.498+0000 I CONTROL  [initandlisten] **        We suggest setting it to 'never'
2016-04-08T15:40:09.498+0000 I CONTROL  [initandlisten] 
2016-04-08T15:40:09.536+0000 I FTDC     [initandlisten] Initializing full-time diagnostic data capture with directory '/data/db/diagnostic.data'
2016-04-08T15:40:09.536+0000 I NETWORK  [HostnameCanonicalizationWorker] Starting hostname canonicalization worker
2016-04-08T15:40:09.537+0000 I NETWORK  [initandlisten] waiting for connections on port 27017

所以這是我在192.168.0.16計算機上使用pymongo的小腳本:

from pymongo import MongoClient
from datetime import datetime
client = MongoClient("mongodb://192.168.0.17:27019")
db = client.test
result = db.restaurants.insert_one(
    {
        "address": {
            "street": "2 Avenue",
            "zipcode": "10075",
            "building": "1480",
            "coord": [-73.9557413, 40.7720266]
        },
        "borough": "Manhattan",
        "cuisine": "Italian",
        "grades": [
            {
                "date": datetime.strptime("2014-10-01", "%Y-%m-%d"),
                "grade": "A",
                "score": 11
            },
            {
                "date": datetime.strptime("2014-01-16", "%Y-%m-%d"),
                "grade": "B",
                "score": 17
            }
        ],
        "name": "Vella",
        "restaurant_id": "41704620"
    }
)

print(result)

所以我有一個連接被拒絕的錯誤:

Traceback (most recent call last):
  File "/home/bussiere/WorkspaceSafe/testmongo.py", line 28, in <module>
    "restaurant_id": "41704620"
  File "/usr/local/lib/python3.4/dist-packages/pymongo/collection.py", line 622, in insert_one
    with self._socket_for_writes() as sock_info:
  File "/usr/lib/python3.4/contextlib.py", line 59, in __enter__
    return next(self.gen)
  File "/usr/local/lib/python3.4/dist-packages/pymongo/mongo_client.py", line 716, in _get_socket
    server = self._get_topology().select_server(selector)
  File "/usr/local/lib/python3.4/dist-packages/pymongo/topology.py", line 142, in select_server
    address))
  File "/usr/local/lib/python3.4/dist-packages/pymongo/topology.py", line 118, in select_servers
    self._error_message(selector))
pymongo.errors.ServerSelectionTimeout

所以,如果有人有任何想法...問候

我認為您的mongo守護程序正在偵聽端口27017,並且您正在從容器中發布27019。

嘗試: docker run -t -i -p 27019:27017 mongodb /bin/bash

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM