Не удается подключить Mongodb через Redash - PullRequest
0 голосов
/ 24 мая 2019

Я пытаюсь подключиться к mongodb для восстановления с локальной машины.

1) Монго и redash находятся в автономной системе.
2) Я могу подключиться к Монго из терминала. Пожалуйста, смотрите детали моего терминала после того, как я войду в него.

rahul@rahul-VirtualBox:~$ mongo -u rahul -p
MongoDB shell version v3.6.3
Enter password: 
connecting to: mongodb://127.0.0.1:27017
MongoDB server version: 3.6.3
Server has startup warnings: 
2019-05-24T20:05:14.788+0530 I STORAGE  [initandlisten] 
2019-05-24T20:05:14.788+0530 I STORAGE  [initandlisten] ** WARNING: Using the XFS filesystem is strongly recommended with the WiredTiger storage engine
2019-05-24T20:05:14.788+0530 I STORAGE  [initandlisten] **          See http://dochub.mongodb.org/core/prodnotes-filesystem
2019-05-24T20:05:16.607+0530 I CONTROL  [initandlisten] 
2019-05-24T20:05:16.607+0530 I CONTROL  [initandlisten] ** WARNING: Access control is not enabled for the database.
2019-05-24T20:05:16.607+0530 I CONTROL  [initandlisten] **          Read and write access to data and configuration is unrestricted.
2019-05-24T20:05:16.607+0530 I CONTROL  [initandlisten] 
> show dbs
admin   0.000GB
config  0.000GB
local   0.000GB
>

3) Я использую Ubuntu 16.04 в качестве моей ОС.
4) Данные, которые я ввожу для подключения к Mongo, используя redash

Имя: Localhost_mongo
Соединение Строка: MongoDB: // Рахул: password@127.0.0.1: 27017
Имя базы данных: admin

5) Я получаю ошибку connection refused err no:111
6) Ниже приведены данные моего конфигурационного файла и расположение: /etc/mongodb.conf

# mongodb.conf

# Where to store the data.
dbpath=/var/lib/mongodb

#where to log
logpath=/var/log/mongodb/mongodb.log

logappend=true

bind_ip = 0.0.0.0
port = 27017

# Enable journaling, http://www.mongodb.org/display/DOCS/Journaling
journal=true

# Enables periodic logging of CPU utilization and I/O wait
#cpu = true

# Turn on/off security.  Off is currently the default
#noauth = true
#auth = true

# Verbose logging output.
#verbose = true

# Inspect all client data for validity on receipt (useful for
# developing drivers)
#objcheck = true

# Enable db quota management
#quota = true

# Set diagnostic logging level where n is
#   0=off (default)
#   1=W
#   2=R
#   3=both
#   7=W+some reads
#diaglog = 0

# Diagnostic/debugging option
#nocursors = true

# Ignore query hints
#nohints = true

# Disable the HTTP interface (Defaults to localhost:27018).
#nohttpinterface = true

# Turns off server-side scripting.  This will result in greatly limited
# functionality
#noscripting = true

# Turns off table scans.  Any query that would do a table scan fails.
#notablescan = true

# Disable data file preallocation.
#noprealloc = true

# Specify .ns file size for new databases.
# nssize = <size>

# Accout token for Mongo monitoring server.
#mms-token = <token>

# Server name for Mongo monitoring server.
#mms-name = <server-name>

# Ping interval for Mongo monitoring server.
#mms-interval = <seconds>

# Replication Options
#   3=both
#   7=W+some reads
#diaglog = 0

# Diagnostic/debugging option
#nocursors = true

# Ignore query hints
#nohints = true

# Disable the HTTP interface (Defaults to localhost:27018).
#nohttpinterface = true

# Turns off server-side scripting.  This will result in greatly limited
# functionality
#noscripting = true

# Turns off table scans.  Any query that would do a table scan fails.
#notablescan = true

# Disable data file preallocation.
#noprealloc = true

# Specify .ns file size for new databases.
# nssize = <size>

# Accout token for Mongo monitoring server.
#mms-token = <token>

# Server name for Mongo monitoring server.
#mms-name = <server-name>

# Ping interval for Mongo monitoring server.
#mms-interval = <seconds>

# Replication Options

Пожалуйста, помогите. Спасибо за вашу помощь.

1 Ответ

1 голос
/ 31 мая 2019

Добавили ли вы правила iptable , так как вы упомянули, что redash и mongodb находятся в автономных системах?Если вы уже проверили, есть ли конфликт между несколькими правилами.

Я заметил пользователя, предлагающего закомментировать bind_ip строку, которую вы не должны делать, поскольку bind_ip = 0.0.0.0 позволяетсоединение должно быть установлено со всех хостов.

...