본문 바로가기

Linux

[CentOS 8]Apache 설치

1. 필요 할수도 있는 프로그램 설치

[root@localhost yum.repos.d]# dnf -y install zlib libpng freetype gd gcc

 

2. Apache 설치

[root@localhost yum.repos.d]# dnf -y install httpd* 

3. PHP 설치

[root@localhost yum.repos.d]# dnf -y install php php-mysqlnd;

4. MariaDB 설치

2020/06/11 - [Linux] - [CentOS8.X]MariaDB 설치

 

[CentOS8.X]MariaDB 설치

MariaDB 설치 해봅시다. 설치 방법은 MariaDB 사이트에 있는 내용을 기준으로 설치 합니다. 1. MariaDB 주소 : https://downloads.mariadb.org/mariadb/repositories/#mirror=novisad - 아래 그림과 같이 Stable버..

snowyan23.tistory.com

5. httpd.conf 원본 파일 백업 

[root@localhost yum.repos.d]# cp /etc/httpd/conf/httpd.conf /usr/local/src/httpd.conf_backup

6. Apache는 html 파일만 인식하도록 설정되어있어서 index.php가 보여질수 있도록 추가한다.

[root@localhost yum.repos.d]# vi /etc/httpd/conf/httpd.conf 

index.php 추가

7. Apache + MariaDB 서비스 등록  및 작동

[root@localhost sbin]# /sbin/chkconfig --level 3 httpd on
[root@localhost sbin]# /sbin/chkconfig --level 3 mariadb on

 

8. 서비스 작동

[root@localhost sbin]# service httpd start
[root@localhost sbin]# service mariadb start

9. PHP 작동 확인

- phpinfo.php라는 파일 생성

[root@localhost html]# vi phpinfo.php

- vi 환경에서 아래와 같이 phpinfo를 확인 하는 구문을 입력

<?php phpinfo(); ?>

10. 웹브라우저를 실행하여 아래와 같이 입력합니다. 

 - 서버 IP/phpinfo.php

 

'Linux' 카테고리의 다른 글

[CentOS 7]Pwgen 설치  (0) 2020.06.24
[CentOS 7]Nmap설치  (0) 2020.06.24
[CentOS 7]MongoDB 설치  (0) 2020.06.24
[CentOS 8]MariaDB 설치  (0) 2020.06.11
[CentOS 8] 한글 입력 설정  (0) 2020.06.11