centos服务器nginx相关命令】的更多相关文章

1.找到nginx路径: ps aux | grep nginx -> /usr/local/nginx/sbin/nginx 2.nginx配置检查: /usr/local/nginx/sbin/nginx -t 3.其他 /usr/local/nginx/sbin/nginx -s reload 重载 /usr/local/nginx/sbin/nginx -s stop 停止 4.启动 /usr/local/nginx/sbin/nginx -c /usr/local/nginx/conf…
nginx 相关命令 学习了:https://www.cnblogs.com/zoro-zero/p/6590503.html start nginx  或者在linux上面直接 nginx nginx -t # 验证配置文件:无法验证其它文件的情况 nginx -s reload # 重新加载:可以重启其它文件启动的情况 nginx -s stop # 快速停止 nginx -s quit # 正常停止 nginx -V # 查看版本 nginx -c conf/web01.conf # 使用…
1.依赖项和必要组件 yum install -y make cmake gcc gcc-c++ yum install -y pcre pcre-devel yum install -y zlib zlib-devel yum install -y openssl openssl-devel 2.下载安装nginx wget http:.tar.gz * 可以根据需要下载不同版本.官网:http://nginx.org/en/download.html 3.解压 tar zxvf nginx.…
yum -y install gcc gcc-c++ autoconf automake libtool make cmake yum -y install zlib zlib-devel openssl openssl-devel pcre-devel 2.安装nginx ./configure --with-http_ssl_module --with-http_stub_status_module --with-pcre make make install 3,安装之后nginx 的路径是…
验证配置是否正确: nginx -t 查看Nginx的版本号:nginx -V 启动Nginx:start nginx 快速停止或关闭Nginx:nginx -s stop 正常停止或关闭Nginx:nginx -s quit 配置文件修改重装载命令:nginx -s reload 1.错误情况: nginx: [error] CreateFile() "E:\nginx\nginx-1.9.3/logs/nginx.pid" failed nginx: [error] Open()…
1.安装相关包 yum install samba samba-client samba-common 2.启动smb的命令 systemctl enable smb.service systemctl enable nmb.service systemctl restart smb.service systemctl restart nmb.service #  systemctl restart smb # systemctl reload smb # systemctl status sm…
一:Linux下tomcat服务的启动.关闭与错误跟踪,使用PuTTy远程连接到服务器以后,通常通过以下几种方式启动关闭tomcat服务:切换到tomcat主目录下的bin目录(cd usr/local/tomcat/bin)1,启动tomcat服务方式一:直接启动 ./startup.sh方式二:作为服务启动 nohup ./startup.sh &方式三:控制台动态输出方式启动 ./catalina.sh run 动态地显示tomcat后台的控制台输出信息,Ctrl+C后退出并关闭服务解释:…
systemctl start firewalld ##启动Firewall systemctl stop firewalld ##关闭Firewall systemctl restart firewalld ##重启Firewall 禁止开机启动启动防火墙 systemctl disable firewalld 开放端口 firewall-cmd --permanent --add-port=8081-8085/tcp 移除端口 firewall-cmd --permanent --remov…
https://www.cnblogs.com/zdz8207/p/CentOS-nginx-yum.html…
1.free -m只能查看内存总量情况 2.top M ( 注意M是大写) 3.ps aux|head -1; ps aux | sort -k4nr | head -10 --------------------- 硬盘占用 df -lh (查看文件占用) du -h --max-depth=1 (查看删除占用) lsof -n | grep deleted 查看日志 tail -1  /var/log/boot.log…