Load To Technical Architect
[Linux] Apache Service 등록 본문
728x90
아파치 서비스 등록
1. Service 파일 생성
$ vi /usr/lib/systemd/system/apache.service
[Unit]
Description=apache
After=network.target syslog.target
[Service]
Type=forking
User=root
Group=root
ExecStart=/usr/local/apache/bin/apachectl start
ExecStop=/usr/local/apache/bin/apachectl stop
Umask=007
RestartSec=10
Restart=always
[Install]
WantedBy=multi-user.target
2. systemctl daemon 재시작
$ systemctl daemon-reload
◎ 정상적으로 Service가 등록되었는지 확인
$ systemctl status apache
728x90
'Web > apache' 카테고리의 다른 글
[Linux] Apache Tomcat Clustering (0) | 2020.06.15 |
---|---|
[Linux] Apache Tomcat 연동 (0) | 2020.06.15 |
[Linux] Apache 2.2 Compile (0) | 2020.06.11 |
Comments