ChinaUnix.net
相关文章推荐:

solaris ulimit

系统配置, 4G内存, solaris 9, 作WebServer。 以及一个网络应用的TCP SERVER, client有100多个。 目前设置ulimit打开文件数为缺省值256, TCP server经常出现 断开连接之后长时间处于CLOSE_WAIT状态,导致很多连接出于CLOSE-WAIT状态, 从而拒绝连接。 这是不是Deny Of Service? 请问是不是因为256太小的缘故? 通常这样的配置, 应该改成多大?

by jtrincer - Solaris - 2004-12-14 21:57:27 阅读(3349) 回复(0)

相关讨论

1.想问一下.为什么直接执行就报错? ulimit -c 2048 [oracle@boss ~]$ ulimit -c 2048 -bash: ulimit: core file size: cannot modify limit: Operation not permitted 2.想问一下solaris下改某一用户的limit 标准方法是什么?

by tomasfly88 - Solaris - 2011-01-20 22:26:09 阅读(5916) 回复(3)

谁可以告诉我,设置哪个文件的哪些参数,可以使 ulimit -a返回的值都是unlimited ?

by sunfire_bj - Solaris - 2007-11-07 00:20:12 阅读(9429) 回复(3)

修改系统允许打开的进程数与文件数: noproc表示进程数,nofile表示文件数,*表示系统中任何用户 vi /etc/security/limilts.conf * soft noproc 10000 * hard noproc 10000 * soft nofile 4096 * hard nofile 4096 重启机器。 ulimit -a显示所有soft limits,<=hard limits ulimit -Ha显示所有hard limits 本文来自ChinaUnix博客,如果查看原文请点:http://blog.chi...

by djstava - Linux文档专区 - 2009-06-11 15:44:12 阅读(852) 回复(0)

Nazgul@AIX> pg /etc/security/limits * * Sizes are in multiples of 512 byte blocks, CPU time is in seconds * * fsize - soft file size in blocks * core - soft core file size in blocks * cpu - soft per process CPU time limit in seconds * data - soft data segment size in blocks * stack - soft stack segment size in blocks * rss - soft real memory usage in blocks * no...

by redegao - AIX文档中心 - 2007-02-27 18:49:10 阅读(1089) 回复(0)

比如,mysqld ,之类的服务进程,开机自动运行的,会受ulimit -n参数的限制么? 还有通过crond启动的进程。 一般资料都是说登录到SHELL后会受到限制,这些不需要登录SHELL的情况呢?

by SeriousCool - Linux系统管理 - 2013-06-24 12:08:06 阅读(1209) 回复(3)

apache启动不了, 发现是can not open too many files, ulimit的问题 在rc.local这样写, 发现可以可以了 ulimit -SHn 102400 /usr/local/apache/bin/apachectl start 后来看网上说写在/etc/security/limits.conf比较规范 那么就写上 #* soft core 0 #* hard rss 10000 #@student hard nproc 20 #@faculty soft nproc 20 #@...

by bun - Linux系统管理 - 2011-07-26 23:21:19 阅读(4056) 回复(10)

系统中有个用户su 切换的时候报如下错误: #su - tanjiyong -bash: ulimit: open files: cannot modify limit: Operation not permitted 大虾们,看看什么问题~~~{:3_182:}

by tanjiyong138 - Solaris - 2011-06-28 20:25:29 阅读(2324) 回复(2)

ulimit 中的 -l,对应的/etc/security/limits.conf 中 item 是哪个? 谢谢!

by linuxkumao - Linux系统管理 - 2008-12-09 20:06:13 阅读(2016) 回复(5)

[root@gz_x2_netfilmhelix ~]# cat /etc/security/limits.conf # /etc/security/limits.conf # #Each line describes a limit for a user in the form: # # # #Where: # can be: # - an user name # - a group name, with @group syntax # - the wildcard *, for default entry # - the wildcard %, can be also used with %group syntax, # for maxlogin limit # # can ...

by thrack - Linux文档专区 - 2008-12-06 22:35:35 阅读(601) 回复(0)

如何 永久修改一个普通用户的 ulimit -n 10240

by qinyd - Solaris - 2009-11-16 11:24:57 阅读(1938) 回复(2)