2023-11-23から1日間の記事一覧

Tsurugi tgctlによるバックアップ/リストア

参考文献: 次世代高速オープンソースRDB Tsurugi (神林飛志 et al. 著) -- 1. データ確認tgsql --connection tcp://localhost:12345 select count(*) from history;select count(*) from contracts; \exit -- 2. バックアップ sudo mkdir ${TSURUGI_HOME}/ba…

{GCP Cloud Pub/Sub}サブスクリプションの概要

GCP

https://qiita.com/ekzemplaro/items/2c47beb962bee54b4609 https://cloud.google.com/pubsub/docs/subscription-overview?hl=ja pull サブスクリプション : サブスクライバー クライアントを使用して Pub/Sub サーバーにメッセージをリクエストします。push…

{Terraform} validation, precondition and postcondition

https://www.bioerrorlog.work/entry/validate-terraform-variableshttps://dev.classmethod.jp/articles/terraform-precondition-postcondition/https://dev.classmethod.jp/articles/launch-ec2-from-latest-amazon-linux2-ami-by-terraform/ cat <<-'EOF'…

{Terraform} tfenv

https://github.com/tfutils/tfenvhttps://www.ios-net.co.jp/blog/20230322-861/ -- 1. インストール brew unlink terraform brew install tfenv -- 2. 動作確認 tfenv list-remote terraform --versiontfenv list tfenv install 1.6.4tfenv install 1.5.7 …