VPAR Resource Capacity Limit


 
Thread Tools Search this Thread
Operating Systems HP-UX VPAR Resource Capacity Limit
# 1  
Old 07-09-2014
VPAR Resource Capacity Limit

Hello Guys

Could you please let me know the command to find the resource (vCPU & Memory) capacity limit for the VPAR's (HPUX 11.23) on integrity Virtual host servers running HPUX 11.31 OS.
For eg. I want to know what is the max vCPU and memory that I can assign to one VPAR.
The Base Virtual Host has 32 Logical processors and 400GB memory and the server hardware model is Rx 7640.

Many thanks!
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. HP-UX

How to shutdown a vpar from another vpar?

Hi, How can I shutdown a vpar from another vpar ? Please provide the command. Thanks. (0 Replies)
Discussion started by: snchaudhari2
0 Replies

2. AIX

FS capacity

can anyone tell me how to reduce Fs capacity by using echo zero. (3 Replies)
Discussion started by: nkchand
3 Replies

3. HP-UX

VPar hardware migration - ERRATA document

Hi guys, I'm moving some vPars from BL860c I2 and BL870c I2 using the DRD clone and relocation. In some case, as instance to upgrade to BL870c I2, the ERRATA document reports some additional driver to be added to the image made by the DRD and then recompile the kernel before the move to the... (0 Replies)
Discussion started by: cecco16
0 Replies

4. Solaris

Limit: stacksize: Can't remove limit

Hi all, I'm using to Solaris machine. When I run a simple script this messenger come out:"limit: stacksize: Can't remove limit". Any one know the way to resolve this problem without reboot the machine? Thanks in advance. (3 Replies)
Discussion started by: Diabolist9
3 Replies

5. AIX

TSM capacity

Dears, The TSM storage that we have is already configured to backup some Application,directories & logs or let's say backup different path from 15 servers, I want to add more Items to be backuped by this storage, how to be confirmed if that possible or not? I mean how do we know the capacity of... (7 Replies)
Discussion started by: arm
7 Replies

6. Shell Programming and Scripting

Filesystems using more than 75% capacity

i need to write a shell script for printing the list of filesystems whose disk utilization is more than 75%...i tried using df -h along with awk but cud'nt make the combination work.....:wall: when we do df -h then the filesystems which are using more than 75% capacity shud be printed according to... (11 Replies)
Discussion started by: xtatic
11 Replies

7. HP-UX

vPar Boot Error

Hi All, Please help me out in below issue in creating vPar. We have one nPar in which we have to create 2 vPars, out of which first vPar is already created and it is running well which have local disk as a boot device.Now we have to create 2nd vPar which need to use SAN disk for booting.... (3 Replies)
Discussion started by: laxmikant
3 Replies

8. HP-UX

vPar Hardware Paths

I wonder if anyone could assist with this. We have taken over administration of an rp8440 that has been split into 2 nPars and has 4vPars per nPar. I have to add a network card into one of the vPars that was missed at the time the vPar was created. That bit i have no problem with. The... (0 Replies)
Discussion started by: Andyp2704
0 Replies

9. HP-UX

vpar ignite

Hi Can I use a vpar as an ignite server? (1 Reply)
Discussion started by: mahlathini
1 Replies

10. AIX

How to increase capacity?

Hello everybody, is a very simple question how can I increase the capacity of a disk wich is on a DS4300?, I have done the procedure on the Storage Manager but the space is the same on the AIX (5.3) , what should I do to obtain the new ammount of disk space? (16 Replies)
Discussion started by: GermanSkull
16 Replies
Login or Register to Ask a Question
<sys/resource.h>(P)					     POSIX Programmer's Manual					       <sys/resource.h>(P)

NAME
sys/resource.h - definitions for XSI resource operations SYNOPSIS
#include <sys/resource.h> DESCRIPTION
The <sys/resource.h> header shall define the following symbolic constants as possible values of the which argument of getpriority() and setpriority(): PRIO_PROCESS Identifies the who argument as a process ID. PRIO_PGRP Identifies the who argument as a process group ID. PRIO_USER Identifies the who argument as a user ID. The following type shall be defined through typedef: rlim_t Unsigned integer type used for limit values. The following symbolic constants shall be defined: RLIM_INFINITY A value of rlim_t indicating no limit. RLIM_SAVED_MAX A value of type rlim_t indicating an unrepresentable saved hard limit. RLIM_SAVED_CUR A value of type rlim_t indicating an unrepresentable saved soft limit. On implementations where all resource limits are representable in an object of type rlim_t, RLIM_SAVED_MAX and RLIM_SAVED_CUR need not be distinct from RLIM_INFINITY. The following symbolic constants shall be defined as possible values of the who parameter of getrusage(): RUSAGE_SELF Returns information about the current process. RUSAGE_CHILDREN Returns information about children of the current process. The <sys/resource.h> header shall define the rlimit structure that includes at least the following members: rlim_t rlim_cur The current (soft) limit. rlim_t rlim_max The hard limit. The <sys/resource.h> header shall define the rusage structure that includes at least the following members: struct timeval ru_utime User time used. struct timeval ru_stime System time used. The timeval structure shall be defined as described in <sys/time.h> . The following symbolic constants shall be defined as possible values for the resource argument of getrlimit() and setrlimit(): RLIMIT_CORE Limit on size of core file. RLIMIT_CPU Limit on CPU time per process. RLIMIT_DATA Limit on data segment size. RLIMIT_FSIZE Limit on file size. RLIMIT_NOFILE Limit on number of open files. RLIMIT_STACK Limit on stack size. RLIMIT_AS Limit on address space size. The following shall be declared as functions and may also be defined as macros. Function prototypes shall be provided. int getpriority(int, id_t); int getrlimit(int, struct rlimit *); int getrusage(int, struct rusage *); int setpriority(int, id_t, int); int setrlimit(int, const struct rlimit *); The id_t type shall be defined through typedef as described in <sys/types.h> . Inclusion of the <sys/resource.h> header may also make visible all symbols from <sys/time.h>. The following sections are informative. APPLICATION USAGE
None. RATIONALE
None. FUTURE DIRECTIONS
None. SEE ALSO
<sys/time.h> , <sys/types.h> , the System Interfaces volume of IEEE Std 1003.1-2001, getpriority(), getrusage(), getrlimit() COPYRIGHT
Portions of this text are reprinted and reproduced in electronic form from IEEE Std 1003.1, 2003 Edition, Standard for Information Technol- ogy -- Portable Operating System Interface (POSIX), The Open Group Base Specifications Issue 6, Copyright (C) 2001-2003 by the Institute of Electrical and Electronics Engineers, Inc and The Open Group. In the event of any discrepancy between this version and the original IEEE and The Open Group Standard, the original IEEE and The Open Group Standard is the referee document. The original Standard can be obtained online at http://www.opengroup.org/unix/online.html . IEEE
/The Open Group 2003 <sys/resource.h>(P)