PostgreSQL へのログイン手順です。
psql コマンドでログインします。
■【Windows】コマンドプロンプトからのログイン
C:\Users\Administrator>psql -U postgres -h test-postgresql Password for user postgres: ← パスワードを入力 |
- -U アカウントを指定します。
- -h PostgreSQLのホスト名、IPアドレスを指定します。
■【Windows】データベースを指定してのログイン
C:\Users\Administrator>psql -U postgres -d testdb -h test-postgresql |
- -d データベースを指定します。
コメント