linux zip nginx常用软件安装

压缩和解压的zip程序安装

#yum install -y unzip zip

简单使用:

zip -r 文件名 文件目录

#zip -r tomcat.zip tomat/

安装nginx

#yum install nginx

简单使用:

启动、停止、重启、状态

#systemctl start nginx.service

#systemctl stop nginx.service

#systemctl restart nginx.service

#systemctl ststus nginx.service


你可能感兴趣的:(shell)