摘要:
有如下json格式字符串,需要使用golang-mongo-driver,操作入库。 (该告警字符串来自WiseAPM告警中心) 写入过程是,将json格式字符串转化为字节类型,使用bson提供的UnmarshalExtJSON方法,构造一个bson.D数据结构,就可以使用Insert系列方法写入m 阅读全文
2021年2月1日
2019年9月14日
2019年3月10日
摘要:
我是在CentOS6.5安装php5.5.28这个版本,PHP编译代码如下: ./configure --prefix=/usr/local/php --with-config-file-path=/usr/local/php/etc --with-mysql=/usr/local/mysql -- 阅读全文
2019年1月29日
摘要:
写好celery任务文件,使用celery -A app worker --loglevel=info启动时,报告如下错误: [2019-01-29 01:19:26,680: ERROR/MainProcess] consumer: Cannot connect to amqp://sunligh 阅读全文
2018年12月21日
摘要:
创建Linux管理员账号admin, 并加入wheel组,对mongodb, php等进行统一管理~ systemLog:destination: filelogAppend: truepath: /var/log/mongodb/mongod.log storage:dbPath: /data/m 阅读全文
摘要:
[Unit]Description=php-fpm - Hypertext PreprocessorAfter=network.target remote-fs.target nss-lookup.target [Service]Type=simplePIDFile=/usr/local/php7/ 阅读全文
2018年12月20日
摘要:
1. 添加bash全局配置文件: cd /etc/profile.d sudo -e vi log_command.sh 输入如下内容: export PROMPT_COMMAND='RETRN_VAL=$?;logger -p local6.debug "$(whoami) [$$]: $(his 阅读全文
摘要:
./configure \--with-fpm-user=www \--with-fpm-group=www \--prefix=/usr/local/php7 \--with-config-file-path=/usr/local/php7/etc \--with-mysql-sock \--wi 阅读全文
摘要:
[client]port = 3306socket = /tmp/mysql.sockdefault-character-set=utf8 [mysqld]port = 3306socket = /tmp/mysql.sockskip-name-resolvecharacter-set-server 阅读全文
2018年9月7日
摘要:
#!/usr/bin/env python#-*- coding:UTF-8 -*- from multiprocessing import Process , Queuefrom queue import Queue,Empty as QueueEmptyimport subprocessimpo 阅读全文