0

pgAdmin4 を使用して Windows 10 マシンで Express プロジェクトを実行しています。

postgres 方言sequelize/config.jsonを含むファイルでは、Sequelize でエラーが発生します。

"development": {
    "username": "root",
    "password": null,
    "database": "database_development",
    "host": "127.0.0.1",
    "port": "5432",
    "dialect": "postgres"
  }

しかし、sqlite の方言では、正常に動作します。

"development": {
    "dialect": "sqlite",
    "storage": "./db.development.sqlite"
    }

gulp watchpostgres 方言で実行すると、次のエラーが発生します。

$ gulp watch
[22:00:43] Using gulpfile ~\friendly-stuff\gulpfile.js
[22:00:43] Starting 'build'...
[22:00:43] Starting 'clean'...
[22:00:43] Finished 'clean' after 28 ms
[22:00:43] Starting 'stylus'...
[22:00:43] Finished 'stylus' after 101 ms
[22:00:43] Finished 'build' after 132 ms
[22:00:43] Starting 'server:start'...
[22:00:43] Finished 'server:start' after 10 ms
[22:00:43] Starting 'watch'...
[22:00:43] Finished 'watch' after 20 ms
[22:00:44] Development server listening. (PID:12632)
Mon, 19 Sep 2016 02:00:44 GMT friendly-stuff:server Listening on port 3000
Unhandled rejection SequelizeConnectionRefusedError: 
connect ECONNREFUSED 127.0.0.1:5432 at 
C:\Users\user1\MyProj\node_modules\sequelize\lib\dialects\
postgres\connection-manager.js:98:20 at Connection.

追加または変更する必要がある他の構成がいくつかあると思います。しかし、どちらかわかりません。私が使用している widows/pgadmin のバージョンが、これらのエラーのいくつかを引き起こしていると思いますか、それとも Windows 10 ファイアウォール/セキュリティがポートをブロックしていると思いますか?

4

1 に答える 1

0

確実に:

1) Postgres db is running
2) pg is installed: 

npm install --save pg

3) Add also protocol to your config
'dialect':'postgres',
'protocol':'postgres'
于 2016-10-03T10:21:37.260 に答える