调整linux的最大文件打开数和用户进程数 打开/etc/security/limits.conf,在最后一行添加如下命令: * soft nofile 65535 * hard nofile 65535 * soft nproc 10240 * hard nproc 10240 在系统的/etc/ ...
分类:
系统相关 时间:
2018-05-17 13:41:45
阅读次数:
187
修改文件句柄vim /etc/security/limits.conf# 修改* soft nofile 65535* hard nofile 65535添加用户useradd -s /usr/sbin/nologin mysqlmkdir -p /home/mysqldatachown -R my... ...
分类:
数据库 时间:
2018-04-21 19:47:20
阅读次数:
187
获取RPM包 # wget https://dev.mysql.com/get/mysql57-community-release-el7-11.noarch.rpm 列出RPM包里都有哪些文件 # rpm -qpl mysql57-community-release-el7-11.noarch.r ...
分类:
数据库 时间:
2018-04-19 17:02:31
阅读次数:
471
worker_processes 设置为CPU总核数量的两倍, worker_cpu_affinity 多少个cpu多少个0 worker_rlimit_nofile配置要和系统的单进程打开文件数一致 events { #作为http时worker_processes*worker_connecti ...
分类:
其他好文 时间:
2018-03-22 13:39:06
阅读次数:
154
mongodb是最常用的noSql数据库,在数据库排名中已经上升到了前五。这篇文章介绍如何搭建高可用的mongodb(分片+副本)集群。 在搭建集群之前,需要首先了解几个概念:路由,分片、副本集、配置服务器等。相关概念mongodb集群架构图: 从图中可以看到有四个组件:mongos、config ...
分类:
数据库 时间:
2018-03-20 20:46:36
阅读次数:
378
安装步骤下载源码包2解压包并编译make&&makeinstall查看目录conf配置文件目录html样例文件sbin进程-t查看配置文件是否出错编辑启动脚本文件内容下载地址更改权限并添加服务编辑配置文件vimnginx.conf下载地址文件内容定义user定义启动nginx的用户worker_processes子进程数量worker_rlimit_nofile定义打开多少个文件w
分类:
其他好文 时间:
2018-03-13 21:10:34
阅读次数:
184
worker_processes 4;error_log logs/error.log crit; #日志位置和日志级别pid logs/nginx.pid;worker_rlimit_nofile 65535;events { worker_connections 65535;}http { in ...
分类:
其他好文 时间:
2018-01-23 14:26:33
阅读次数:
193
这里只介绍一种永久性的修改方式 使用root用户修改配置文件:/etc/security/limits.conf 增加如下内容 * soft nproc 10240 * hard nproc 10240 * soft nofile 10240 * hard nofile 10240 其中nofile ...
分类:
系统相关 时间:
2018-01-08 18:41:41
阅读次数:
210
背景 最近在工作中发现了一个错误,在执行多线程扫描脚本的时候频繁出现下面这个错误 HTTPConnectionPool(host=‘t.tips', port=80): Max retries exceeded with url: /index.php (Caused by NewConnectio ...
分类:
编程语言 时间:
2018-01-05 01:21:45
阅读次数:
443