Skip to content

Instantly share code, notes, and snippets.

@dsk52
Last active January 26, 2018 08:09
Show Gist options
  • Save dsk52/b6fc46bbc55536b55b67771151ebb1ab to your computer and use it in GitHub Desktop.
Save dsk52/b6fc46bbc55536b55b67771151ebb1ab to your computer and use it in GitHub Desktop.

PostgreSQLへのログイン

konishi@xxxxx:~$ sudo su - postgres 
postgres@xxxxx:~$ psql -U postgres
postgres=#

ログインしたときのカレントディレクトリにファイルを投げないといけない

$ pwd
/var/lib/postgresql/

$ sudo cp db/sql/db.sql /var/lib/postgresql/

// 権限を変更
$ sudo chown postgres /var/lib/postgresql/db.sql

その他参考

postgreSQLにコマンドラインからSQLファイルを実行   https://qiita.com/Takashi_Nishimura/items/da5551e6a4cb4b64f055

PostgreSQLの基本的なコマンド   https://qiita.com/H-A-L/items/fe8cb0e0ee0041ff3ceb

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment