ChinaUnix.net
相关文章推荐:

aix ulimit

用命令ulimit -a查看,fsize限制大小为2G左右 先确认文件系统类型为jfs2。 用root用户登陆,修改/etc/security/limits文件 将fsize修改为 fsize= -1 表示文件大小无限制 退出后,重新登录,用ulimits -a查看,已修改为无限制。 本文来自ChinaUnix博客,如果查看原文请点:http://blog.chinaunix.net/u1/54373/showart_2085637.html

by yefeng602 - AIX文档中心 - 2009-11-03 18:33:04 阅读(1696) 回复(0)

相关讨论

我的aix是6.1.0.0的 问两个问题: 1. 我用ulimit -a 输出和网上写的不一样,谁知道是为什么? 我的: core file size (blocks, -c) unlimited data seg size (kbytes, -d) unlimited file size (blocks, -f) unlimited max memory size (kbytes, -m) unlimited open files (-n) unlimited pipe size (512 bytes, -p) 64 stack size (kbytes, -s) hard ...

by heartsmile2 - AIX - 2012-03-02 11:18:59 阅读(1692) 回复(5)

aix操作系统上,执行ulimit -a ,如下显示: # ulimit -a time(seconds) unlimited file(blocks) unlimited data(kbytes) 524288 stack(kbytes) 524288 memory(kbytes) 524288 coredump(blocks) 2097151 nofiles(descriptors) 2000 # 想要更改为 time (seconds) = unlimited file (blocks) = unlimited data (kbytes) = unlimited stack (kbytes) = unlimited memory (kbytes) = u...

by iamagoodmaster - AIX - 2010-02-26 10:30:05 阅读(2930) 回复(5)

aix操作系统上,执行ulimit -a ,如下显示:\r\n# ulimit -a \r\ntime(seconds) unlimited\r\nfile(blocks) unlimited\r\ndata(kbytes) 524288\r\nstack(kbytes) 524288\r\nmemory(kbytes) 524288\r\ncoredump(blocks) 2097151\r\nnofiles(descriptors) 2000\r\n# \r\n\r\n想要更改为\r\ntime (seconds) = unlimited \r\nfile (blocks) = unlimited \r\ndata (kbytes) = unlimited \r\nst...

by iamagoodmaster - AIX - 2010-02-26 09:36:54 阅读(4000) 回复(1)

修改系统允许打开的进程数与文件数: 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 阅读(846) 回复(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 阅读(1087) 回复(0)

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

by SeriousCool - Linux系统管理 - 2013-06-24 12:08:06 阅读(1203) 回复(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 阅读(4046) 回复(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 阅读(2319) 回复(2)

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

by linuxkumao - Linux系统管理 - 2008-12-09 20:06:13 阅读(2009) 回复(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 阅读(595) 回复(0)