#!/bin/bash##httpdStartupscriptfortheApacheHTTPServer##chkconfig:-8515#description:ApacheisaWorldWideWebserver.Itisusedtoserve\#HTMLfilesandCGI.#processname:httpd#config:/etc/httpd/conf/httpd.conf#config:/etc/sysconfig/httpd#pidfile:/var/run/httpd.pid#Sourc..
分类:
其他好文 时间:
2015-05-31 01:33:31
阅读次数:
128
#catredis.confdaemonizeyes#是否以后台进程运行pidfile/var/run/redis/redis-server.pid#pid文件位置port6379#监听端口bind127.0.0.1#绑定地址,如外网需要连接,设置0.0.0.0timeout300#连接超时时间,单位秒loglevelnotice#日志级别,分别有:#debug:适用于开发和测试#verbo..
分类:
其他好文 时间:
2015-05-29 15:58:45
阅读次数:
182
daemonize yes #是否以后台进程运行,默认为no pidfile /var/run/redis.pid #如以后台进程运行,则需指定一个pid,默认为/var/run/redis.pid bind 127.0.0.1 #绑定主机IP,默认值为127.0.0.1(注释) port 6379...
分类:
其他好文 时间:
2015-05-28 17:36:16
阅读次数:
159
1. Redis默认不是以守护进程的方式运行,可以通过该配置项修改,使用yes启用守护进程daemonize no2. 当Redis以守护进程方式运行时,Redis默认会把pid写入/var/run/redis.pid文件,可以通过pidfile指定pidfile /var/run/redis.pi...
分类:
其他好文 时间:
2015-05-15 17:29:06
阅读次数:
197
系统:centos6.5ip:10.19.21.241被同步端10.19.21.242同步端一.配置rsync(同步端)1.安装rsync#yuminstall-yrsync2.写rsync配置#vi/etc/rsyncd.conf
uid=root
gid=root
usechroot=no
maxconnections=0#最大连接数不限制
logfile=/var/log/rsyncd.log
pidfile=/var/run/rsyncd.p..
分类:
其他好文 时间:
2015-05-14 12:17:33
阅读次数:
137
daemonize no Redis默认不是以守护进程的方式运行,可以通过该配置项修改,使用yes启用守护进程pidfile /var/run/redis.pid当Redis以守护进程方式运行时,Redis默认会把pid写入/var/run/redis.pid文件,可以通过pidfile指定port...
分类:
其他好文 时间:
2015-05-09 21:56:06
阅读次数:
120
1、下载http://redis.io/2、安装tar -zxvfredis-2.8.19.tar.gzmakemake install3、修改配置redis.confdaemonize yes###后台启动pidfile当Redis在后台运行的时候,Redis默认会把pid文件放在/var/run...
分类:
其他好文 时间:
2015-04-30 12:21:34
阅读次数:
100
#!/bin/sh##nginx-thisscriptstartsandstopsthenginxdaemon##chkconfig:-8515#description:NginxisanHTTP(S)server,HTTP(S)reverse\#proxyandIMAP/POP3proxyserver#processname:nginx#config:/etc/nginx/nginx.conf#config:/etc/sysconfig/nginx#pidfile:/var/run/nginx/nginx...
分类:
其他好文 时间:
2015-04-13 21:10:04
阅读次数:
169
1、 开机自动启动Redis 1),拷贝redis目录utils下的redis_init_script文件到/etc/init.d,并将其重命名为redisd,再运行chmod u+x redisd 2),修改redis根目录下的redis.conf,将daemonize修改为yes,将pidfile,...
分类:
其他好文 时间:
2015-04-10 11:46:05
阅读次数:
197
#vim/etc/httpd24/httpd.conf
PidFile"/var/run/httpd/httpd.pid"
LoadModulephp5_modulemodules/libphp5.so
DocumentRoot"/web/htdocs"
<Directory"/web/htdocs">
#vim/web/htdocs/index.php#里面的内容是摘抄的
<metahttp-equiv="Content-Type"content="text/html;c..
分类:
数据库 时间:
2015-04-08 16:51:40
阅读次数:
347