SlideShare une entreprise Scribd logo
1  sur  11
Télécharger pour lire hors ligne
【Linux】#3
アジェンダ
0900-0910 PCのIPアドレス変更、結線
0910-0920 サーバ環境確認、インストール準備
0920-0930 Apacheのインストール
0930-1000 mod_ssl、php、インストール
1000-1015 apacheでBasic認証
仮想マシンの名前
connpassIDの先頭4文字+【study】+linux3として下さい
既にある場合は変更して下さい。
今日のゴール
apacheをインストールする
phpをインストールする
apacheで「Hello world」
phpの実⾏
Basic認証
1
環境確認
vmwareにログインして、自分の仮想マシンを起動して下さい。
仮想マシン名をラボの進捗に合わせて、変更して下さい。
ネットワークを確認して有効化して下さい。
PCのteratermから接続して下さい
SE Linuxが無効化されている事を確認して下さい
2
インターネット未接続環境でのdnf
ソフトウェアのインストールにはCentOS8のパッケージ管理ソフトウェアである「dnf」を使用していきますが、デフォルトではインターネットからソフト
ウェアを取得することになります。
ここではインストールメディアからソフトウェアを取得する設定を⾏います。
インストールメディアのISOイメージをCDROMドライブにセットしてあります。
3
手順1
[root@suzukto ~]# mkdir␣/media/CentOS
[root@suzukto ~]# mount␣–o␣ro␣/dev/cdrom␣/media/CentOS/
[root@suzukto ~]# alias␣dnf=‘dnf␣--disablerepo=¥*␣--enablerepo=c8-media-BaseOS,c8-media-AppStream’
手順2 確認
[root@suzukto ~]# df
ファイルシス 1K-ブロック 使用 使用可 使用% マウント位置
devtmpfs 905304 0 905304 0% /dev
tmpfs 934792 0 934792 0% /dev/shm
tmpfs 934792 9832 924960 2% /run
tmpfs 934792 0 934792 0% /sys/fs/cgroup
/dev/mapper/cl-root 13420544 4243772 9176772 32% /
/dev/sda2 999320 191708 738800 21% /boot
/dev/sda1 613184 6908 606276 2% /boot/efi
tmpfs 186956 1180 185776 1% /run/user/42
tmpfs 186956 4672 182284 3% /run/user/0
/dev/sr0 8037456 8037456 0 100% /media/CentOS
[root@suzukto ~]#
#alias
手順3 確認
[root@suzukto ~]# alias
alias cp='cp -i'
alias dnf=‘dnf --disablerepo=¥* --enablerepo=c8-media-BaseOS,c8-media-
AppStream’ ←確認
alias egrep='egrep --color=auto'
alias fgrep='fgrep --color=auto'
alias grep='grep --color=auto'
alias l.='ls -d .* --color=auto'
alias ll='ls -l --color=auto'
alias ls='ls --color=auto'
alias mv='mv -i'
alias rm='rm -i'
[root@suzukto ~]#
Webサーバーのインストールと設定 (1)
Webサーバーソフトウェア httpd のインストール
dnf list httpd
「利用可能なパッケージ」として表⽰されることを確認します。
dnf install httpd
インストールコマンド。httpdをインストールするために必要な依存パッケージも同時にインストールされます。。
「完了しました!」と表⽰されたらインストール完了です。
関連ソフトウェアのインストール
dnf install mod_ssl php
Webサーバーで使用するソフトウェアを2つ追加でインストールします。
mod_ssl はWebサーバーへ暗号化された通信でアクセスするのに必要なモジュールです
phpWebサーバーで動的なコンテンツを配信するために使用します
「完了しました!」と表⽰されたらインストール完了です。
4
利用可能なパッケージ
httpd.x86_64 2.4.37-21.module_el8.2.0+494+1df74eae AppStream
手順4 [root@suzukto ~]# dnf␣list␣httpd
手順5 [root@suzukto ~]# dnf␣install␣httpd
手順6 [root@suzukto ~]# dnf␣install␣mod_ssl php
Webサーバーのインストールと設定 (2)
手順7 インストールが完了した事を確認して下さい
手順8 httpdサービスを起動させて下さい
Active(running)を確認して下さい
手順9 firewallに、http、httpsの許可を追加します
手順10 firewallに「http」「https」が追加された事を確認して下さい
5
[root@suzukto ~]# httpd␣-v
Server version: Apache/2.4.37 (centos)
Server built: Jun 8 2020 20:14:33
[root@suzukto ~]# php␣-v
PHP 7.2.24 (cli) (built: Oct 22 2019 08:28:36) ( NTS )
Copyright (c) 1997-2018 The PHP Group
Zend Engine v3.2.0, Copyright (c) 1998-2018 Zend Technologie
[root@suzukto ~]# rpm␣aq␣|␣grep␣mod_ssl
mod_ssl-2.4.37-21.module_el8.2.0+382+15b0afa8.x86_64
[root@suzukto ~]# systemctl␣start␣httpd
[root@suzukto ~]# systemctl␣status␣httpd
● httpd.service - The Apache HTTP Server
Loaded: loaded (/usr/lib/systemd/system/httpd.service; disabled; vendor
preset: disabled)
Drop-In: /usr/lib/systemd/system/httpd.service.d
mqphp-fpm.conf
Active: active (running) since Wed 2020-12-30 06:09:30 JST; 18s ago
[root@suzukto ~]# firewall-cmd␣--add-service=http
success
[root@suzukto ~]# firewall-cmd␣--add-service=https
success
[root@suzukto ~]# firewall-cmd␣--list-all
public (active)
target: default
icmp-block-inversion: no
interfaces: ens192
sources:
services: cockpit dhcpv6-client ftp http https ssh ←確認
ports:
protocols:
masquerade: no
forward-ports:
source-ports:
icmp-blocks:
rich rules:
Webサーバーのインストールと設定 (2)
手順11 ブラウザからアクセス確認して下さい
https://192.168.210.xxx http://192.168.210.xxx
6
Webコンテンツの作成
Webコンテンツは /var/www/html に配置します。
手順12 HTMLファイルを作成します
手順13 PHPファイルを作成します
PHPに用意されているPHP設定をHTML出⼒する関数を実⾏します
手順14 ブラウザで表⽰してみます
https://192.168.210.xxx/helloworld.html
https://192.168.210.xxx/phpinfo.php
7
<html>
<head>
<title>sample</title>
</head>
<body>
hello world!
</body>
</html>
<?= phpinfo() ?>
[root@suzukto ~]# touch␣/var/www/html/helloworld.html
[root@suzukto ~]# vi␣/var/www/html/helloworld.html
[root@suzukto ~]# touch␣/var/www/html/phpinfo.php
[root@suzukto ~]# vi␣/var/www/html/phpinfo.php
Basic認証(1)
要求︓認証ページを作成して下さい。
手順15 秘密のディレクトリ(/suzukito)を作成して下さい
完成イメージ︓IDとパスワードを必要にします。
#公開の前のホームページとかで利用します。
8
[root@suzukto html]# mkdir␣/var/www/html/suzukito
[root@suzukto html]# cd␣ /var/www/html/suzukito
[root@suzukto suzukito]# touch␣/var/www/html/suzukito/index.html
[root@suzukto suzukito]# vi␣ /var/www/html/suzukito/index.html
[root@suzukto suzukito]# cat␣/var/www/html/suzukito/index.html
<h1>おとしだまください</h1>
[root@suzukto suzukito]#
Basic認証(2)
手順16 htaccessファイルを作成して下さい
手順17 以下のサイトでパスワードを作成して下さい
https://www.luft.co.jp/cgi/htpasswd.php
作成された文字列をメモ帳に記憶させて下さい
手順18 htpasswordファイルを作成して下さい
9
[root@suzukto suzukito]# cd␣/var/www/html/suzukito
[root@suzukto suzukito]# touch␣.htaccess
[root@suzukto suzukito]# vi␣.htaccess
AuthUserfile /etc/httpd/conf/.htpasswd
AuthGroupfile /dev/null
AuthName "ID -> forse password -> P@ssw0rd"
AuthType Basic
require valid-user
[root@suzukto suzukito]# touch␣/etc/httpd/conf/.htpasswd
[root@suzukto suzukito]# vi␣/etc/httpd/conf/.htpasswd
suzuki:v/KUGezBxHrCc
Basic認証(3)
手順19 Apacheの設定ファイルを修正して下さい
コマンド「:set number」で⾏数表⽰をさせて下さい。
変更前
変更後
vi で「yy」ヤンク「p」ペーストが便利です
10
[root@suzukto suzukito]# cp␣-p␣/etc/httpd/conf/httpd.conf␣/etc/httpd/conf/httpd.conf.bak
[root@suzukto suzukito]# ls␣-al␣/etc/httpd/conf/httpd.conf
[root@suzukto suzukito]# vi␣/etc/httpd/conf/httpd.conf
150 # AllowOverride controls what directives may be placed in .htaccess files.
151 # It can be "All", "None", or any combination of the keywords:
152 # Options FileInfo AuthConfig Limit
153 #
154 AllowOverride None
150 # AllowOverride controls what directives may be placed in .htaccess files.
151 # It can be "All", "None", or any combination of the keywords:
152 # Options FileInfo AuthConfig Limit
153 #
154 #AllowOverride None
155 AllowOverride All
Basic認証(4)
手順20 Apacheの再起動をして下さい
手順21 認証がかかっている事、ユーザ名とパスワードを⼊⼒し
てログイン出来る事を確認して下さい
ユーザ名︓suzuki
パスワード︓Passw0rd
おしまい。
11
[root@suzukto suzukito]# systemctl␣restart␣httpd

Contenu connexe

Dernier

AKTU Computer Networks notes --- Unit 3.pdf
AKTU Computer Networks notes ---  Unit 3.pdfAKTU Computer Networks notes ---  Unit 3.pdf
AKTU Computer Networks notes --- Unit 3.pdf
ankushspencer015
 
Call for Papers - Educational Administration: Theory and Practice, E-ISSN: 21...
Call for Papers - Educational Administration: Theory and Practice, E-ISSN: 21...Call for Papers - Educational Administration: Theory and Practice, E-ISSN: 21...
Call for Papers - Educational Administration: Theory and Practice, E-ISSN: 21...
Christo Ananth
 
result management system report for college project
result management system report for college projectresult management system report for college project
result management system report for college project
Tonystark477637
 
Call Girls in Ramesh Nagar Delhi 💯 Call Us 🔝9953056974 🔝 Escort Service
Call Girls in Ramesh Nagar Delhi 💯 Call Us 🔝9953056974 🔝 Escort ServiceCall Girls in Ramesh Nagar Delhi 💯 Call Us 🔝9953056974 🔝 Escort Service
Call Girls in Ramesh Nagar Delhi 💯 Call Us 🔝9953056974 🔝 Escort Service
9953056974 Low Rate Call Girls In Saket, Delhi NCR
 

Dernier (20)

Call Girls Pimpri Chinchwad Call Me 7737669865 Budget Friendly No Advance Boo...
Call Girls Pimpri Chinchwad Call Me 7737669865 Budget Friendly No Advance Boo...Call Girls Pimpri Chinchwad Call Me 7737669865 Budget Friendly No Advance Boo...
Call Girls Pimpri Chinchwad Call Me 7737669865 Budget Friendly No Advance Boo...
 
Thermal Engineering Unit - I & II . ppt
Thermal Engineering  Unit - I & II . pptThermal Engineering  Unit - I & II . ppt
Thermal Engineering Unit - I & II . ppt
 
Top Rated Pune Call Girls Budhwar Peth ⟟ 6297143586 ⟟ Call Me For Genuine Se...
Top Rated  Pune Call Girls Budhwar Peth ⟟ 6297143586 ⟟ Call Me For Genuine Se...Top Rated  Pune Call Girls Budhwar Peth ⟟ 6297143586 ⟟ Call Me For Genuine Se...
Top Rated Pune Call Girls Budhwar Peth ⟟ 6297143586 ⟟ Call Me For Genuine Se...
 
Online banking management system project.pdf
Online banking management system project.pdfOnline banking management system project.pdf
Online banking management system project.pdf
 
(INDIRA) Call Girl Bhosari Call Now 8617697112 Bhosari Escorts 24x7
(INDIRA) Call Girl Bhosari Call Now 8617697112 Bhosari Escorts 24x7(INDIRA) Call Girl Bhosari Call Now 8617697112 Bhosari Escorts 24x7
(INDIRA) Call Girl Bhosari Call Now 8617697112 Bhosari Escorts 24x7
 
ONLINE FOOD ORDER SYSTEM PROJECT REPORT.pdf
ONLINE FOOD ORDER SYSTEM PROJECT REPORT.pdfONLINE FOOD ORDER SYSTEM PROJECT REPORT.pdf
ONLINE FOOD ORDER SYSTEM PROJECT REPORT.pdf
 
Call Girls Walvekar Nagar Call Me 7737669865 Budget Friendly No Advance Booking
Call Girls Walvekar Nagar Call Me 7737669865 Budget Friendly No Advance BookingCall Girls Walvekar Nagar Call Me 7737669865 Budget Friendly No Advance Booking
Call Girls Walvekar Nagar Call Me 7737669865 Budget Friendly No Advance Booking
 
Glass Ceramics: Processing and Properties
Glass Ceramics: Processing and PropertiesGlass Ceramics: Processing and Properties
Glass Ceramics: Processing and Properties
 
AKTU Computer Networks notes --- Unit 3.pdf
AKTU Computer Networks notes ---  Unit 3.pdfAKTU Computer Networks notes ---  Unit 3.pdf
AKTU Computer Networks notes --- Unit 3.pdf
 
Call for Papers - Educational Administration: Theory and Practice, E-ISSN: 21...
Call for Papers - Educational Administration: Theory and Practice, E-ISSN: 21...Call for Papers - Educational Administration: Theory and Practice, E-ISSN: 21...
Call for Papers - Educational Administration: Theory and Practice, E-ISSN: 21...
 
Coefficient of Thermal Expansion and their Importance.pptx
Coefficient of Thermal Expansion and their Importance.pptxCoefficient of Thermal Expansion and their Importance.pptx
Coefficient of Thermal Expansion and their Importance.pptx
 
data_management_and _data_science_cheat_sheet.pdf
data_management_and _data_science_cheat_sheet.pdfdata_management_and _data_science_cheat_sheet.pdf
data_management_and _data_science_cheat_sheet.pdf
 
result management system report for college project
result management system report for college projectresult management system report for college project
result management system report for college project
 
Call Girls in Ramesh Nagar Delhi 💯 Call Us 🔝9953056974 🔝 Escort Service
Call Girls in Ramesh Nagar Delhi 💯 Call Us 🔝9953056974 🔝 Escort ServiceCall Girls in Ramesh Nagar Delhi 💯 Call Us 🔝9953056974 🔝 Escort Service
Call Girls in Ramesh Nagar Delhi 💯 Call Us 🔝9953056974 🔝 Escort Service
 
(INDIRA) Call Girl Meerut Call Now 8617697112 Meerut Escorts 24x7
(INDIRA) Call Girl Meerut Call Now 8617697112 Meerut Escorts 24x7(INDIRA) Call Girl Meerut Call Now 8617697112 Meerut Escorts 24x7
(INDIRA) Call Girl Meerut Call Now 8617697112 Meerut Escorts 24x7
 
Roadmap to Membership of RICS - Pathways and Routes
Roadmap to Membership of RICS - Pathways and RoutesRoadmap to Membership of RICS - Pathways and Routes
Roadmap to Membership of RICS - Pathways and Routes
 
BSides Seattle 2024 - Stopping Ethan Hunt From Taking Your Data.pptx
BSides Seattle 2024 - Stopping Ethan Hunt From Taking Your Data.pptxBSides Seattle 2024 - Stopping Ethan Hunt From Taking Your Data.pptx
BSides Seattle 2024 - Stopping Ethan Hunt From Taking Your Data.pptx
 
NFPA 5000 2024 standard .
NFPA 5000 2024 standard                                  .NFPA 5000 2024 standard                                  .
NFPA 5000 2024 standard .
 
University management System project report..pdf
University management System project report..pdfUniversity management System project report..pdf
University management System project report..pdf
 
Intze Overhead Water Tank Design by Working Stress - IS Method.pdf
Intze Overhead Water Tank  Design by Working Stress - IS Method.pdfIntze Overhead Water Tank  Design by Working Stress - IS Method.pdf
Intze Overhead Water Tank Design by Working Stress - IS Method.pdf
 

En vedette

Social Media Marketing Trends 2024 // The Global Indie Insights
Social Media Marketing Trends 2024 // The Global Indie InsightsSocial Media Marketing Trends 2024 // The Global Indie Insights
Social Media Marketing Trends 2024 // The Global Indie Insights
Kurio // The Social Media Age(ncy)
 
Good Stuff Happens in 1:1 Meetings: Why you need them and how to do them well
Good Stuff Happens in 1:1 Meetings: Why you need them and how to do them wellGood Stuff Happens in 1:1 Meetings: Why you need them and how to do them well
Good Stuff Happens in 1:1 Meetings: Why you need them and how to do them well
Saba Software
 
Introduction to C Programming Language
Introduction to C Programming LanguageIntroduction to C Programming Language
Introduction to C Programming Language
Simplilearn
 

En vedette (20)

How to Prepare For a Successful Job Search for 2024
How to Prepare For a Successful Job Search for 2024How to Prepare For a Successful Job Search for 2024
How to Prepare For a Successful Job Search for 2024
 
Social Media Marketing Trends 2024 // The Global Indie Insights
Social Media Marketing Trends 2024 // The Global Indie InsightsSocial Media Marketing Trends 2024 // The Global Indie Insights
Social Media Marketing Trends 2024 // The Global Indie Insights
 
Trends In Paid Search: Navigating The Digital Landscape In 2024
Trends In Paid Search: Navigating The Digital Landscape In 2024Trends In Paid Search: Navigating The Digital Landscape In 2024
Trends In Paid Search: Navigating The Digital Landscape In 2024
 
5 Public speaking tips from TED - Visualized summary
5 Public speaking tips from TED - Visualized summary5 Public speaking tips from TED - Visualized summary
5 Public speaking tips from TED - Visualized summary
 
ChatGPT and the Future of Work - Clark Boyd
ChatGPT and the Future of Work - Clark Boyd ChatGPT and the Future of Work - Clark Boyd
ChatGPT and the Future of Work - Clark Boyd
 
Getting into the tech field. what next
Getting into the tech field. what next Getting into the tech field. what next
Getting into the tech field. what next
 
Google's Just Not That Into You: Understanding Core Updates & Search Intent
Google's Just Not That Into You: Understanding Core Updates & Search IntentGoogle's Just Not That Into You: Understanding Core Updates & Search Intent
Google's Just Not That Into You: Understanding Core Updates & Search Intent
 
How to have difficult conversations
How to have difficult conversations How to have difficult conversations
How to have difficult conversations
 
Introduction to Data Science
Introduction to Data ScienceIntroduction to Data Science
Introduction to Data Science
 
Time Management & Productivity - Best Practices
Time Management & Productivity -  Best PracticesTime Management & Productivity -  Best Practices
Time Management & Productivity - Best Practices
 
The six step guide to practical project management
The six step guide to practical project managementThe six step guide to practical project management
The six step guide to practical project management
 
Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...
Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...
Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...
 
Unlocking the Power of ChatGPT and AI in Testing - A Real-World Look, present...
Unlocking the Power of ChatGPT and AI in Testing - A Real-World Look, present...Unlocking the Power of ChatGPT and AI in Testing - A Real-World Look, present...
Unlocking the Power of ChatGPT and AI in Testing - A Real-World Look, present...
 
12 Ways to Increase Your Influence at Work
12 Ways to Increase Your Influence at Work12 Ways to Increase Your Influence at Work
12 Ways to Increase Your Influence at Work
 
ChatGPT webinar slides
ChatGPT webinar slidesChatGPT webinar slides
ChatGPT webinar slides
 
More than Just Lines on a Map: Best Practices for U.S Bike Routes
More than Just Lines on a Map: Best Practices for U.S Bike RoutesMore than Just Lines on a Map: Best Practices for U.S Bike Routes
More than Just Lines on a Map: Best Practices for U.S Bike Routes
 
Ride the Storm: Navigating Through Unstable Periods / Katerina Rudko (Belka G...
Ride the Storm: Navigating Through Unstable Periods / Katerina Rudko (Belka G...Ride the Storm: Navigating Through Unstable Periods / Katerina Rudko (Belka G...
Ride the Storm: Navigating Through Unstable Periods / Katerina Rudko (Belka G...
 
Barbie - Brand Strategy Presentation
Barbie - Brand Strategy PresentationBarbie - Brand Strategy Presentation
Barbie - Brand Strategy Presentation
 
Good Stuff Happens in 1:1 Meetings: Why you need them and how to do them well
Good Stuff Happens in 1:1 Meetings: Why you need them and how to do them wellGood Stuff Happens in 1:1 Meetings: Why you need them and how to do them well
Good Stuff Happens in 1:1 Meetings: Why you need them and how to do them well
 
Introduction to C Programming Language
Introduction to C Programming LanguageIntroduction to C Programming Language
Introduction to C Programming Language
 

Linux#3