어제와 똑같이 살면서 다른 미래를 기대하지 말자

[CentOS8] APM 설치 요약 본문

IT관심분야/Linux

[CentOS8] APM 설치 요약

플랜액터 2020. 10. 8. 11:53

1. epel-release repo

 

# dnf search epel

# dnf info epel-release

# dnf install epel-release

# dnf repolist

 

2. Apache 설치

 

# dnf install httpd

# systemctl start httpd

# systemctl enable httpd

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

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

# firewall-cmd --reload

# firewall-cmd --list-all

 

3. Mysql8 설치

 

# dnf install @mysql

# systemctl start mysqld

# systemctl enable mysqld

# mysql_secure_installation

# firewall-cmd --permanent --zone=public --add-service=mysql

 

4. PHP7 설치

 

# dnf install https://rpms.remirepo.net/enterprise/remi-release-8.rpm

# dnf module list php
# dnf module enable php:remi-7.4

# dnf module list php

# dnf --enablerepo=remi install php-fpm php-common php-mysqlnd php-pear php-opcache php-gd php-mbstring php-mcrypt php-embedded php-bcmath php-imap php-pdo php-pecl-imagick php-soap php-devel php-ldap php-intl php-apcu php-snmp php-tidy php-dba php-zip

# systemctl start php-fpm
# systemctl enable php-fpm

 

'IT관심분야 > Linux' 카테고리의 다른 글

[CentOS] ioncube loader 7.4 설치  (0) 2021.12.22
Mysql8 루트 패스워드 변경  (0) 2021.04.22
[Mysql8] 패스워드 정책 확인 및 변경  (0) 2020.08.09
[리눅스] 대용량 파일복사  (0) 2020.01.12
Vagrant centos/7  (0) 2019.11.24
Comments