- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Common resources in HP-UX 11 environment
Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Forums
Discussions
Discussions
Discussions
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-12-2002 04:51 AM
07-12-2002 04:51 AM
Common resources in HP-UX 11 environment
a just theoretical question:
I want to run several application on my system; what are the common resources to be monitored in order to check if there are mutual interferences? i.e. directories, files, semaphores, etc.
Where I have to look in order to detect side effects from the application co-hosting?
thank you
Enrico
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-12-2002 05:00 AM
07-12-2002 05:00 AM
Re: Common resources in HP-UX 11 environment
Enrico,
You need to have intimate knowledge of the existing applications on the system and you need to know the demands that the new application will place on the server. Without this knowledge you are just spitting into the wind.
Capacity planning requires a lot of knowledge about everything, and it requires tools like glance/measureware & perfview.
You need to know the amount of memory every user needs, IO rates, cpu demands, then you need to determine how they will exist within the current system. You need to look at number of inodes, files open, nproc, maxusers, and just about every other kernel parameter.
live free or die
harry
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-12-2002 05:01 AM
07-12-2002 05:01 AM
Re: Common resources in HP-UX 11 environment
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-12-2002 05:10 AM
07-12-2002 05:10 AM
Re: Common resources in HP-UX 11 environment
I didn't clearly explain my problem:
I have two applications who run stand-alone; I validate their behaviour, it's OK!
Now, I want to co-host them: no problem about performances! the HW is powerful enough! My concern is about the conflict on using common resources, e.g. the same semaphore, or the same socket, or something else.
My question is: what are the parameters I can / I have to check in advance to detect possible conflicts?
Thanks again!!
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-12-2002 05:44 AM
07-12-2002 05:44 AM
Re: Common resources in HP-UX 11 environment
Unless the applications use the exact same /path/to/filenames, I don't think you need to worry *too* much.
The only gotcha I can think of immediately is if one is a resource hog & will starve the other. But this can be mitigated with kernel parms that will limit what a single process can get as a maximum.
The kernel will oversee the allocation of memory, semaphores, etc & will keep track of them.
As to sockets, one way to avoid any contention would be too assign different IPs to each app. Even if you have only one NIC in the system you could assign a virtual IP to the 2nd app - EX
app1 => lan0 => 111.222.111.222
app2 => lan0:1 => 111.222.111.223
Then the sockets would always be unique & distinct.
Rgds,
Jeff