SlideShare a Scribd company logo
1 of 123
Download to read offline
HANDS-ON
AWS SummitTokyo 2015 - Developers Conference
CEO + HBT
DigitalCube Co. Ltd.
AWS SAMURAI
2013
Amazon Web Services
Advanced Consulting Partner
We’re in love with Community.
Sapporo ⋅Aomori ⋅ Akita ⋅Yamagata ⋅
Sendai ⋅ Nagaoka ⋅ Fukui ⋅Tokyo⋅
Wakayama ⋅ Kobe ⋅ Osaka ⋅ Kochi ⋅
Tokushima ⋅ Kagawa ⋅ Ehime ⋅
Fukuoka ⋅ Kumamoto ⋅ Oita ⋅
Kagoshima ⋅ Okinawa ⋅Bangkok⋅
Hiroshima⋅Singapore⋅Philippines⋅ San
Francisco
Hands-ON-Training
26 8Co-Organizer
JAWS-UG 三都物語2013,2014 

JAWS-UG 四国遍路
JAWS FESTA 2013,2014

JAWS DAYS 2013,2014,2015
JAWS-UG
AMIMOTO User Group

(網元起動隊)
なにをやっているのか?
超⾼高速化
What is HHVM?
HHVM is an open-source virtual machine designed for executing
programs written in Hack and PHP. HHVM uses a just-in-time (JIT)
compilation approach to achieve superior performance while
maintaining the development flexibility that PHP provides.
HHVMはハックとPHPで書かれたプログラムを実行するために設計
されたオープンソースの仮想マシンです。 HHVMはPHPが提供する
開発の柔軟性を維持しつつ、優れた性能を達成するためにジャスト
インタイム(JIT)コンパイルアプローチを使用します。
なぜやるのか?
砲撃を迎撃
なにがうれしいのか?
eCommerce
Media
Enterprise
Multilingual
heptagon inc.
どれほどのパフォーマンスなのか?
HHVM  vs  php-‐‑‒fpm
前提条件
• Cache機能: OFF
• 負荷計測ツール: Loader.io
• インスタンスタイプ: c3.large
• Duration: 1分
• Type: 期間中にクライアント数を0-
300まで増加(Maintain client load)
http://ja.amimoto-ami.com/2015/05/07/amimoto-hhvm/
HHVM  vs  php-‐‑‒fpm  (TOP)
どちらもクライアントが増加していくことで、ほぼ線形にレスポンスタイムが遅延。

ただし、hhvm版の方がよりレスポンスタイムが速い。
HHVM  vs  php-‐‑‒fpm  (TOP)
HHVM  vs  php-‐‑‒fpm  (admin)
php-fpm版では150-200クライアントの
あたりで50xエラーが出るようになり計
測不能。

HHVM版ではレスポンスタイムが遅くな
りましたが最後まで処理。
PHP7  vs  HHVM
http://talks.php.net/fluent15#/wpbench
本番投⼊入の判断はどうすべきか?
使うべき!
ですが、しかし..
メリット
• Cacheが利用できない場合に効果的
• 高負荷領域で圧倒的強さ
• ちょっとやそっとで落ちない/落とせ
ない
デメリット
• Memoryが少ないインスタンスでは
ちょっと辛い場合がある
• PHPのバージョン 5.6相当なので相
性が悪いPluginが時々ある
注意点
こんなことできます。
PHPに  
変更更可能
$ sudo git -C /opt/local/chef-repo/cookbooks/amimoto/ pull origin master
$ sudo vi /opt/local/amimoto.json
# 以下のように変更
{
"hhvm" : { "enabled": true },
"run_list" : [ "recipe[amimoto]" ]
}
# hhvm から php-fpm に戻したい場合は
{
"phpfpm" : { "enabled": true },
"run_list" : [ "recipe[amimoto]" ]
}
$ sudo /opt/local/provision
Command
Great performance!
FreeTrial
Price
https://aws.amazon.com/marketplace/pp/B00V5JYXTO
$0.025*720/h=$18/mon $0.02*8640/h+$40=$215.2/yr
RI(1/yr)$126+8640/h+$40=$166/yr
運⽤用も⾃自動化したい!
セキュリティも⾼高めたい!
試さない理理由  
が  
みつかんない
HANDS-ON
Login to AWS
EC2: Elastic Cloud Compute
Provides the flexibility you need
Scales up on high traffic
Scales down on low traffic
Amimoto EC2 Instance
Associate IP Address
Paste to your browser.
You can now enjoy posting!
Scale Up of Instances
The “Elastic” nature allows you to
instantly scale up to meet spikes in
traffic or demand.
Before you scale up your instance,
you must first STOP the current one.
Currently, you have “t2.micro” instance.
Change the Instance Type:
Scale up from t2.micro to t2.small
Scale Down of Instances
Before you scale down your instance,
you must first STOP the current one.
Currently, you have “t2.small” instance.
Scale down from t2.small to t2.micro
SFTP
to access & manage files on remote file systems
to transfer files between hosts
SFTP clients are programs using SSH
(Secure File Transfer Protocol)
encrypts commands & data (unlike FTP)
preventing passwords & sensitive info transmission
functionally similar to SSH, but uses different protocols
you cannot use standard FTP to connect to SFTP servers
you cannot use clients that only support SFTP
to connect to FTP servers
FTP (FileTransfer Protocol)
SFTP (SSH Secure FileTransfer)
Cyberduck
Transfer anything
Distribute your contents in the cloud
Open Source
Multilingual
https://cyberduck.io/
$ chmod 600 /Users/XXXXXXXX/Downloads/XXXXXXXXXX.pem
$ ssh -i /Users/XXXXXXXX/Downloads/XXXXXXXXXX.pem ec2-user@XX.XXX.XXXX
Log in with SSH
$ sudo /usr/sbin/usermod -s /bin/bash nginx
$ sudo passwd nginx
Changing password for user nginx.
New password:
Retype new password:
passwd: all authentication tokens updated successfully.
$ sudo /sbin/service monit stop
$ sudo /sbin/service nginx stop
$ sudo /sbin/service php-fpm stop
$ sudo /usr/sbin/usermod -d /var/www/vhosts nginx
$ sudo /sbin/service php-fpm start
$ sudo /sbin/service nginx start
$ sudo /sbin/service monit start
$ sudo mkdir /var/www/vhosts/.ssh
$ sudo cp /home/ec2-user/.ssh/authorized_keys /var/www/vhosts/.ssh/
$ sudo chown -R nginx:nginx /var/www/vhosts/.ssh/
Set NGINX SFTP Login User
amimoto-ami.com
(BLOG or FAQ)
How to SSH as an Nginx User:
http://amimoto-ami.com/2015/05/26/how-to-run-nginx-php-fpm-as-ec2-user/

How to connect Amimoto Instance to (S)FTP Client Software:
http://amimoto-ami.com/faq/connect-amimoto-instance-sftp-client-software/
For more details:
Terminating the Instance
You stop getting billed
Instance shutdown
And that’s it, you’ve terminated the instance!
Release EIP Address
*After releasing an Elastic IP address:
you cannot get it back
stopped getting charged
Create an AMIMOTO instance
Associate EIP Address
Launch AMIMOTO
RECAP
Build a powerful website
Scale up
Scale down
Terminate an Instance
Release EIP Address
WordPress on AWS
WordPress Sites Powered by
What makes clients happy
RECAP
High Performance sites
Business impact and
Global impact of
Powerful sites
@Amimoto_Ami
http://amimoto-ami.com/
Thank you!

More Related Content

Viewers also liked

[沖縄]Amimoto ハンズオン
[沖縄]Amimoto ハンズオン[沖縄]Amimoto ハンズオン
[沖縄]Amimoto ハンズオンHiromichi Koga
 
[秋田ハンズオン]網元起動隊資料
[秋田ハンズオン]網元起動隊資料[秋田ハンズオン]網元起動隊資料
[秋田ハンズオン]網元起動隊資料Hiromichi Koga
 
WordCamp Kobe 2013 WordPress on AWS
WordCamp Kobe 2013 WordPress on AWSWordCamp Kobe 2013 WordPress on AWS
WordCamp Kobe 2013 WordPress on AWSHiromichi Koga
 
[青森]働き方の再発明!地方での実践者が語るリモートワークの実態トークセッション
[青森]働き方の再発明!地方での実践者が語るリモートワークの実態トークセッション[青森]働き方の再発明!地方での実践者が語るリモートワークの実態トークセッション
[青森]働き方の再発明!地方での実践者が語るリモートワークの実態トークセッションHiromichi Koga
 
BookPress is going to reinvent the Publishing.
BookPress is going to reinvent the Publishing.BookPress is going to reinvent the Publishing.
BookPress is going to reinvent the Publishing.Hiromichi Koga
 
WP Booster WordBench Tokyo 20120701
WP Booster WordBench Tokyo 20120701WP Booster WordBench Tokyo 20120701
WP Booster WordBench Tokyo 20120701Hiromichi Koga
 
[WordPress on AWS] AMIMOTO Hands-On Seminar
[WordPress on AWS] AMIMOTO Hands-On Seminar[WordPress on AWS] AMIMOTO Hands-On Seminar
[WordPress on AWS] AMIMOTO Hands-On SeminarHiromichi Koga
 
[大阪]AWS ジャパンツアー 2014 夏 追加開催
[大阪]AWS ジャパンツアー 2014 夏 追加開催[大阪]AWS ジャパンツアー 2014 夏 追加開催
[大阪]AWS ジャパンツアー 2014 夏 追加開催Hiromichi Koga
 
JAWS-UG OSAKA Special re:invent 2015
JAWS-UG OSAKA Special re:invent 2015JAWS-UG OSAKA Special re:invent 2015
JAWS-UG OSAKA Special re:invent 2015Hiromichi Koga
 
[神戸]小さな会社のゲームチェンジ
[神戸]小さな会社のゲームチェンジ[神戸]小さな会社のゲームチェンジ
[神戸]小さな会社のゲームチェンジHiromichi Koga
 
[網元] WordPress 高速化チューニング AMI
[網元] WordPress 高速化チューニング AMI [網元] WordPress 高速化チューニング AMI
[網元] WordPress 高速化チューニング AMI Hiromichi Koga
 
コミュニティファーストのススメ
コミュニティファーストのススメコミュニティファーストのススメ
コミュニティファーストのススメHiromichi Koga
 
[仙台]CMSどうでしょう_LT(AMIMOTO HHVMの紹介)
[仙台]CMSどうでしょう_LT(AMIMOTO HHVMの紹介)[仙台]CMSどうでしょう_LT(AMIMOTO HHVMの紹介)
[仙台]CMSどうでしょう_LT(AMIMOTO HHVMの紹介)Hiromichi Koga
 
[AMIMOTO] 網元起動隊ハンズオン
[AMIMOTO] 網元起動隊ハンズオン[AMIMOTO] 網元起動隊ハンズオン
[AMIMOTO] 網元起動隊ハンズオンHiromichi Koga
 
[青森]東北It物産展2015 ライトニングトーク
[青森]東北It物産展2015 ライトニングトーク[青森]東北It物産展2015 ライトニングトーク
[青森]東北It物産展2015 ライトニングトークHiromichi Koga
 
AWSKRUG & JAWS-UG Meet-up #01
AWSKRUG & JAWS-UG Meet-up #01AWSKRUG & JAWS-UG Meet-up #01
AWSKRUG & JAWS-UG Meet-up #01Hiromichi Koga
 

Viewers also liked (16)

[沖縄]Amimoto ハンズオン
[沖縄]Amimoto ハンズオン[沖縄]Amimoto ハンズオン
[沖縄]Amimoto ハンズオン
 
[秋田ハンズオン]網元起動隊資料
[秋田ハンズオン]網元起動隊資料[秋田ハンズオン]網元起動隊資料
[秋田ハンズオン]網元起動隊資料
 
WordCamp Kobe 2013 WordPress on AWS
WordCamp Kobe 2013 WordPress on AWSWordCamp Kobe 2013 WordPress on AWS
WordCamp Kobe 2013 WordPress on AWS
 
[青森]働き方の再発明!地方での実践者が語るリモートワークの実態トークセッション
[青森]働き方の再発明!地方での実践者が語るリモートワークの実態トークセッション[青森]働き方の再発明!地方での実践者が語るリモートワークの実態トークセッション
[青森]働き方の再発明!地方での実践者が語るリモートワークの実態トークセッション
 
BookPress is going to reinvent the Publishing.
BookPress is going to reinvent the Publishing.BookPress is going to reinvent the Publishing.
BookPress is going to reinvent the Publishing.
 
WP Booster WordBench Tokyo 20120701
WP Booster WordBench Tokyo 20120701WP Booster WordBench Tokyo 20120701
WP Booster WordBench Tokyo 20120701
 
[WordPress on AWS] AMIMOTO Hands-On Seminar
[WordPress on AWS] AMIMOTO Hands-On Seminar[WordPress on AWS] AMIMOTO Hands-On Seminar
[WordPress on AWS] AMIMOTO Hands-On Seminar
 
[大阪]AWS ジャパンツアー 2014 夏 追加開催
[大阪]AWS ジャパンツアー 2014 夏 追加開催[大阪]AWS ジャパンツアー 2014 夏 追加開催
[大阪]AWS ジャパンツアー 2014 夏 追加開催
 
JAWS-UG OSAKA Special re:invent 2015
JAWS-UG OSAKA Special re:invent 2015JAWS-UG OSAKA Special re:invent 2015
JAWS-UG OSAKA Special re:invent 2015
 
[神戸]小さな会社のゲームチェンジ
[神戸]小さな会社のゲームチェンジ[神戸]小さな会社のゲームチェンジ
[神戸]小さな会社のゲームチェンジ
 
[網元] WordPress 高速化チューニング AMI
[網元] WordPress 高速化チューニング AMI [網元] WordPress 高速化チューニング AMI
[網元] WordPress 高速化チューニング AMI
 
コミュニティファーストのススメ
コミュニティファーストのススメコミュニティファーストのススメ
コミュニティファーストのススメ
 
[仙台]CMSどうでしょう_LT(AMIMOTO HHVMの紹介)
[仙台]CMSどうでしょう_LT(AMIMOTO HHVMの紹介)[仙台]CMSどうでしょう_LT(AMIMOTO HHVMの紹介)
[仙台]CMSどうでしょう_LT(AMIMOTO HHVMの紹介)
 
[AMIMOTO] 網元起動隊ハンズオン
[AMIMOTO] 網元起動隊ハンズオン[AMIMOTO] 網元起動隊ハンズオン
[AMIMOTO] 網元起動隊ハンズオン
 
[青森]東北It物産展2015 ライトニングトーク
[青森]東北It物産展2015 ライトニングトーク[青森]東北It物産展2015 ライトニングトーク
[青森]東北It物産展2015 ライトニングトーク
 
AWSKRUG & JAWS-UG Meet-up #01
AWSKRUG & JAWS-UG Meet-up #01AWSKRUG & JAWS-UG Meet-up #01
AWSKRUG & JAWS-UG Meet-up #01
 

Similar to AWS SummitTokyo 2015 - Hands-On AWS Conference Developers Guide

Introduction to Python Asyncio
Introduction to Python AsyncioIntroduction to Python Asyncio
Introduction to Python AsyncioNathan Van Gheem
 
Cloud Native Development
Cloud Native DevelopmentCloud Native Development
Cloud Native DevelopmentManuel Garcia
 
Cloud Foundry Day in Tokyo Lightning Talk - Cloud Foundry over the Proxy
Cloud Foundry Day in Tokyo Lightning Talk - Cloud Foundry over the ProxyCloud Foundry Day in Tokyo Lightning Talk - Cloud Foundry over the Proxy
Cloud Foundry Day in Tokyo Lightning Talk - Cloud Foundry over the ProxyMaki Toshio
 
presentation @ docker meetup
presentation @ docker meetuppresentation @ docker meetup
presentation @ docker meetupDaniël van Gils
 
Cloud lunch and learn real-time streaming in azure
Cloud lunch and learn real-time streaming in azureCloud lunch and learn real-time streaming in azure
Cloud lunch and learn real-time streaming in azureTimothy Spann
 
Building a Messaging Solutions for OVHcloud with Apache Pulsar_Pierre Zemb
Building a Messaging Solutions for OVHcloud with Apache Pulsar_Pierre ZembBuilding a Messaging Solutions for OVHcloud with Apache Pulsar_Pierre Zemb
Building a Messaging Solutions for OVHcloud with Apache Pulsar_Pierre ZembStreamNative
 
Gruntwork Executive Summary
Gruntwork Executive SummaryGruntwork Executive Summary
Gruntwork Executive SummaryYevgeniy Brikman
 
Designing Event-Driven Applications with Apache NiFi, Apache Flink, Apache Sp...
Designing Event-Driven Applications with Apache NiFi, Apache Flink, Apache Sp...Designing Event-Driven Applications with Apache NiFi, Apache Flink, Apache Sp...
Designing Event-Driven Applications with Apache NiFi, Apache Flink, Apache Sp...Timothy Spann
 
Speeding up I/O for Machine Learning ft Apple Case Study using TensorFlow, N...
Speeding up I/O for Machine Learning  ft Apple Case Study using TensorFlow, N...Speeding up I/O for Machine Learning  ft Apple Case Study using TensorFlow, N...
Speeding up I/O for Machine Learning ft Apple Case Study using TensorFlow, N...Alluxio, Inc.
 
Taming Deployment With Smart Frog
Taming Deployment With Smart FrogTaming Deployment With Smart Frog
Taming Deployment With Smart FrogSteve Loughran
 
Puppet Camp Boston 2014: Keynote
Puppet Camp Boston 2014: Keynote Puppet Camp Boston 2014: Keynote
Puppet Camp Boston 2014: Keynote Puppet
 
solution Challenge design and flutter day.pptx
solution Challenge design and flutter day.pptxsolution Challenge design and flutter day.pptx
solution Challenge design and flutter day.pptxGoogleDeveloperStude22
 
Conf42-Python-Building Apache NiFi 2.0 Python Processors
Conf42-Python-Building Apache NiFi 2.0 Python ProcessorsConf42-Python-Building Apache NiFi 2.0 Python Processors
Conf42-Python-Building Apache NiFi 2.0 Python ProcessorsTimothy Spann
 
Nextcloud Open Source Collaborative Cloud Platform, OW2online, June2020
Nextcloud Open Source Collaborative Cloud Platform, OW2online, June2020Nextcloud Open Source Collaborative Cloud Platform, OW2online, June2020
Nextcloud Open Source Collaborative Cloud Platform, OW2online, June2020OW2
 
HashiTalks 2020 - Chef Tools & Terraform: Better Together
HashiTalks 2020 - Chef Tools & Terraform: Better TogetherHashiTalks 2020 - Chef Tools & Terraform: Better Together
HashiTalks 2020 - Chef Tools & Terraform: Better TogetherMatt Ray
 
Infrastructure as code, using Terraform
Infrastructure as code, using TerraformInfrastructure as code, using Terraform
Infrastructure as code, using TerraformHarkamal Singh
 
Codeless pipelines with pulsar and flink
Codeless pipelines with pulsar and flinkCodeless pipelines with pulsar and flink
Codeless pipelines with pulsar and flinkTimothy Spann
 
APIs for the Internet of Things
APIs for the Internet of ThingsAPIs for the Internet of Things
APIs for the Internet of ThingsKinoma
 

Similar to AWS SummitTokyo 2015 - Hands-On AWS Conference Developers Guide (20)

Introduction to Python Asyncio
Introduction to Python AsyncioIntroduction to Python Asyncio
Introduction to Python Asyncio
 
Cloud Native Development
Cloud Native DevelopmentCloud Native Development
Cloud Native Development
 
Cloud Foundry Day in Tokyo Lightning Talk - Cloud Foundry over the Proxy
Cloud Foundry Day in Tokyo Lightning Talk - Cloud Foundry over the ProxyCloud Foundry Day in Tokyo Lightning Talk - Cloud Foundry over the Proxy
Cloud Foundry Day in Tokyo Lightning Talk - Cloud Foundry over the Proxy
 
presentation @ docker meetup
presentation @ docker meetuppresentation @ docker meetup
presentation @ docker meetup
 
Cloud lunch and learn real-time streaming in azure
Cloud lunch and learn real-time streaming in azureCloud lunch and learn real-time streaming in azure
Cloud lunch and learn real-time streaming in azure
 
Building a Messaging Solutions for OVHcloud with Apache Pulsar_Pierre Zemb
Building a Messaging Solutions for OVHcloud with Apache Pulsar_Pierre ZembBuilding a Messaging Solutions for OVHcloud with Apache Pulsar_Pierre Zemb
Building a Messaging Solutions for OVHcloud with Apache Pulsar_Pierre Zemb
 
Gruntwork Executive Summary
Gruntwork Executive SummaryGruntwork Executive Summary
Gruntwork Executive Summary
 
Designing Event-Driven Applications with Apache NiFi, Apache Flink, Apache Sp...
Designing Event-Driven Applications with Apache NiFi, Apache Flink, Apache Sp...Designing Event-Driven Applications with Apache NiFi, Apache Flink, Apache Sp...
Designing Event-Driven Applications with Apache NiFi, Apache Flink, Apache Sp...
 
Speeding up I/O for Machine Learning ft Apple Case Study using TensorFlow, N...
Speeding up I/O for Machine Learning  ft Apple Case Study using TensorFlow, N...Speeding up I/O for Machine Learning  ft Apple Case Study using TensorFlow, N...
Speeding up I/O for Machine Learning ft Apple Case Study using TensorFlow, N...
 
Taming Deployment With Smart Frog
Taming Deployment With Smart FrogTaming Deployment With Smart Frog
Taming Deployment With Smart Frog
 
Puppet Camp Boston 2014: Keynote
Puppet Camp Boston 2014: Keynote Puppet Camp Boston 2014: Keynote
Puppet Camp Boston 2014: Keynote
 
Running PHP In The Cloud
Running PHP In The CloudRunning PHP In The Cloud
Running PHP In The Cloud
 
solution Challenge design and flutter day.pptx
solution Challenge design and flutter day.pptxsolution Challenge design and flutter day.pptx
solution Challenge design and flutter day.pptx
 
Conf42-Python-Building Apache NiFi 2.0 Python Processors
Conf42-Python-Building Apache NiFi 2.0 Python ProcessorsConf42-Python-Building Apache NiFi 2.0 Python Processors
Conf42-Python-Building Apache NiFi 2.0 Python Processors
 
Nextcloud Open Source Collaborative Cloud Platform, OW2online, June2020
Nextcloud Open Source Collaborative Cloud Platform, OW2online, June2020Nextcloud Open Source Collaborative Cloud Platform, OW2online, June2020
Nextcloud Open Source Collaborative Cloud Platform, OW2online, June2020
 
HashiTalks 2020 - Chef Tools & Terraform: Better Together
HashiTalks 2020 - Chef Tools & Terraform: Better TogetherHashiTalks 2020 - Chef Tools & Terraform: Better Together
HashiTalks 2020 - Chef Tools & Terraform: Better Together
 
Infrastructure as code, using Terraform
Infrastructure as code, using TerraformInfrastructure as code, using Terraform
Infrastructure as code, using Terraform
 
IAM Tools
IAM ToolsIAM Tools
IAM Tools
 
Codeless pipelines with pulsar and flink
Codeless pipelines with pulsar and flinkCodeless pipelines with pulsar and flink
Codeless pipelines with pulsar and flink
 
APIs for the Internet of Things
APIs for the Internet of ThingsAPIs for the Internet of Things
APIs for the Internet of Things
 

More from Hiromichi Koga

和歌山ITカーニバル2015「WordPressの現状と未来、企業によるオープンソースへの貢献について」
和歌山ITカーニバル2015「WordPressの現状と未来、企業によるオープンソースへの貢献について」和歌山ITカーニバル2015「WordPressの現状と未来、企業によるオープンソースへの貢献について」
和歌山ITカーニバル2015「WordPressの現状と未来、企業によるオープンソースへの貢献について」Hiromichi Koga
 
AWS+WordPress-Jawsfesta2015
AWS+WordPress-Jawsfesta2015AWS+WordPress-Jawsfesta2015
AWS+WordPress-Jawsfesta2015Hiromichi Koga
 
APNのメリットを再確認してみた 20150907
APNのメリットを再確認してみた 20150907APNのメリットを再確認してみた 20150907
APNのメリットを再確認してみた 20150907Hiromichi Koga
 
[青森]東北It物産展2015 ランチタイムセッションLT
[青森]東北It物産展2015 ランチタイムセッションLT[青森]東北It物産展2015 ランチタイムセッションLT
[青森]東北It物産展2015 ランチタイムセッションLTHiromichi Koga
 
[Osaka]AMIMOTO(HHVM) hands-on #cmsdou
[Osaka]AMIMOTO(HHVM) hands-on #cmsdou [Osaka]AMIMOTO(HHVM) hands-on #cmsdou
[Osaka]AMIMOTO(HHVM) hands-on #cmsdou Hiromichi Koga
 
AMIMOTO ハンズオン JAWS DAYS 2015
AMIMOTO ハンズオン JAWS DAYS 2015AMIMOTO ハンズオン JAWS DAYS 2015
AMIMOTO ハンズオン JAWS DAYS 2015Hiromichi Koga
 
[広島] Jaws-UG広島 第3回勉強会
[広島] Jaws-UG広島 第3回勉強会[広島] Jaws-UG広島 第3回勉強会
[広島] Jaws-UG広島 第3回勉強会Hiromichi Koga
 
[CMSどうでしょう 札幌] 網元起動隊ハンズオン
[CMSどうでしょう 札幌] 網元起動隊ハンズオン[CMSどうでしょう 札幌] 網元起動隊ハンズオン
[CMSどうでしょう 札幌] 網元起動隊ハンズオンHiromichi Koga
 
[WordPress on AWS] What is AMIMOTO & AMIMOTO User Group
[WordPress on AWS] What is AMIMOTO & AMIMOTO User Group[WordPress on AWS] What is AMIMOTO & AMIMOTO User Group
[WordPress on AWS] What is AMIMOTO & AMIMOTO User GroupHiromichi Koga
 
[大阪]Re:Invent 2014 報告会
[大阪]Re:Invent 2014 報告会[大阪]Re:Invent 2014 報告会
[大阪]Re:Invent 2014 報告会Hiromichi Koga
 
[沖縄レキサスセミナー]小さな会社のゲームチェンジ
[沖縄レキサスセミナー]小さな会社のゲームチェンジ[沖縄レキサスセミナー]小さな会社のゲームチェンジ
[沖縄レキサスセミナー]小さな会社のゲームチェンジHiromichi Koga
 
[JAWS-UG沖縄]網元起動隊の紹介
[JAWS-UG沖縄]網元起動隊の紹介[JAWS-UG沖縄]網元起動隊の紹介
[JAWS-UG沖縄]網元起動隊の紹介Hiromichi Koga
 
[四国クラウドお遍路2014]小さな会社のゲームチェンジ
[四国クラウドお遍路2014]小さな会社のゲームチェンジ[四国クラウドお遍路2014]小さな会社のゲームチェンジ
[四国クラウドお遍路2014]小さな会社のゲームチェンジHiromichi Koga
 
[JAWS-UG Kansai 特別編 「AWSがあるとき。ないとき」]小さな会社のゲームチェンジ
[JAWS-UG Kansai 特別編 「AWSがあるとき。ないとき」]小さな会社のゲームチェンジ[JAWS-UG Kansai 特別編 「AWSがあるとき。ないとき」]小さな会社のゲームチェンジ
[JAWS-UG Kansai 特別編 「AWSがあるとき。ないとき」]小さな会社のゲームチェンジHiromichi Koga
 
[福井]網元起動隊in福井
[福井]網元起動隊in福井[福井]網元起動隊in福井
[福井]網元起動隊in福井Hiromichi Koga
 
[福井]Amimoto ハンズオン
[福井]Amimoto ハンズオン[福井]Amimoto ハンズオン
[福井]Amimoto ハンズオンHiromichi Koga
 
[秋田]網元起動隊
[秋田]網元起動隊[秋田]網元起動隊
[秋田]網元起動隊Hiromichi Koga
 
[仙台]Jawsfesta 東北LT-網元起動隊の紹介
[仙台]Jawsfesta 東北LT-網元起動隊の紹介[仙台]Jawsfesta 東北LT-網元起動隊の紹介
[仙台]Jawsfesta 東北LT-網元起動隊の紹介Hiromichi Koga
 
[青森]網元起動隊
[青森]網元起動隊[青森]網元起動隊
[青森]網元起動隊Hiromichi Koga
 

More from Hiromichi Koga (20)

和歌山ITカーニバル2015「WordPressの現状と未来、企業によるオープンソースへの貢献について」
和歌山ITカーニバル2015「WordPressの現状と未来、企業によるオープンソースへの貢献について」和歌山ITカーニバル2015「WordPressの現状と未来、企業によるオープンソースへの貢献について」
和歌山ITカーニバル2015「WordPressの現状と未来、企業によるオープンソースへの貢献について」
 
AWS+WordPress-Jawsfesta2015
AWS+WordPress-Jawsfesta2015AWS+WordPress-Jawsfesta2015
AWS+WordPress-Jawsfesta2015
 
APNのメリットを再確認してみた 20150907
APNのメリットを再確認してみた 20150907APNのメリットを再確認してみた 20150907
APNのメリットを再確認してみた 20150907
 
[青森]東北It物産展2015 ランチタイムセッションLT
[青森]東北It物産展2015 ランチタイムセッションLT[青森]東北It物産展2015 ランチタイムセッションLT
[青森]東北It物産展2015 ランチタイムセッションLT
 
[Osaka]AMIMOTO(HHVM) hands-on #cmsdou
[Osaka]AMIMOTO(HHVM) hands-on #cmsdou [Osaka]AMIMOTO(HHVM) hands-on #cmsdou
[Osaka]AMIMOTO(HHVM) hands-on #cmsdou
 
AMIMOTO ハンズオン JAWS DAYS 2015
AMIMOTO ハンズオン JAWS DAYS 2015AMIMOTO ハンズオン JAWS DAYS 2015
AMIMOTO ハンズオン JAWS DAYS 2015
 
[広島] Jaws-UG広島 第3回勉強会
[広島] Jaws-UG広島 第3回勉強会[広島] Jaws-UG広島 第3回勉強会
[広島] Jaws-UG広島 第3回勉強会
 
[CMSどうでしょう 札幌] 網元起動隊ハンズオン
[CMSどうでしょう 札幌] 網元起動隊ハンズオン[CMSどうでしょう 札幌] 網元起動隊ハンズオン
[CMSどうでしょう 札幌] 網元起動隊ハンズオン
 
Media Assembly Kit
Media Assembly KitMedia Assembly Kit
Media Assembly Kit
 
[WordPress on AWS] What is AMIMOTO & AMIMOTO User Group
[WordPress on AWS] What is AMIMOTO & AMIMOTO User Group[WordPress on AWS] What is AMIMOTO & AMIMOTO User Group
[WordPress on AWS] What is AMIMOTO & AMIMOTO User Group
 
[大阪]Re:Invent 2014 報告会
[大阪]Re:Invent 2014 報告会[大阪]Re:Invent 2014 報告会
[大阪]Re:Invent 2014 報告会
 
[沖縄レキサスセミナー]小さな会社のゲームチェンジ
[沖縄レキサスセミナー]小さな会社のゲームチェンジ[沖縄レキサスセミナー]小さな会社のゲームチェンジ
[沖縄レキサスセミナー]小さな会社のゲームチェンジ
 
[JAWS-UG沖縄]網元起動隊の紹介
[JAWS-UG沖縄]網元起動隊の紹介[JAWS-UG沖縄]網元起動隊の紹介
[JAWS-UG沖縄]網元起動隊の紹介
 
[四国クラウドお遍路2014]小さな会社のゲームチェンジ
[四国クラウドお遍路2014]小さな会社のゲームチェンジ[四国クラウドお遍路2014]小さな会社のゲームチェンジ
[四国クラウドお遍路2014]小さな会社のゲームチェンジ
 
[JAWS-UG Kansai 特別編 「AWSがあるとき。ないとき」]小さな会社のゲームチェンジ
[JAWS-UG Kansai 特別編 「AWSがあるとき。ないとき」]小さな会社のゲームチェンジ[JAWS-UG Kansai 特別編 「AWSがあるとき。ないとき」]小さな会社のゲームチェンジ
[JAWS-UG Kansai 特別編 「AWSがあるとき。ないとき」]小さな会社のゲームチェンジ
 
[福井]網元起動隊in福井
[福井]網元起動隊in福井[福井]網元起動隊in福井
[福井]網元起動隊in福井
 
[福井]Amimoto ハンズオン
[福井]Amimoto ハンズオン[福井]Amimoto ハンズオン
[福井]Amimoto ハンズオン
 
[秋田]網元起動隊
[秋田]網元起動隊[秋田]網元起動隊
[秋田]網元起動隊
 
[仙台]Jawsfesta 東北LT-網元起動隊の紹介
[仙台]Jawsfesta 東北LT-網元起動隊の紹介[仙台]Jawsfesta 東北LT-網元起動隊の紹介
[仙台]Jawsfesta 東北LT-網元起動隊の紹介
 
[青森]網元起動隊
[青森]網元起動隊[青森]網元起動隊
[青森]網元起動隊
 

Recently uploaded

SCM Symposium PPT Format Customer loyalty is predi
SCM Symposium PPT Format Customer loyalty is prediSCM Symposium PPT Format Customer loyalty is predi
SCM Symposium PPT Format Customer loyalty is predieusebiomeyer
 
Elevate Your Business with Our IT Expertise in New Orleans
Elevate Your Business with Our IT Expertise in New OrleansElevate Your Business with Our IT Expertise in New Orleans
Elevate Your Business with Our IT Expertise in New Orleanscorenetworkseo
 
Potsdam FH学位证,波茨坦应用技术大学毕业证书1:1制作
Potsdam FH学位证,波茨坦应用技术大学毕业证书1:1制作Potsdam FH学位证,波茨坦应用技术大学毕业证书1:1制作
Potsdam FH学位证,波茨坦应用技术大学毕业证书1:1制作ys8omjxb
 
Git and Github workshop GDSC MLRITM
Git and Github  workshop GDSC MLRITMGit and Github  workshop GDSC MLRITM
Git and Github workshop GDSC MLRITMgdsc13
 
定制(AUT毕业证书)新西兰奥克兰理工大学毕业证成绩单原版一比一
定制(AUT毕业证书)新西兰奥克兰理工大学毕业证成绩单原版一比一定制(AUT毕业证书)新西兰奥克兰理工大学毕业证成绩单原版一比一
定制(AUT毕业证书)新西兰奥克兰理工大学毕业证成绩单原版一比一Fs
 
A Good Girl's Guide to Murder (A Good Girl's Guide to Murder, #1)
A Good Girl's Guide to Murder (A Good Girl's Guide to Murder, #1)A Good Girl's Guide to Murder (A Good Girl's Guide to Murder, #1)
A Good Girl's Guide to Murder (A Good Girl's Guide to Murder, #1)Christopher H Felton
 
PHP-based rendering of TYPO3 Documentation
PHP-based rendering of TYPO3 DocumentationPHP-based rendering of TYPO3 Documentation
PHP-based rendering of TYPO3 DocumentationLinaWolf1
 
Font Performance - NYC WebPerf Meetup April '24
Font Performance - NYC WebPerf Meetup April '24Font Performance - NYC WebPerf Meetup April '24
Font Performance - NYC WebPerf Meetup April '24Paul Calvano
 
Call Girls In The Ocean Pearl Retreat Hotel New Delhi 9873777170
Call Girls In The Ocean Pearl Retreat Hotel New Delhi 9873777170Call Girls In The Ocean Pearl Retreat Hotel New Delhi 9873777170
Call Girls In The Ocean Pearl Retreat Hotel New Delhi 9873777170Sonam Pathan
 
定制(Lincoln毕业证书)新西兰林肯大学毕业证成绩单原版一比一
定制(Lincoln毕业证书)新西兰林肯大学毕业证成绩单原版一比一定制(Lincoln毕业证书)新西兰林肯大学毕业证成绩单原版一比一
定制(Lincoln毕业证书)新西兰林肯大学毕业证成绩单原版一比一Fs
 
Blepharitis inflammation of eyelid symptoms cause everything included along w...
Blepharitis inflammation of eyelid symptoms cause everything included along w...Blepharitis inflammation of eyelid symptoms cause everything included along w...
Blepharitis inflammation of eyelid symptoms cause everything included along w...Excelmac1
 
Film cover research (1).pptxsdasdasdasdasdasa
Film cover research (1).pptxsdasdasdasdasdasaFilm cover research (1).pptxsdasdasdasdasdasa
Film cover research (1).pptxsdasdasdasdasdasa494f574xmv
 
办理多伦多大学毕业证成绩单|购买加拿大UTSG文凭证书
办理多伦多大学毕业证成绩单|购买加拿大UTSG文凭证书办理多伦多大学毕业证成绩单|购买加拿大UTSG文凭证书
办理多伦多大学毕业证成绩单|购买加拿大UTSG文凭证书zdzoqco
 
定制(Management毕业证书)新加坡管理大学毕业证成绩单原版一比一
定制(Management毕业证书)新加坡管理大学毕业证成绩单原版一比一定制(Management毕业证书)新加坡管理大学毕业证成绩单原版一比一
定制(Management毕业证书)新加坡管理大学毕业证成绩单原版一比一Fs
 
『澳洲文凭』买詹姆士库克大学毕业证书成绩单办理澳洲JCU文凭学位证书
『澳洲文凭』买詹姆士库克大学毕业证书成绩单办理澳洲JCU文凭学位证书『澳洲文凭』买詹姆士库克大学毕业证书成绩单办理澳洲JCU文凭学位证书
『澳洲文凭』买詹姆士库克大学毕业证书成绩单办理澳洲JCU文凭学位证书rnrncn29
 
定制(UAL学位证)英国伦敦艺术大学毕业证成绩单原版一比一
定制(UAL学位证)英国伦敦艺术大学毕业证成绩单原版一比一定制(UAL学位证)英国伦敦艺术大学毕业证成绩单原版一比一
定制(UAL学位证)英国伦敦艺术大学毕业证成绩单原版一比一Fs
 
Contact Rya Baby for Call Girls New Delhi
Contact Rya Baby for Call Girls New DelhiContact Rya Baby for Call Girls New Delhi
Contact Rya Baby for Call Girls New Delhimiss dipika
 
Call Girls South Delhi Delhi reach out to us at ☎ 9711199012
Call Girls South Delhi Delhi reach out to us at ☎ 9711199012Call Girls South Delhi Delhi reach out to us at ☎ 9711199012
Call Girls South Delhi Delhi reach out to us at ☎ 9711199012rehmti665
 

Recently uploaded (20)

SCM Symposium PPT Format Customer loyalty is predi
SCM Symposium PPT Format Customer loyalty is prediSCM Symposium PPT Format Customer loyalty is predi
SCM Symposium PPT Format Customer loyalty is predi
 
Elevate Your Business with Our IT Expertise in New Orleans
Elevate Your Business with Our IT Expertise in New OrleansElevate Your Business with Our IT Expertise in New Orleans
Elevate Your Business with Our IT Expertise in New Orleans
 
Potsdam FH学位证,波茨坦应用技术大学毕业证书1:1制作
Potsdam FH学位证,波茨坦应用技术大学毕业证书1:1制作Potsdam FH学位证,波茨坦应用技术大学毕业证书1:1制作
Potsdam FH学位证,波茨坦应用技术大学毕业证书1:1制作
 
Hot Sexy call girls in Rk Puram 🔝 9953056974 🔝 Delhi escort Service
Hot Sexy call girls in  Rk Puram 🔝 9953056974 🔝 Delhi escort ServiceHot Sexy call girls in  Rk Puram 🔝 9953056974 🔝 Delhi escort Service
Hot Sexy call girls in Rk Puram 🔝 9953056974 🔝 Delhi escort Service
 
Git and Github workshop GDSC MLRITM
Git and Github  workshop GDSC MLRITMGit and Github  workshop GDSC MLRITM
Git and Github workshop GDSC MLRITM
 
定制(AUT毕业证书)新西兰奥克兰理工大学毕业证成绩单原版一比一
定制(AUT毕业证书)新西兰奥克兰理工大学毕业证成绩单原版一比一定制(AUT毕业证书)新西兰奥克兰理工大学毕业证成绩单原版一比一
定制(AUT毕业证书)新西兰奥克兰理工大学毕业证成绩单原版一比一
 
young call girls in Uttam Nagar🔝 9953056974 🔝 Delhi escort Service
young call girls in Uttam Nagar🔝 9953056974 🔝 Delhi escort Serviceyoung call girls in Uttam Nagar🔝 9953056974 🔝 Delhi escort Service
young call girls in Uttam Nagar🔝 9953056974 🔝 Delhi escort Service
 
A Good Girl's Guide to Murder (A Good Girl's Guide to Murder, #1)
A Good Girl's Guide to Murder (A Good Girl's Guide to Murder, #1)A Good Girl's Guide to Murder (A Good Girl's Guide to Murder, #1)
A Good Girl's Guide to Murder (A Good Girl's Guide to Murder, #1)
 
PHP-based rendering of TYPO3 Documentation
PHP-based rendering of TYPO3 DocumentationPHP-based rendering of TYPO3 Documentation
PHP-based rendering of TYPO3 Documentation
 
Font Performance - NYC WebPerf Meetup April '24
Font Performance - NYC WebPerf Meetup April '24Font Performance - NYC WebPerf Meetup April '24
Font Performance - NYC WebPerf Meetup April '24
 
Call Girls In The Ocean Pearl Retreat Hotel New Delhi 9873777170
Call Girls In The Ocean Pearl Retreat Hotel New Delhi 9873777170Call Girls In The Ocean Pearl Retreat Hotel New Delhi 9873777170
Call Girls In The Ocean Pearl Retreat Hotel New Delhi 9873777170
 
定制(Lincoln毕业证书)新西兰林肯大学毕业证成绩单原版一比一
定制(Lincoln毕业证书)新西兰林肯大学毕业证成绩单原版一比一定制(Lincoln毕业证书)新西兰林肯大学毕业证成绩单原版一比一
定制(Lincoln毕业证书)新西兰林肯大学毕业证成绩单原版一比一
 
Blepharitis inflammation of eyelid symptoms cause everything included along w...
Blepharitis inflammation of eyelid symptoms cause everything included along w...Blepharitis inflammation of eyelid symptoms cause everything included along w...
Blepharitis inflammation of eyelid symptoms cause everything included along w...
 
Film cover research (1).pptxsdasdasdasdasdasa
Film cover research (1).pptxsdasdasdasdasdasaFilm cover research (1).pptxsdasdasdasdasdasa
Film cover research (1).pptxsdasdasdasdasdasa
 
办理多伦多大学毕业证成绩单|购买加拿大UTSG文凭证书
办理多伦多大学毕业证成绩单|购买加拿大UTSG文凭证书办理多伦多大学毕业证成绩单|购买加拿大UTSG文凭证书
办理多伦多大学毕业证成绩单|购买加拿大UTSG文凭证书
 
定制(Management毕业证书)新加坡管理大学毕业证成绩单原版一比一
定制(Management毕业证书)新加坡管理大学毕业证成绩单原版一比一定制(Management毕业证书)新加坡管理大学毕业证成绩单原版一比一
定制(Management毕业证书)新加坡管理大学毕业证成绩单原版一比一
 
『澳洲文凭』买詹姆士库克大学毕业证书成绩单办理澳洲JCU文凭学位证书
『澳洲文凭』买詹姆士库克大学毕业证书成绩单办理澳洲JCU文凭学位证书『澳洲文凭』买詹姆士库克大学毕业证书成绩单办理澳洲JCU文凭学位证书
『澳洲文凭』买詹姆士库克大学毕业证书成绩单办理澳洲JCU文凭学位证书
 
定制(UAL学位证)英国伦敦艺术大学毕业证成绩单原版一比一
定制(UAL学位证)英国伦敦艺术大学毕业证成绩单原版一比一定制(UAL学位证)英国伦敦艺术大学毕业证成绩单原版一比一
定制(UAL学位证)英国伦敦艺术大学毕业证成绩单原版一比一
 
Contact Rya Baby for Call Girls New Delhi
Contact Rya Baby for Call Girls New DelhiContact Rya Baby for Call Girls New Delhi
Contact Rya Baby for Call Girls New Delhi
 
Call Girls South Delhi Delhi reach out to us at ☎ 9711199012
Call Girls South Delhi Delhi reach out to us at ☎ 9711199012Call Girls South Delhi Delhi reach out to us at ☎ 9711199012
Call Girls South Delhi Delhi reach out to us at ☎ 9711199012
 

AWS SummitTokyo 2015 - Hands-On AWS Conference Developers Guide