码迷,mamicode.com
首页 >  
搜索关键字:pidfile    ( 236个结果
redis3.2.8 设置开机自启动
首先在/etc/init.d中建立redis文件,文件内容如下:#!/bin/bash#redis-3.2.8-thisscriptstartandstoptheredis-serverdaemon##processname:redis-server#config:/opt/app/redis-3.2.8/bin/redis.conf自己redi.conf文件路径#pidfile:/var/run/redis_6379.pidPATH=/usr/local/bin:..
分类:其他好文   时间:2017-07-20 11:30:47    阅读次数:192
Redis.conf及其Sentinel.conf配置项详细说明
一、redis.conf 配置项说明如下: 1. daemonize no Redis默认不是以守护进程的方式运行,可以通过该配置项修改,使用yes启用守护进程 2. pidfile /var/run/redis_6379.pid 当Redis以守护进程方式运行时,即使该项没有配置,Redis也会默 ...
分类:其他好文   时间:2017-07-11 11:15:35    阅读次数:3941
haproxy 配置https
今天测试配置haproxy代理https,一直报错,后来发现,后端已经是https这里则不需要特别指定了配置文件如下:global log127.0.0.1local2 chroot/var/lib/haproxy pidfile/var/run/haproxy.pid maxconn4000 userhaproxy grouphaproxy daemon statssocket/var/lib/haproxy/stats ..
分类:Web程序   时间:2017-07-06 13:15:40    阅读次数:216
shell脚本判断是否存在某文件
#!/bin/sh for i in `seq 1 3`do pidfile_="worldd${i}.pid" if [ -f ${pidfile_} ]; then pid_=`cat ${pidfile_}` rm -f ${pidfile_} echo -n "killing worldd ...
分类:系统相关   时间:2017-07-01 16:21:26    阅读次数:244
Linux(CentOS)下,下载安装Nginx并配置
1、准备工作 选首先安装这几个软件:GCC,PCRE(Perl Compatible Regular Expression),zlib,OpenSSL。 Nginx是C写的,需要用GCC编译;Nginx的Rewrite和HTTP模块会用到PCRE;Nginx中的Gzip用到zlib; 用命令“# g... ...
分类:系统相关   时间:2017-06-28 19:04:14    阅读次数:238
Zabbix agent on Zabbix server is unreachable for 5 minutes
环境描述: 环境介绍:CentOS6.5 zabbix3.2.6(zabbix客户端与服务端在一台主机) 1.在安装完zabbix之后,添加客户端,客户端配置(zabbix_agentd.conf)如下 PidFile=/var/run/zabbix/zabbix_agentd.pidLogFile ...
分类:其他好文   时间:2017-06-22 19:11:40    阅读次数:678
linux同步服务器rsync+sersync的配置
同步的服务器端配置mkdri/data/filedir chown-Rrsync:rsync/data/filedir yuminstallrsync-y 创建配置文件 [root@node1filedir]#vim/etc/rsyncd.conf ##rsync.confconfigstart uid=rsync gid=rsync usechroot=no maxconnetctions=200 timeout=100 pidfile=/var/run/rsyncd.p..
分类:系统相关   时间:2017-06-21 11:39:03    阅读次数:186
Linux:supervisor命令的使用
supervisor是Linux下一个便利的启动和监控服务的命令。 举例来说:假如我想同时管理一堆的服务,包括他们的运行和停止。我就可以使用supervisor来管理。 supervisor包括两个命令:supervisord和supervisorctl,分别是后台的守护进程以及命令行管理命令。要安 ...
分类:系统相关   时间:2017-06-20 22:19:51    阅读次数:251
redis 3.2.3 集群部署
部署环境: 1.下载redis安装包 2.编译安装 #确认有没有安装make命令,没有的话需要执行以下操作,有的话就不用了 #安装: yum -y install gcc automake autoconf libtool make #安装g++: yum install gcc gcc-c++ # ...
分类:其他好文   时间:2017-06-19 19:40:51    阅读次数:210
nginx启动脚本
#!/usr/bin/pythonimportsysimportosfromsysimportargvDAMON=‘/opt/server/nginx/sbin/nginx‘CONFIG=‘/opt/server/nginx/conf/nginx.conf‘PIDFILE=‘/var/run/nginx/nginx.pid‘NGSTART=‘%s-c%s‘%(DAMON,CONFIG)NGSTOP=‘kill-QUIT`cat%s`‘%PIDFILEdefn_start():ifos.path.isfile(..
分类:其他好文   时间:2017-06-15 16:20:50    阅读次数:168
236条   上一页 1 ... 11 12 13 14 15 ... 24 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!