我无法在ubuntu上的pgadmin4(http://127.0.0.1:5050/browser/)中创建服务器

时间:2017-03-23 06:25:53

标签: ubuntu pgadmin

Error

我为我的Ubuntu 16.10安装了pgadmin4并在http://127.0.0.1:5050/browser/上运行它,但它只有服务器组。我创建了服务器,但它像图片一样提醒。

Unable to connect to server:

could not connect to server: Connection refused
Is the server running on host "htphuocdl-desktop" (127.0.1.1) and accepting
TCP/IP connections on port 5432?

1 个答案:

答案 0 :(得分:0)

创建服务器:

  • 请使用默认IP或自定义IP地址配置主机名/地址:127.0.0.1,如果您在应用程序中使用自定义IP,请在配置时提供正确的IP地址。

在config_local.py

中添加以下代码
import os
DATA_DIR = os.path.realpath(os.path.expanduser(u'~/.pgadmin/')) 
LOG_FILE = os.path.join(DATA_DIR, 'pgadmin4.log') 
SQLITE_PATH = os.path.join(DATA_DIR, 'pgadmin4.db') 
SESSION_DB_PATH = os.path.join(DATA_DIR, 'sessions') 
STORAGE_DIR = os.path.join(DATA_DIR, 'storage')
SERVER_MODE = True
#Please provide default IP or custom IP address
DEFAULT_SERVER='127.0.0.1'