부팅 후 자동 실행 스 크 립 트 추가

1016 단어 linux
환경: centos
\ # 포트 오픈 nginx http 서 비 스 를 배치 하기 위해 80 포트 개발:
iptables -I INPUT -p tcp --dport 80 -j ACCEPT
iptables -I INPUT -p tcp --sport 80 -j ACCEPT
service iptables save

설명: 상기 실행 에 실패 하면 The service command supports only basic LSB actions (start, stop, restart, try - restart, reload, force - reload, status) 를 표시 합 니 다. For other actions, please try to use systemctl. iptables 서비스 가 설치 되 어 있 지 않 기 때 문 입 니 다.해결: yum install iptables - services
\ # 스 크 립 트 자동 실행 step: 1 위 명령 을 openport. sh 파일 중.예 를 들 어 / home / user / temp / openport.sh
step: 2 실행 명령 을 파일 / etc / rc. d / rc. local 에 기록 합 니 다. 즉, rc. local 파일 마지막 에 추가 합 니 다.
sh /home/user/temp/open_port.sh

step 3: / etc / rc. d / rc. local 파일 에 실행 가능 한 권한 추가:
chmod +x /etc/rc.d/rc.local

이후 다시 켜 면 openport. sh 스 크 립 트 가 자동 으로 실 행 됩 니 다.
참고 글: Centos 7 의 service iptables save 명령 사용 실패 한 결말 방안https://blog.csdn.net/yelllowcong/article/details/78229862

좋은 웹페이지 즐겨찾기