centos 6.9 yum 최신 버 전 nginx 설치

1368 단어
사이트 디 렉 터 리 만 들 기
mkdir -p /www/wwwroot

아직 사용자 그룹 이 없습니다. 먼저 사용자 그룹 을 만 듭 니 다.
#      
groupadd www

#       ,            
useradd -s /sbin/nologin -g www -M www

#       
chown -R www:www /www/wwwroot
chmod -R 755 /www/wwwroot

만 든 계 정 보기
cat /etc/passwd

만 든 디 렉 터 리 보기
ls /www

nginx 홈 페이지 yum 소스 추가
vim /etc/yum.repos.d/nginx.repo

추가 내용 은 다음 과 같 습 니 다.
[nginx]
name=nginx repo
baseurl=http://nginx.org/packages/centos/$releasever/$basearch/
gpgcheck=0
enabled=1

설치 nginx
yum install nginx -y

OK, 설치 완료
시작 서비스
service nginx start

서비스 상태 보기
service nginx status

기타 대응 하 는 서비스 명령 (선택 가능) (start | stop | restart | reload | status | help)
#   nginx  
service nginx start

#   nginx  
service nginx stop 

#   nginx  
service nginx restart

#   nginx   
service nginx reload 

#   nginx    
service nginx status 

# nginx      
service nginx help

Nginx 프로필 디 렉 터 리 상세 설명
#Nginx        
/etc/nginx/nginx.conf 

#Nginx      ,            
/etc/nginx/conf.d 

#Nginx        ,  Welcome to nginx!
/etc/nginx/conf.d/default.conf

END

좋은 웹페이지 즐겨찾기