Upgrade to Pro
— share decks privately, control downloads, hide ads and more …
Speaker Deck
Features
Speaker Deck
PRO
Sign in
Sign up for free
Search
Search
Install wordpress on EC2
Search
Daniel Tseng
September 26, 2013
Programming
0
330
Install wordpress on EC2
2013.09.26 talk in NTU garage
Shaolin Hsu補充:不用設 elastic ip 之後也可以連線,特在此更正!
Daniel Tseng
September 26, 2013
Tweet
Share
More Decks by Daniel Tseng
See All by Daniel Tseng
What-I-saw-the-EC-trend
kpman
0
170
Uitox-global-EC-trend
kpman
0
140
NTU PreConf @NTU.IM
kpman
0
170
ITC_Lab#
[email protected]
kpman
1
62
招生說明會@ITSEED
kpman
0
39
[email protected]
kpman
0
52
[email protected]
kpman
0
86
Other Decks in Programming
See All in Programming
PipeCDのプラグイン化で目指すところ
warashi
1
280
Agentic Coding: The Future of Software Development with Agents
mitsuhiko
0
100
チームのテスト力を総合的に鍛えて品質、スピード、レジリエンスを共立させる/Testing approach that improves quality, speed, and resilience
goyoki
5
880
ニーリーにおけるプロダクトエンジニア
nealle
0
840
PostgreSQLのRow Level SecurityをPHPのORMで扱う Eloquent vs Doctrine #phpcon #track2
77web
2
530
Claude Code + Container Use と Cursor で作る ローカル並列開発環境のススメ / ccc local dev
kaelaela
10
5.2k
XP, Testing and ninja testing
m_seki
3
250
おやつのお供はお決まりですか?@WWDC25 Recap -Japan-\(region).swift
shingangan
0
140
A2A プロトコルを試してみる
azukiazusa1
2
1.4k
Deep Dive into ~/.claude/projects
hiragram
14
2.5k
Modern Angular with Signals and Signal Store:New Rules for Your Architecture @enterJS Advanced Angular Day 2025
manfredsteyer
PRO
0
220
Systèmes distribués, pour le meilleur et pour le pire - BreizhCamp 2025 - Conférence
slecache
0
120
Featured
See All Featured
Templates, Plugins, & Blocks: Oh My! Creating the theme that thinks of everything
marktimemedia
31
2.4k
Practical Tips for Bootstrapping Information Extraction Pipelines
honnibal
PRO
20
1.3k
Writing Fast Ruby
sferik
628
62k
The Illustrated Children's Guide to Kubernetes
chrisshort
48
50k
The World Runs on Bad Software
bkeepers
PRO
69
11k
Scaling GitHub
holman
460
140k
Large-scale JavaScript Application Architecture
addyosmani
512
110k
[RailsConf 2023 Opening Keynote] The Magic of Rails
eileencodes
29
9.6k
jQuery: Nuts, Bolts and Bling
dougneiner
63
7.8k
Exploring the Power of Turbo Streams & Action Cable | RailsConf2023
kevinliebholz
34
5.9k
Building Adaptive Systems
keathley
43
2.7k
The Art of Programming - Codeland 2020
erikaheidi
54
13k
Transcript
Install wordpress on EC2
Who am I? 曾建勳 kpman HackNTU kpman | code
Agenda Create your EC2 Set up Security Group Elastic IP
SSH to your instance Set up environment Install wordpress
Create your EC2 登入AWS --> http:/ /aws.amazon.com/
Create your EC2 右上角是你的主機位置 選擇Tokyo,主機距離近,速度快 點選左方Instance --> 選擇Classic Wizard
Create your EC2
Create your EC2 key pair要設定並下載存好
Set up Security Group
Create your EC2 如此⼀一來你就有了你自己的Instance!
Elastic IP 每⼀一台主機都要申請,未來才可以連線 如果申請了,記得要綁訂主機,不然會扣錢...
Elastic IP Network & Security --> Elastic IPs . 將IP
associate到Instance 此時Instance的Elastic ip會出現剛申請的ip
SSH to your instance open iTerm2 更改pem檔權限 ssh連線到instance ubuntu@ip-xxx-xxx-xxx-xxx代表成功連線! chmod
600 ~/xxx.pem ssh -i ~/xxx.pem ubuntu@ip
Set up environment update & upgrade sudo apt-get update sudo
apt-get upgrade
Set up environment 安裝 tasksel sudo apt-get install tasksel sudo
tasksel install lamp-server
Set up environment tasksel安裝畫面
Set up environment 安裝 phpmyadmin sudo apt-get install phpmyadmin
Set up environment phpmyadmin安裝畫面
Set up environment 做連接 瀏覽器輸入:Public DNS/phpmyadmin cd /var/www sudo ln
-s /usr/share/phpmyadmin
Install wordpress 到web server預設資料夾 下載wordpress包 解壓縮 wget http://wordpress.org/latest.tar.gz cd /var/www
tar -xzvf latest.tar.gz
Install wordpress 進到mysql mode mysql -u root -p
Install wordpress 創建DB給wordpress使用 創建user 設定密碼 CREATE DATABASE wordpress; CREATE USER
wordpressuser@localhost; SET PASSWORD FOR wordpressuser@localhost =PASSWORD("password");
Install wordpress 讓user有使用權 refresh mysql GRANT ALL PRIVILEGES ON wordpress.*
TO wordpressuser@localhost IDENTIFIED BY 'password'; FLUSH PRIVILEGES;
Install wordpress 到wordpress資料夾,複製config檔 修改wp-config.php檔 cp wp-config-sample.php wp-config.php define('DB_NAME', 'wordpress'); define('DB_USER',
'wordpressuser'); define('DB_PASSWORD', 'password');
Install wordpress 瀏覽器輸入:Public DNS/wordpress installation page is up and waiting
for you :)
林北總算成功啦!
reference EC2利用tasksel架wordpress經驗分享 setting-up-wordpress-on-amazon-ec2-in-5- minutes/ how-to-install-wordpress-on-ubuntu-12-04
工商服務 https:/ /www.facebook.com/css3.tw
分享是世界上最美好的事情
Thank you!