본문 바로가기
Linux

CentOS7에 APM설치

by AsCE_hyunseung 2018. 11. 5.

APM(웹서버)

- Apache, php, MariaDB를 통칭한다.


APM구조


CentOS7, VMware workstation15에서 설치했다.


- APM 설치하기


yum install httpd mod_ssl php php-cli mariadb-server php-mysql -y


- 서비스 설정


systemctl enable httpd.service

systemctl enable mariadb.service

systemctl start httpd.service

systemctl start mariadb.service


- 방화벽 설정


firewall-cmd --permanent --add-service=http

firewall-cmd --permanent --add-service=https

firewall-cmd --reload


- MariaDB 관리자 설정(root 비밀번호 등등 여러가지 설정한다.


mysql_secure_installation


- php 적용


/var/www/html/ 디렉토리에 다음의 내용을 가진 파일을 만들고 phpinfo.php라는 이름으로 저장한다.


vi /var/www/html/phpinfo.php


<?php

  phpinfo();

?>


아파치 웹서버가 적용된 화면



php가 적용된 화면


MariaDB가 적용된 화면



'Linux' 카테고리의 다른 글

에러 solve  (0) 2019.09.21
Docker registry setup  (0) 2019.07.08
Grafana, Prometheus, node-exporter install guide  (0) 2019.07.08
Xfce Ubuntu(xUbuntu) 설치  (0) 2018.10.27
CentOS에 MySQL설치  (0) 2018.10.18