0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

Hinemosノウハウ集

Last updated at Posted at 2021-10-28

データのバックアップを取る

データはPostgreSQLに格納されているので、dumpファイルをエクスポートすればよい

# hinemos_manager stop
service hinemos_manager stop

# PostgreSQL start
service hinemos_pg start

# dump file export
/opt/hinemos/sbin/mng/hinemos_backup.sh -w hinemos

# PostgreSQL stop
service hinemos_pg stop

# hinemos_manager start
service hinemos_manager start

#データをリストアする

エクスポートしたdumpファイルをインポートする
これを使うと、クローンサーバーを構築する時が簡単になる

service hinemos_manager stop
service hinemos_pg start
/opt/hinemos/sbin/mng/hinemos_restore.sh hinemos_pgdump.XXXX-XX-XX_XXXXXX
service hinemos_pg stop
service hinemos_manager start
0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?