重新启动nginx后,出现报错,原因就是下没有nginx文件夹或没有nginx.pid文件,为什么会没有呢? 原因就是每次重新启动,系统都会自动删除文件,所以解决方式就是更改pid文件存储的位置, 打开nginx.conf配置文件,把红色部分打开,重启服务器或者重新加载配置文件,这样nginx.pid路径就更改成功!   接下来,创建logs文件夹   如何生成nginx.pid文件 在sbin/ 路径下执行  ./nginx -c /usr/local/nginx/conf/nginx.con…
nginx: [error] open() "/usr/local/var/run/nginx.pid" failed (2: No such file or directory) 2017年09月14日 09:15:45 阅读数:7742 启动Nginx出现这个错误 nginx: [error] open() "/usr/local/var/run/nginx.pid" failed (2: No such file or directory) 1  解决方法:找…
第一种方案: 1. 执行命令 :open /usr/local/etc/nginx 打开nginx安装目录 nginx安装目录默认位置有:(找到适合你的) /etc/nginx/nginx.conf, /usr/local/etc/nginx/nginx.conf,或 /usr/local/nginx/conf/nginx.conf 2.放开注释,改为:pid /usr/local/etc/nginx/logs/nginx.pid; 3.执行命令:mkdir /usr/local/etc/ngi…
解决: 服务没有启动 使用start启动服务,因为没有start而直接使用stop或者reload报错这个问题: 如果方法一没有解决,使用方法二:-C 指定配置文件nginx.conf或者weblua.conf…
在Mac上用brew安装Nginx,然后修改Nginx配置文件,再重启时报出如下错误: nginx: [error] invalid PID number "" in "/usr/local/var/run/nginx/nginx.pid" 解决办法: 指定一个特定的nginx加载配置文件.$ sudo nginx -c /usr/local/etc/nginx/nginx.conf $ sudo nginx -s reload…
在安装HomeBrew(或者安装成功 执行相关指令)时遇到错误提示: Error: Failure while executing: git clone https://github.com/Homebrew/homebrew-core /usr/local/Library/Taps/homebrew/homebrew-core --config core.autocrlf=false --depth=1 -q Error: Failure while executing: /usr/local…
问题:nginx启动的时候会报丢失pid的错误 nginx: [error] open() “/usr/local/var/run/nginx.pid” failed 解决方案: sudo nginx -c /usr/local/etc/nginx/nginx.conf sudo nginx -s reload…
写在前面 最近项目经理要求将原先项目中的日志配置logBack,修改为log4j2,据说是log4j2性能更优于logback,具体快多少,网上有说快10多倍,看来还是很快的,于是新的一波挑战又开始了,网上查找各种资料,官方文档各种啃,最终实现了迁移,所以,鉴于此,特记录一下,谨防遗忘. SpringBoot整合log4j2进行日志配置及防坑指南 1.Log4j2优点 具体优点可以参考官方文档:https://logging.apache.org/log4j/2.x/ 我这边只简单说一下: 相比…
重装nginx出现,重启出现错误 ./nginx -s reload nginx: [error] open() "/usr/local/nginx/logs/nginx.pid" failed (2: No such file or directory) 解决办法: /usr/local/nginx/sbin/nginx -c /usr/local/nginx/conf/nginx.conf 命令解释: -c filename : set configuration file (de…
position: sticky 防坑指南:https://www.jianshu.com/p/e217905e8b87 今天在写小程序项目的时候碰到一个需求是要把轮播图下面的标签栏滑动到顶部后固定,类似网易考拉小程序这种效果:   image.png ,刚开始是准备使用,js计算距离顶部高度,然后使用position:fixed,来实现的.在使用scroll-view,计算scrollTop的值,当scrollTop大于190时,添加样式position:fixed,但是这个方法在真机测试的时…