博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Centos7修改默认最大文件打开数
阅读量:6601 次
发布时间:2019-06-24

本文共 3533 字,大约阅读时间需要 11 分钟。

方法一:

[root@bogon ~]# vi /etc/systemd/system.conf[root@bogon ~]# cat /etc/systemd/system.conf #  This file is part of systemd.##  systemd is free software; you can redistribute it and/or modify it#  under the terms of the GNU Lesser General Public License as published by#  the Free Software Foundation; either version 2.1 of the License, or#  (at your option) any later version.## Entries in this file show the compile time defaults.# You can change settings by editing this file.# Defaults can be restored by simply deleting this file.## See systemd-system.conf(5) for details.[Manager]#LogLevel=info#LogTarget=journal-or-kmsg#LogColor=yes#LogLocation=no#DumpCore=yes#CrashShell=no#ShowStatus=yes#CrashChVT=1#CPUAffinity=1 2#JoinControllers=cpu,cpuacct net_cls,net_prio#RuntimeWatchdogSec=0#ShutdownWatchdogSec=10min#CapabilityBoundingSet=#SystemCallArchitectures=#TimerSlackNSec=#DefaultTimerAccuracySec=1min#DefaultStandardOutput=journal#DefaultStandardError=inherit#DefaultTimeoutStartSec=90s#DefaultTimeoutStopSec=90s#DefaultRestartSec=100ms#DefaultStartLimitInterval=10s#DefaultStartLimitBurst=5#DefaultEnvironment=#DefaultCPUAccounting=no#DefaultBlockIOAccounting=no#DefaultMemoryAccounting=no#DefaultLimitCPU=#DefaultLimitFSIZE=#DefaultLimitDATA=#DefaultLimitSTACK=#DefaultLimitCORE=#DefaultLimitRSS=#DefaultLimitNOFILE=DefaultLimitNOFILE=1024000      #这里需要修改#DefaultLimitAS=#DefaultLimitNPROC=DefaultLimitNPROC=1024000   #这里也需要修改#DefaultLimitMEMLOCK=#DefaultLimitLOCKS=#DefaultLimitSIGPENDING=#DefaultLimitMSGQUEUE=#DefaultLimitNICE=#DefaultLimitRTPRIO=#DefaultLimitRTTIME= [root@bogon ~]# ulimit -a      #修改之后没有重启core file size          (blocks, -c) 0data seg size           (kbytes, -d) unlimitedscheduling priority             (-e) 0file size               (blocks, -f) unlimitedpending signals                 (-i) 3791max locked memory       (kbytes, -l) 64max memory size         (kbytes, -m) unlimitedopen files                      (-n) 1024   #还是默认值1024pipe size            (512 bytes, -p) 8POSIX message queues     (bytes, -q) 819200real-time priority              (-r) 0stack size              (kbytes, -s) 8192cpu time               (seconds, -t) unlimitedmax user processes              (-u) 3791virtual memory          (kbytes, -v) unlimitedfile locks                      (-x) unlimited[root@bogon ~]# rebootConnection to 192.168.1.107 closed by remote host.Connection to 192.168.1.107 closed.root@BP:~# ssh 192.168.1.107    #我使用的是密钥登录,所以不用再输入密码Last login: Mon Jun 26 15:38:21 2017 from 192.168.1.100u[root@bogon ~]# ulimit -acore file size          (blocks, -c) 0data seg size           (kbytes, -d) unlimitedscheduling priority             (-e) 0file size               (blocks, -f) unlimitedpending signals                 (-i) 3791max locked memory       (kbytes, -l) 64max memory size         (kbytes, -m) unlimitedopen files                      (-n) 1024000     #重启后生效了pipe size            (512 bytes, -p) 8POSIX message queues     (bytes, -q) 819200real-time priority              (-r) 0stack size              (kbytes, -s) 8192cpu time               (seconds, -t) unlimitedmax user processes              (-u) 1024000virtual memory          (kbytes, -v) unlimitedfile locks                      (-x) unlimited[root@bogon ~]# 方法二:

ulimit只能做临时修改,重启后失效。

可以加入
ulimit -SHn 65535
到 /etc/rc.local 每次启动启用。

 

终极解除 Linux 系统的最大进程数和最大文件打开数限制:

vim /etc/security/limits.conf
# 添加如下的行
* soft nproc 11000
* hard nproc 11000
* soft nofile 655350
* hard nofile 655350

 

转载于:https://www.cnblogs.com/biaopei/p/7730544.html

你可能感兴趣的文章
246. Strobogrammatic Number - Easy
查看>>
25. Reverse Nodes in k-Group - Hard
查看>>
如何快速备份还原Sql Server 数据库
查看>>
洛谷——P2799 国王的魔镜
查看>>
架构师职位与软件文档的思考
查看>>
OneZero第七周第一次站立会议(2016.5.9)
查看>>
php对象、面向对象
查看>>
iOS下的2D仿射变换机制(CGAffineTransform相关)
查看>>
storm实战总结笔记
查看>>
如何更改远程桌面3389端口号?
查看>>
修改android studio中的avd sdk路径、avd sdk找不到的解决方案
查看>>
ecshop文章列表页调用文章分类名称
查看>>
MYSQL中防止插入重复记录的解决方案(无重复值更新)
查看>>
前端常见性能优化方法
查看>>
Cup
查看>>
Peaceful Commission
查看>>
第五章 自下而上分析
查看>>
Spring Data JPA学习笔记
查看>>
算法练习(6)字符串中所有连续的字符串
查看>>
Tomcat学习总结(12)—— Tomcat集群配置
查看>>