Centos python3.7.4 & 슈퍼바이저 설치

1347 단어
supervisor
yum install epel-release
yum install supervisor

python3.7
yum install zlib-devel bzip2-devel openssl-devel ncurses-devel sqlite-devel readline-devel tk-devel gcc make libffi-devel -y
cd /opt
wget https://www.python.org/ftp/python/3.7.4/Python-3.7.4.tgz
tar -zxvf Python-3.7.4.tgz
cd Python-3.7.4
./configure --with-ssl
make && make install

디스크 마운트
4
  • 대응하는 디스크 보기
  • fdisk -l


  • 4
  • 디스크 파티셔닝
  • fdisk/dev/vdb

  • Command (m for help): **n** //  
    Partition type:
    p primary (0 primary, 0 extended, 4 free)
    e extended
    Select (default p): **p**//   
    Partition number (1-4, default 1): **//  **
    First sector (2048-41943039, default 2048): **//  **
    Command (m for help): **p**//  
    Command (m for help): **wq**//  
    

    4
  • 마운트된 파티션 및 파일 시스템 유형 보기
  • df -T

  •                      1K-                 %    
    /dev/vda1      ext4     41151808 36711684 2326692   95% /
    

    4
  • 포맷 구역 이 데이터 디스크는 ext4 파일 포맷으로 포맷됨
  • mkfs.ext4/dev/vdb1


  • 4
  • 장치를 지정한 디렉터리에 마운트하기/dfs1 (신중하게 조작하기 전에 이 디렉터리가 있는지 확인해야 합니다)
  • mkdir/dfs1
  • mount/dev/vdb1/dfs1
  • echo/dev/vdb1/dfs1 ext4 defaults 0 0 >>/etc/fstab

  • 좋은 웹페이지 즐겨찾기