CentOS 시스템, 응용 프로그램 시작 설정

1210 단어 linuxInstallation
1. 자동 시작 스 크 립 트 를 작성 합 니 다. nginx 를 예 로 들 면
mkdir -p /opt/script/
vim /opt/script/sys-autostart-app.sh
# centos system autostart application shell
# nginx
/usr/local/nginx/sbin/nginx 

2. 자동 시작 스 크 립 트 설정, 1:
2.1. 시작 스 크 립 트 (사용자 정의) 실행 권한 설정:
chmod +x /opt/script/sys-autostart-app.sh
cat /opt/script/sys-autostart-app.sh

# centos system autostart application shell
# nginx
/usr/local/nginx/sbin/nginx

2.2. / etc / rc. d / rc. local 파일 을 열 고 끝 에 추가 합 니 다.
vim /etc/rc.d/rc.local
/opt/script/sys-autostart-app.sh

2.3. centos 7 에서 / etc / rc. d / rc. local 의 권한 이 낮 아 졌 습 니 다. 명령 을 실행 하여 실행 가능 한 권한 을 부여 해 야 합 니 다.
chmod +x /etc/rc.d/rc.local

3. 자동 시작 스 크 립 트 설정, 2:
3.1. 스 크 립 트 를 / etc / rc. d / init. d 디 렉 터 리 로 이동 합 니 다.
mv /opt/script/sys-autostart-app.sh /etc/rc.d/init.d

3.2. 스 크 립 트 의 실행 가능 한 권한 추가
chmod +x /etc/rc.d/init.d/sys-autostart-app.sh

3.3. 자동 시작 항목 에 스 크 립 트 추가
cd /etc/rc.d/init.d
chkconfig --add sys-autostart-app.sh
chkconfig sys-autostart-app.sh on

좋은 웹페이지 즐겨찾기