Insufficient Space Available

Bharanij

ADSM.ORG Member
Joined
Jun 18, 2016
Messages
159
Reaction score
2
Points
0
Hi guys,

i tried to create volume but facing issue

define volume ARCHIVEPOOL /opt/spdiskbkp/ArchivPool/Arch.DSM formatsize=10000 wait=yes access=readwrite
ANR0984I Process 4 for DEFINE VOLUME started in the FOREGROUND at 12:00:00.
ANR7860W Insufficient Space Available for file /opt/spdiskbkp/ArchivPool/Arch.DSM.
ANR0985I Process 4 for DEFINE VOLUME running in the FOREGROUND completed with completion state FAILURE at 12:00:00.
ANR1893E Process 4 for DEFINE VOLUME completed with a completion state of FAILURE.

i have 7tb of space of /opt/spdiskbkp but unable to create any one give advice pls os :aix
 
Hi,

Always helpful for the community to know what TSM/ISP version/s you're using.

Have you ensured that the instance owner user has the required r/w permissions to the '/opt/spdiskbkp/ArchivPool/Arch.DSM' file system in order to create volumes ?
 
yes iam in instance user /sp8.1.4 /when i give that command only 1gb of filesize is creating not more then that
 
Sounds like you might be running into AIX's /etc/security/limits file.
May want to verify and adjust. Generally on my TSM servers I have the root and tsm instance owner set as fully unlimited:
Code:
        fsize = -1
        core = -1
        cpu = -1
        data = -1
        rss = -1
        stack = -1
        stack_hard = -1
        nofiles = -1
 
i think i have done on root user need to check on instance user i will revert once checked

thank you for the reply
 
hi bro i have edit /etc/security/limits file

*
* 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
* nofiles - soft file descriptor limit
* fsize_hard - hard file size in blocks
* core_hard - hard core file size in blocks
* cpu_hard - hard per process CPU time limit in seconds
* data_hard - hard data segment size in blocks
* stack_hard - hard stack segment size in blocks
* rss_hard - hard real memory usage in blocks
* nofiles_hard - hard file descriptor limit
*
* The following table contains the default hard values if the
* hard values are not explicitly defined:
*
* Attribute Value
* ========== ============
* fsize_hard set to fsize
* cpu_hard set to cpu
* core_hard -1
* data_hard -1
* stack_hard 8388608
* rss_hard -1
* nofiles_hard -1
*
* NOTE: A value of -1 implies "unlimited"
*

default:
fsize = 2097151
core = 2097151
cpu = -1
data = 262144
rss = 65536
stack = 65536
nofiles = 2000

root:
fsize = -1
core = -1
cpu = -1
data = -1
rss = -1
stack = -1
nofiles = -1

tsminst1:
fsize = -1
core = -1
cpu = -1
data = -1
rss = -1
stack = -1
nofiles = -1

daemon:

bin:

sys:

adm:

uucp:

guest:

nobody:

lpd:

esaadmin:
stack = 393216
stack_hard = 393216

but when i do ulimit -a from user iam gettgin below

$ ulimit -a
time(seconds) unlimited
file(blocks) 2097151
data(kbytes) 131072
stack(kbytes) 32768
memory(kbytes) 32768
coredump(blocks) 2097151
nofiles(descriptors) 2000
threads(per process) unlimited
processes(per user) unlimited
$ whoami
tsminst1
$

from root
# ulimit -a
time(seconds) unlimited
file(blocks) unlimited
data(kbytes) unlimited
stack(kbytes) 4194304
memory(kbytes) unlimited
coredump(blocks) unlimited
nofiles(descriptors) unlimited
threads(per process) unlimited
processes(per user) unlimited
# whoami
root
#

kindly advice pls
 
after restart now iam able to create 1tb of volumes in that path thank you for the support
 
after restart now iam able to create 1tb of volumes in that path thank you for the support
Yeah a full restart shouldn't have been needed. Just would have need to stop all processes of that user, log off all instances and should have been good to go on next login.

Then again, the easy way is a bounce :)
 
Back
Top