aix 文件大小限制

来源:互联网 发布:ug mac pro 编辑:程序博客网 时间:2024/05/17 12:56

$ ls -l
总计 4195344
-rw-r--r--    1 appa      staff    1073741312  3月25 13时24 applog.test
-rw-r--r--    1 appa      system   1073741312  3月22 17时36 applog.out
-rw-r--r--    1 appa      system       115144  1月05 15时14 localhost_log.2011-01-04.txt
-rw-r--r--    1 appa      system        34388  1月05 20时57 localhost_log.2011-01-05.txt
-rw-r--r--    1 appa      staff          8694  1月11 17时11 localhost_log.2011-01-11.txt

$
$ cat localhost_log.2011-01-11.txt >> applog.test
cat:0652-054 无法写入至输出。
文件不能大于由 ulimit 设置的值。
$
$

smitty user
修改相应用户的fsize大小
fsize     Identifies the soft limit for the largest file a user's process can create or extend.

$
$ cd /usr/app/Tomcatapp/logs/
$ ls -l
总计 4195200
-rw-r--r--    1 appa      staff    1073741312  3月25 13时24 applog.test
-rw-r--r--    1 appa      system   1073741312  3月22 17时36 applog.out
-rw-r--r--    1 appa      system       115144  1月05 15时14 localhost_log.2011-01-04.txt
-rw-r--r--    1 appa      system        34388  1月05 20时57 localhost_log.2011-01-05.txt
-rw-r--r--    1 appa      staff          8694  1月11 17时11 localhost_log.2011-01-11.txt
$
$
$ cat localhost_log.2011-01-11.txt >> applog.test
$ ls -l
总计 4195216
-rw-r--r--    1 appa      staff    1073750006  3月25 13时43 applog.test
-rw-r--r--    1 appa      system   1073741312  3月22 17时36 applog.out
-rw-r--r--    1 appa      system       115144  1月05 15时14 localhost_log.2011-01-04.txt
-rw-r--r--    1 appa      system        34388  1月05 20时57 localhost_log.2011-01-05.txt
-rw-r--r--    1 appa      staff          8694  1月11 17时11 localhost_log.2011-01-11.txt
$

http://publib.boulder.ibm.com/infocenter/aix/v6r1/index.jsp?topic=/com.ibm.aix.files/doc/aixfiles/limits.htm

原创粉丝点击