2014-01-01から1年間の記事一覧

RDSシステムアップグレードに関するAWSからの案内の翻訳2

Dear Amazon RDS Customer, RDSご利用の皆様へ As you are aware, Amazon RDS underwent a maintenance event between 26 September 2014 and 30 September 2014 to protect your instances from any security risks associated with the now public Xen Sec…

RDSシステムアップグレードに関するAWSからの案内の翻訳

Dear Amazon RDS Customer, Amazon RDS ご利用の皆様へ All Amazon RDS for MySQL and PostgreSQL database instances have been scheduled to receive mandatory system upgrade as per the schedule below during the maintenance window you defined for …

RDS作成

「Select "Standard" to remove Provisioned IOPS support or choose "Provisioned IOPS" to ensure the DB Instance supports a fixed number of I/O operations per second.」 「Option Group to associate with the restored DB Instance. Failure to spe…

fstabにてディレクトリの権限、ユーザを設定するオプション

/etc/fstabの書式 <file system> <dir> <type> <options> <dump> <pass> オプションに uid=1001,gid=1001,mode=0775 uid=1001(apache) gid=1001(apache)のとき drwxrwxr-x apache apache のディレクトリがマウントできる。 また急にtmpfsのディレクトリ作ってと言われたら。。 ルートユーザになる $su – 設</pass></dump></options></type></dir></file>…

【AWS】Default Termination Policyとは

The default termination policy uses the following steps to identify an instance to terminate: Before Auto Scaling selects an instance to terminate, it first identifies the Availability Zone that has more instances than the other Availabili…

【シェル】netstatの情報を10分間隔でとり続けるシェル

サーバでCLOSE_WAIT状態になるコネクションがあることが判明。一晩だけ、コネクションの状況を確認するためのシェルを書いた。 $while true;do echo -n `date` ;echo -ne "\t" ; netstat -a | greo CLOSE_WAIT | wc-l ;sleep 600 ;done >> /tmp/netstat.log …