{Aurora}Amazon Aurora データベースログファイルの操作


-- データベースログファイルの表示とリスト化
aws rds describe-db-log-files --db-instance-identifier cluster01-instance-1


-- データベースログファイルのダウンロード
aws rds download-db-log-file-portion \
--db-instance-identifier cluster01-instance-1 \
--starting-token 0 \
--output text \
--log-file-name error/mysql-error.log > log011.txt

aws rds download-db-log-file-portion \
--db-instance-identifier cluster01-instance-1 \
--starting-token 0 \
--output text \
--log-file-name external/mysql-external.log > log012.txt

 

-- データベースログファイルの表示とリスト化
aws rds describe-db-log-files --db-instance-identifier cluster02-instance-1


-- データベースログファイルのダウンロード
aws rds download-db-log-file-portion \
--db-instance-identifier cluster02-instance-1 \
--starting-token 0 \
--output text \
--log-file-name error/postgres.log > log021.txt

aws rds download-db-log-file-portion \
--db-instance-identifier cluster02-instance-1 \
--starting-token 0 \
--output text \
--log-file-name error/postgresql.log.2021-07-21-1635 > log022.txt