Loading

邢栋博客

关于nginx启动、停止、重启命令总结

nginx启动 /usr/local/nginx/sbin/nginx -c /usr/local/nginx/conf/nginx.conf nginx停止 1.从容停止 ps aux|grep nginx //master进程号,例如是 1480 kill -QUIT 1480 2.快速停止 kill -TERM 1480 或 kill INT 1480 3.强制停止 pkill -9 nginx 或 killall nginx nginx重启 检测配置文件是否正确 nginx -t 然后 nginx -s reload 或者 kill -HUP 1...

linux下通过postfix发送邮件以及shell监控报警脚本

安装postfix前准备 首先查看本机有没有安装 sendmail rpm -qa|grep sendmail 或者 alternatives --display mta 如果存在则删除或者停止 yum remove sendmail 安装postfix yum -y install postfix* vim /etc/postfix/main.cf 修改 myhostname = mail.flycoder.cn mydomain = flycoder.cn myorigin = $mydomain inet_protocols = ipv4 启动服务...

php设计模式之策略模式简单事例

<?php //策略模式 interface OutputInterface { public function load($arrayOfData); } class SerializedArrayOutput implements OutputInterface { public function load($arrayOfData) { return serialize($arrayOfData); } } class JsonStringOutput implements Output...

php设计模式之单例模式简单事例

<?php //单例模式 class Singleton { /** * @var 这个类的"单例" */ private static $instance; /** * 防止在这个类之外new这个类 */ private function __construct() { } /** * @return 返回这个类的单例 */ public static function getInstance() { ...

php设计模式之工厂模式简单事例

<?php //工厂模式 class Automobile { private $vehicleMake; private $vehicleModle; public function __construct($make,$model) { $this->vehicleMake = $make; $this->vehicleModle = $model; } public function getMakeAndModel() { ...

shell脚本下执行sql语句

vim mysql.sh #!/bin/bash host='127.0.0.1' user='root' passwd='root' dbname='test' test_sql='select count(*) from test' num=$(mysql -s -h$host -u$user -p$passwd $dbname -e "$test_sql") echo $num

php-fpm重启、启动、停止命令

启动php-fpm: /usr/local/php/sbin/php-fpm php-fpm需要使用信号控制,master进程可以理解以下信号 INT, TERM 立刻终止 QUIT 平滑终止 USR1 重新打开日志文件 USR2 平滑重载所有worker进程并重新载入配置和二进制模块 重启方法1 先查看php-fpm的master进程号 ps aux|grep php-fpm 然后 kill -USR2 进程号 重启方法2 cat /usr/local/php/etc/php-fpm.conf 找到对应的php-fpm.pid ...

使用shell脚本每秒执行一次php程序

vim test.sh #!/bin/bash step=1 #间隔的秒数,不能大于60 for (( i = 0; i < 60; i=(i+step) )); do $(/work/software/php/bin/php '/work/www/live/test.php') sleep $step done exit 0

php关于猴子选大王的算法题

<?php /** * $m 猴子总数 * $n 出局数 */ function king($m,$n){ $arr = range(1, $m); $i = 0; while (count($arr)>1) { if(($i+1)%$n == 0){ unset($arr[$i]); }else{ array_push($arr, $...

redis查看当前redis-server启动使用的配置文件

redis查看当前redis-server启动使用的配置文件 redis-cli info | grep config