hikaru’s diary

Django Engineer

その他IT

【PostgreSQL】ログの文字化けを治す

postgresql.confを編集する。 私の環境ではC:\Program Files\PostgreSQL\14\dataにありました。 # lc_messages = 'Japanese_Japan.932' lc_messages = 'en_US'再起動 pg_ctl -D "C:\Program Files\PostgreSQL\14\data" restart net start postgresql-x64-14 …

md-to-pdfでマークダウンからPDFにする

github.com 公式サイトからnode.jsをインストール https://nodejs.org/ja/download/LTS版の8.11.0をWindowsで使うと「npm WARN config global `–global`, `–local` are deprecated. Use `–location=global` instead.」と出てきて面倒なので私は最新版にして…

workspace.xmlをgit管理から除外する

mv .idea ../.idea_backup rm .idea # in case you forgot to close your IDE git rm -r .idea git commit -m "Remove .idea from repo" mv ../.idea_backup .idea 参考 https://stackoverflow.com/questions/19973506/cannot-ignore-idea-workspace-xml-kee…

【PostgreSQL】バックアップとリストア

バックアップ 例 pg_dump -U ユーザー名 --format=出力形式 --file=出力先 バックアップを取るDB名 私の環境 pg_dump -U postgres --format=p --file=C:\Users\省略\20220427.db postgresパスワード聞かれる出力されたファイルはメモ帳で内容が分かる リスト…