初心者用pg_dumpの方法
Apr 30, 2008AD:
pg_dumpは
1 |
pg_dump database_name > database_name.sql |
を実行すればできると、あるが実際はいろいろと気をつけないことが、たくさんあるのでそのメモ
その一、ユーザの準備
postgresでDBを作成しているなら、postgresユーザがいります。
1 |
useradd -d /home/postgres/ postgres |
このときに、ホームディレクトリーも作っておきます。
その二、ファイルの準備
先ほど上のつくったホームディレクトリーの中にdatabase_name.sqlのファイルを作っておきます。
1 |
touch database_name.sql |
その三、bushが引けてない場合があるのでlocateでpg_dumpを調べてひいいておきましょう。
その四、いざ実行
1 |
[postgres@www postgres]$ pg_dump database_name.sql > database_name.sql |
AD:
No Comments, Comment or Ping
Reply to “初心者用pg_dumpの方法”
Warning: Undefined variable $user_ID in /home/sazaeau/mizoshiri.com/public_html/blog.mizoshiri.com/wp-content/themes/grid_focus_public_mizo/comments.php on line 66
You must be logged in to post a comment.