先在 项目的根目录下 新建一个uwsgi.ini的文件(名字可以改) uwsgi 配置 [uwsgi] socket=外网ip:端口(使用nginx连接时,使用socket) http=外网ip:端口(直接做web服务器,使用http) chdir=项目根目录 wsgi-file=项目中wsgi.p ...
分类:
其他好文 时间:
2020-03-08 19:17:59
阅读次数:
59
服务端:rsyncd.conf配置 [root@server2 ~]# cat /etc/rsyncd.conf log file = /var/log/rsyncd.log pidfile = /var/run/rsyncd.pidlock file = /var/run/rsync.lockse ...
分类:
其他好文 时间:
2020-02-29 22:34:01
阅读次数:
86
1、什么是supervisor 1. Supervisor是用Python开发的一个client/server服务,是Linux/Unix系统下的一个进程管理工具,不支持Windows系统。、 2. 作用:它可以很方便的监听、启动、停止、重启一个或多个进程。 3. 用Supervisor管理的进程, ...
分类:
系统相关 时间:
2020-02-27 00:48:15
阅读次数:
69
agent常用参数 : [root@localhost zabbix]# cat zabbix_agentd.conf | grep -v ^$ | grep -v ^# PidFile=/var/run/zabbix/zabbix_agentd.pid LogFile=/var/log/zabbi ...
分类:
其他好文 时间:
2020-02-25 13:05:25
阅读次数:
57
参数说明 redis.conf 配置项说明如下: 1. Redis默认不是以守护进程的方式运行,可以通过该配置项修改,使用yes启用守护进程 daemonize no 2. 当Redis以守护进程方式运行时,Redis默认会把pid写入/var/run/redis.pid文件,可以通过pidfile ...
分类:
其他好文 时间:
2020-01-21 13:26:14
阅读次数:
59
官网教程,获取最新版https://redis.io/download 1.安装gcc, redis是c语言编写的yum install gcc-c++ 2、进入 local目录 cd /usr/local 3、下载redis安装包wget http://download.redis.io/rele ...
分类:
系统相关 时间:
2020-01-12 18:18:43
阅读次数:
101
一、Redis集群配置 为每一个集群的节点准备一个配置文件: # 7000.conf port 7000 bind 192.168.1.181 daemonize yes pidfile 7000.pid cluster-enabled yes cluster-config-file 7000_no ...
分类:
数据库 时间:
2020-01-06 00:37:55
阅读次数:
106
openstack paroxy配置 ####所有控制节点配置yum install haproxy -y ############haproxy配置, #允许没VIP时启动 echo "net.ipv4.ip_nonlocal_bind = 1" >>/etc/sysctl.conf sysctl ...
分类:
其他好文 时间:
2019-11-08 12:19:46
阅读次数:
121
1.安装redis tar -zxvf redis-2.8.6.tar.gz 解压 cd redis-2.8.6 Make Make install 目的把Redis中生成的redis-server redis- cli 拷贝到 /usr/local/bin 目录中 好处:可以在Linux服务器中的 ...
分类:
其他好文 时间:
2019-10-27 10:40:36
阅读次数:
109
rediscluster+redisreplication搭建环境部署搭建192.168.255.250[root@vt-manager3010]#grep-vE"^#|^$"redis.confbind192.168.255.250##一定要写本机ip并且建立集群的时候要用这个ip建立port3010daemonizeyes#守护线程模式(后台启动)pidfile/etc/redis-clust
分类:
其他好文 时间:
2019-10-22 16:54:22
阅读次数:
94