linux 重要笔记
nginx 服务器重启命令,关闭
nginx -s reload :修改配置后重新加载生效
nginx -s reopen :重新打开日志文件
nginx -t -c /path/to/nginx.conf 测试nginx配置文件是否正确
关闭nginx:
nginx -s stop :快速停止nginx
quit :完整有序的停止nginx
其他的停止nginx 方式:
启动nginx:
平滑重启nginx:
nginx -t -c /path/to/nginx.conf 测试nginx配置文件是否正确
关闭nginx:
nginx -s stop :快速停止nginx
quit :完整有序的停止nginx
其他的停止nginx 方式:
ps -ef | grep nginx kill -QUIT 主进程号 :从容停止Nginx kill -TERM 主进程号 :快速停止Nginx pkill -9 nginx :强制停止Nginx
nginx -c /path/to/nginx.conf
kill -HUP 主进程号
发现php.ini没有生效使用下面的命令查看php加载ini的位置:
php -i |grep php.ini 或者: php --ini
解压:
1、 *.tar 用 tar –xvf 解压 2、 *.gz 用 gzip -d或者gunzip 解压 3、 *.tar.gz和*.tgz 用 tar –xzf 解压 4、 *.bz2 用 bzip2 -d或者用bunzip2 解压 5、 *.tar.bz2用tar –xjf 解压 6、 *.Z 用 uncompress 解压 7、 *.tar.Z 用tar –xZf 解压 8、 *.rar 用 unrar e解压 9、 *.zip 用 unzip 解压 10、 *.tar.xz ①xz -d *.tar.xz 解压成tar包 ②tar -xvf *.tar