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
63
招生說明會@ITSEED
kpman
0
39
[email protected]
kpman
0
52
[email protected]
kpman
0
87
Other Decks in Programming
See All in Programming
Flutter with Dart MCP: All You Need - 박제창 2025 I/O Extended Busan
itsmedreamwalker
0
150
チームのテスト力を鍛える
goyoki
3
730
AWS発のAIエディタKiroを使ってみた
iriikeita
1
190
奥深くて厄介な「改行」と仲良くなる20分
oguemon
1
560
知っているようで知らない"rails new"の世界 / The World of "rails new" You Think You Know but Don't
luccafort
PRO
1
180
Android端末で実現するオンデバイスLLM 2025
masayukisuda
1
170
Performance for Conversion! 分散トレーシングでボトルネックを 特定せよ
inetand
0
2.4k
Design Foundational Data Engineering Observability
sucitw
3
200
Laravel Boost 超入門
fire_arlo
3
220
250830 IaCの選定~AWS SAMのLambdaをECSに乗り換えたときの備忘録~
east_takumi
0
400
アルテニア コンサル/ITエンジニア向け 採用ピッチ資料
altenir
0
110
Android 16 × Jetpack Composeで縦書きテキストエディタを作ろう / Vertical Text Editor with Compose on Android 16
cc4966
2
260
Featured
See All Featured
Automating Front-end Workflow
addyosmani
1370
200k
The World Runs on Bad Software
bkeepers
PRO
70
11k
Connecting the Dots Between Site Speed, User Experience & Your Business [WebExpo 2025]
tammyeverts
8
530
Code Review Best Practice
trishagee
71
19k
Gamification - CAS2011
davidbonilla
81
5.4k
Speed Design
sergeychernyshev
32
1.1k
Java REST API Framework Comparison - PWX 2021
mraible
33
8.8k
A Tale of Four Properties
chriscoyier
160
23k
Creating an realtime collaboration tool: Agile Flush - .NET Oxford
marcduiker
31
2.2k
CSS Pre-Processors: Stylus, Less & Sass
bermonpainter
358
30k
Large-scale JavaScript Application Architecture
addyosmani
513
110k
Visualization
eitanlees
148
16k
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!