This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| www.hogehoge.hogedomain.com | |
| CNAME:S3 ENDPOINT | |
| ex) www.hogehoge.hogedomain.com.s3-website-ap-northeast-1.amazonaws.com |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <Vagrantについて理解するSlide> | |
| http://es.slideshare.net/duffytoy1/vagrant-26639217 | |
| <VirtualBox download> | |
| Windows:http://download.virtualbox.org/virtualbox/4.3.0/VirtualBox-4.3.0-89960-Win.exe | |
| Mac OS:http://download.virtualbox.org/virtualbox/4.3.0/VirtualBox-4.3.0-89960-OSX.dmg | |
| <Vagrant download> | |
| http://downloads.vagrantup.com/tags/v1.3.5 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| docs.fluentd.org/ja/articles/install-by-homebrew | |
| brew install "http://toolbelt.treasure-data.com/brew/td-agent.rb" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| sudo yum install xfsprogs -y | |
| sudo mkfs.xfs /dev/sdf -f | |
| sudo mkdir /ebs | |
| sudo mount -t xfs /dev/sdf /ebs/ | |
| sudo vi /etc/fstab | |
| /dev/sdf /ebs xfs defaults 0 0 | |
| sudo sh -c 'echo "/dev/sdf /ebs xfs defaults 0 0" >>/etc/fstab' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| instance store | |
| /de[b-e] | |
| Root EBS | |
| /dev/sda | |
| 外付けEBS | |
| (推奨) | |
| /dev/sd[f-p] | |
| /dev/sd[f-p][1-6] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ec2-create-volume -z region neme -s input volume size | |
| ec2-describe-volumes volume ID | |
| ec2-attach-volume volume ID -i instance name -d devide name |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ec2-create-snapshot volume name | |
| ec2-describe-snapshot snapshot ID | |
| ec2-create-volume -z region name -s volume size --snapshot snapshot ID |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| wp-setコマンドで自動で作成されたUSER NAMEとPASSWORD、EC2のINSTANCE ID | |
| <SQLダンプ取得> | |
| mysqldump -u [user id] -p[password] [ec2 instance] > backups/backup.sql | |
| <リストア> | |
| mysql -u[username] -p[password] -h [rds endpoint] [db name] < ./backups/backup.sql |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <NAT SECURITY GROUP>:natsg | |
| [IN BOUND] | |
| TCP:80 | |
| TCP:443 | |
| TCP:22 | |
| [OUT BOUND] | |
| TCP:80 | |
| TCP:443 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| sudo /Library/StartupItems/VirtualBox/VirtualBox restart |