2024-04-01から1ヶ月間の記事一覧

{Alibaba Key Management Service} Getting started with secrets

https://www.alibabacloud.com/help/en/kms/getting-started/getting-started-with-secrets-manager https://www.alibabacloud.com/help/en/kms/developer-reference/api-createsecret?spm=a2c63.p38356.0.0.22f2742bHiopao -- 前提 (1) KMS instance作成済…

{Alibaba Key Management Service} Getting started with keys

https://www.alibabacloud.com/help/en/kms/getting-started/getting-started-with-key-management?spm=a2c63.p38356.0.0.3ca0584cjnGzkc https://www.alibabacloud.com/help/en/kms/developer-reference/api-createkey -- 前提 (1) KMS instance作成済、有…

{Alibaba VPC} トラフィックミラーリングの操作Work with traffic mirroring

https://www.alibabacloud.com/help/ja/vpc/user-guide/create-and-manage-traffic-mirror-sources https://www.alibabacloud.com/help/ja/vpc/user-guide/traffic-mirroring-overview ecs01へのssh接続トラフィックをecs02へミラーする -- 前提 トラフィッ…

{Alibaba File Storage NAS} Get started with NAS

https://www.bigriver.jp/?p=2553 https://www.alibabacloud.com/help/en/nas/getting-started/get-started-with-nas?spm=a2c63.p38356.0.0.7e831b50TVonYD -- 1. TerraformでECSインスタンス作成 cat <<-'EOF' > variables.tf locals { availability_zone =…

{Alibaba ECS} vm起動停止自動化

https://www.softbank.jp/biz/blog/cloud-technology/articles/201912/ac-functioncompute/ https://qiita.com/feel_good/items/7fa5f14564be7ab63b40 https://www.alibabacloud.com/help/en/cloud-config/latest/configure-manual-remediation -- 1. Terraf…

{Alibaba ACK} Create an ACK Serverless cluster by using Alibaba Cloud CLI

https://www.alibabacloud.com/help/ja/ack/serverless-kubernetes/user-guide/create-an-ask-cluster-by-using-alibaba-cloud-cli 前提: 1. コンソールより下記実施済み (実施不要の可能性あり) 1.1 下記権限付与 Cloud Resource Access AuthorizationTo mo…

scpのProxyCommand

https://qiita.com/ponsuke0531/items/4721ac64f82a8e191580https://qiita.com/S-T/items/18af2bfcc4e5a72202da https://webmasters-journal.com/application/winscp-ssh-tunnel/https://docs.oracle.com/ja/learn/generate_ssh_keys/index.html#use-putty …

{OCI 仮想クラウド・ネットワーク} アップグレードされたDRGを介したリモートVCNピアリング

OCI

https://docs.oracle.com/ja-jp/iaas/Content/Network/Tasks/scenario_e.htm https://blogs.techvan.co.jp/oci/2021/05/25/%E3%83%AA%E3%83%A2%E3%83%BC%E3%83%88vcn%E3%83%94%E3%82%A2%E3%83%AA%E3%83%B3%E3%82%B0%E3%81%A7%E6%9D%B1%E4%BA%AC%EF%BD%9E%E5%…

OCI CLIでプロキシ使用

OCI

https://qiita.com/dingtianhongjie/items/485c8abf7b3af9529f69 https://qiita.com/shirok/items/dc3908c85b6bd448fed9 前提: subnet01,vm01,sl01,rt01,パブリックサブネットsubnet02,vm02,sl02,rt02,プライベートサブネット,サービス・ゲートウェイのみ su…

OEM Management Repository Views

Enterprise Manager Cloud Control Management Repository Views Referencehttps://docs.oracle.com/cd/cloud-control-13.3/EMVWS/toc.htm How To Query Target Status From The OEM Repository DB ? (Doc ID 2669538.1) SET MARKUP CSV ON -- 2 Blackout Vi…

{Alibaba ApsaraDB for MongoDB} Getting Started

https://www.alibabacloud.com/help/en/mongodb/ https://dev.classmethod.jp/articles/how-to-sign-up-alibaba-cloud-international-account/ 東京リージョンは価格が高いため杭州市を使用する杭州市を使用する場合、実名登録が必要実名登録は完了しても連…

{Alibaba VPC} VPCピアリング接続の作成と管理

https://www.alibabacloud.com/help/ja/vpc/user-guide/create-and-manage-vpc-peering-connectionhttps://www.alibabacloud.com/help/ja/vpc/user-guide/examples-of-vpc-peering-connectionshttps://www.softbank.jp/biz/blog/cloud-technology/articles/2…

{Alibaba ApsaraDB for Redis} クイックスタート

https://qiita.com/wa-ta-ru/items/7cf3ee769488944dbc00 https://www.alibabacloud.com/help/ja/redis/getting-started/step-1-create-an-apsaradb-for-redis-instance $0.009/時間 -- 1. VPCとECSの作成 cat <<-'EOF' > variables.tf locals { availabilit…

シェルで数値を3桁ごとにカンマ区切り

OS

Ubuntu (22)https://genzouw.com/entry/2020/02/04/140039/1912/https://dampgblog.hinohikari291.com/SedTestCommand/ echo 1234567890 | sed -E ':loop; s/^([0-9]+)([0-9]{3})/\1,\2/; t loop;'; Debian (12)https://genzouw.com/entry/2020/02/04/140039…