반응형

[Centos7] httpd 설치

yum -y install httpd httpd-devel #아파치설치 httpd-devel은 커넥터설치시 apxs 이용하기때문
systemctl enable httpd.service #부팅시 자동시작
systemctl status httpd # httpd.service; enabled 확인
systemctl start httpd # 아파치 시작

sestatus # SELinux모드확인
setenforce 0 # 보안해제

vi /etc/sysconfig/selinux # 파일에서 설정 변경
# SELINUX=enforcing # on
# SELINUX=disable    # off

#방화벽 해제
firewall-cmd --permanent --zone=public --add-service=http
firewall-cmd --permanent --zone=public --add-service=https
firewall-cmd --reload

firewall-cmd --list-services   --zone=public # 정상설정확인

SELinux 관련 

https://www.lesstif.com/pages/viewpage.action?pageId=6979732

반응형

'Operating System > Centos' 카테고리의 다른 글

[Centos7] tomcat8 설치  (0) 2016.06.20
[Centos7] mysql 설치  (0) 2016.06.20
[Centos7] java설치  (2) 2016.06.20
[Centos7] vsftp 설치  (0) 2016.06.20
[Centos7] 초기 설정  (0) 2016.06.10
블로그 이미지

pstree

pstree.. process...

,