LoginSignup
5
4

More than 5 years have passed since last update.

qwikLABSでAWSを無料でハンズオン

Last updated at Posted at 2015-08-24

参考

qwiklab

bootstrap

#!/bin/sh
curl -L http://us-east-1-aws-training.s3.amazonaws.com/self-paced-lab-4/as-bootstrap.sh | sh
bootstrap.sh
#!/bin/sh
yum -y install httpd php mysql php-mysql
chkconfig httpd on
/etc/init.d/httpd start
cd /tmp
wget http://us-east-1-aws-training.s3.amazonaws.com/self-paced-lab-4/examplefiles-as.zip
unzip examplefiles-as.zip
mv examplefiles-as/* /var/www/html

以下メモ

EBS(ELASTIC BLOCK STORE)

  • USB HDDのようなもの。
$ dmesg
[    7.082060] EXT4-fs (xvda1): re-mounted. Opts: (null)
[    7.371672] NET: Registered protocol family 10
[   10.271321] audit: type=1305 audit(1440397690.072:2): audit_pid=1889 old=0 auid=4294967295 ses=4294967295 res=1
[  308.486022] blkfront: xvdf: barrier or flush: disabled; persistent grants: disabled; indirect descriptors: enabled;
[  308.493971]  xvdf: unknown partition table
利用方法
$ sudo mkfs.ext4 /dev/xvdf
$ sudo mount /dev/xvdf /media
$ df -h
/dev/xvdf        976M  1.3M  908M    1% /media

Glacia

料金

S3低ストレージ冗長化

できるだけ利用料金を減らしたいと思う訳で、低冗長化ストレージサービスを指定することができます。
これを指定すると、30%以上値引きされます。

スポットインスタンス

ハードウェア専有インスタンス

EBSのストレージサイズ

5
4
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
5
4