CentOS, NGINX 초기 환경 배치

3315 단어
CentOS, NGINX 초기 환경 배치
@ (linux 노트) [centos | nginx | 환경 배치]
루트 로그 인
루트 로그 인
시동 망 카드
centos6. x 설치 시 네트워크 카드 의 기본 비 시작 상 태 를 최소 화 합 니 다.클 라 우 드 호스트 를 사용 하거나 최소 화 되 지 않 은 설 치 를 사용 하면 무시 할 수 있 습 니 다.
ifup eth0
#           

네트워크 카드 설정
관련 파일: / etc / sysconfig / network 설정 호스트 이름과 네트워크 설정, 게 이 트 웨 이 / etc / sysconfig / network - scripts / ifcfg - eth 0 은 특정한 네트워크 카드 에 대해 설정 합 니 다. 기본 장치 이름 은 eth0 eht 1 eth 2 입 니 다. 이 를 통 해 / etc / resolv. conf 설정 DNS / etc / hosts 이 컴퓨터 host / etc / protocols 는 TCP, ICMP 와 같은 ip 패 킷 프로 토 콜 관련 데 이 터 를 정의 합 니 다.
#     ,          
cp /etc/sysconfig/network-scripts/ifcfg-eth0 /etc/sysconfig/network-scripts/ifcfg-eth0.bak

#       
vi /etc/sysconfig/network-scripts/ifcfg-eth0
    DEVICE=eth0                 #      
    HWADDR=00:0C:29:D0:C7:B5    #MAC
    TYPE=Ethernet               #          
    UUID=UUID                   #       
    ONBOOT=yes                  #           YES
    BOOTPROTO=static            #  IP        :DHCP      IP  
    IPADDR=192.168.1.10         #IP
    IPV6INIT=no                 #  ipv6
    IPV6_AUTOCONF=no
    NETMASK=255.255.255.0       #    
    GATEWAY=192.168.1.1         #    

#        
cat /etc/sysconfig/network-scripts/ifcfg-eth0

#    
vi /etc/sysconfig/network
    #          
    NETWORKING=yes
    #        ,          /etc/hosts         
    HOSTNAME=hostname
    #         
    GATEWAY=192.168.1.1
    
#  DNS
vi /etc/resolv.conf
    nameserver dnsip
    nameserver dnsip
    
#  HOST
vi /etc/hosts
    127.0.0.1 hostname   #   
    order bind hosts     #  DNS          
    multi on             #   IP
    nospoof on           #                     ,                         。    “  ”IP  

#    
service network restart
 
/etc/init.d/network restart

#ping   

yum 원본 설정
yum 소스 가 이상 적 이지 않 거나 바 꾸 고 싶 을 때안 바 뀌 면 신경 쓰 지 마.
#      
mv /etc/yum.repos.d/CentOS-Base-repo /etc/yum.repos.d/CentOS-Base-repo.bak

#    
    #  :mirrors.163.com/.help/CentOS6-Base-163.repo
    #sohu:mirrors.sohu.com/help/CentOS-Base-sohu.repo
    #   :mirrors.aliyun.com/repo/Centos-6.repo
wget -O /etc/yum.repos.d/CentOS-Base.repo http://xxxxxx.repo

#  yum  
yum clean all

#    
yum makecache


시간
필요 에 따라 시스템 설정 이 잘못 되 었 을 때 지역 에 따라 시간 대, 시간 서버 google 을 설정 합 니 다.
#    
cp /usr/share/zoneinfo/Asia/Shanghai /etc/localtime

#       blos     
ntpdate timeserver.com ; hwclock –w

SSH 설정
SSH 는 말 할 것 도 없고.
#  SSH
vi /etc/ssh/sshd_config
    #      
    Port    22 #  SSH   ,        
    Protocol 2 #    SSH1 SSH2  ,    SSH2
    
        #     root  、            
        PermitRootLogin no
        PermitEmptyPasswords no
        PasswordAuthentication no
        
        RSAAuthentication yes
        PubkeyAuthentication yes
        AuthorizedKeysFile .ssh/authorized_keys
        #     

    
#     ,    
#         
chkconfig sshd on

#  SSH
/etc/init.d/sshd start #  ssh         service sshd start

#   SSH


새 사용자
루트 는 되도록 사용 하지 마 세 요.
#    
useradd username
passwd  username

#sudo  
visudo
       root ALL=(ALL) ALL ,       
    username ALL=(ALL) ALL

reboot
다시 시작 하 다
NGINX 설치
http://www.jianshu.com/p/207f6b0dc673

좋은 웹페이지 즐겨찾기