How do I limit a Zones use of memory

Hello
I have a number of non-global zones running, and I would like to prevent these zones from exhausting the SWAP thereby rendering every zone inoperable.
I have activated rcapd to take care of the RSS part.
Someone mentioned using process.max-address-space .
I must have must have misunderstood something because the following does not seem to have any effect:
system:0::::process.max-address-space=(privileged,536870912,deny)in /etc/project
prctl -n process.max-address-space -i process $$
process: 7407: tcsh
NAME    PRIVILEGE       VALUE    FLAG   ACTION                       RECIPIENT
process.max-address-space
        privileged      16.0EB    max   deny                                 -
        system          16.0EB    max   deny                                 -Does anyone have any suggestions on how to go about this, or documents to read?
Thanks
Henry

Adjust the duration of the title like you would any other clip.

Similar Messages

  • How to see what processes are using my memory?

    I recently added more RAM to my system and I always keep Activity Monitor running with the memory usage icon on the Dock to see how much Lion and my programs use.
    I noticed that even several CS5 programs running at the same time won't use that much, the program I've seen uses the most is Aperture, using anywhere from 500MB on start to 2.5GB while viewing--not editing--photos.
    My questions is, when my system is running normally it uses from a quarter to half the total memory available but just now it's using more than three quarters and it's running not even half programs I use everyday. I quickly added up the memory being used and it's just missing out A LOT. I'm adding a screenshot of Activity Monitor for you to see.
    I now that restarting the system (or by using the purge command in Terminal) will free up memory but this really puzzles me and I'd really like to know what's happening--BTW, even though several GB are missing, the computer is nowhere nears slow, at least.
    Where are all the other processes using the rest of the memory?
    I'm using OS X 10.7.3 Server with 16GB of RAM on an iMac.
    Thanks for all your help,
    Gustavo.

    You will never be able to get those numbers to add up.  This topic has come up before.  Examples:
    Memory used by unknown processes
    Where is my memory?
    And others.  You cannot use the numbers in that display to add up.  Even doing top in terminal produces conflicting numbers.  Many process are dynamic and may be missed in these displays.
    FWIW, here's an apple article on the Activity Monitor memory display:
    Using Activity Monitor to read System Memory and determine how much RAM is being used
    Editorial: In my opinion I do not recommend always running Activity Monitor (or top).  The constant poling and display does have some affect on performance and cpu utilization.  That's why it always usually appears near the top of the process list when sorted by percent cpu unless really outweighed by something much bigger.

  • How to knoew what apps ara using more memory? aamnd how to find em?

    my computer seem to be using alot of space and i think is mostly junk i need to no how to find outn wht is using it anh how to dlete it permantly?

    Hello miukreb!
    Please make at least a spell check before asking questions in the internet. Your text is difficult to understand.
    You have a program called "Activity Monitor", which is showing everything you asked for (I think): you find it in the folder Applications > Utilities. This program shows you the memory used and the CPU.
    If you meant your disk usage of your files you need an other program; for example "Disk Inventory X" or "WhatSize"
    Best wishes for the New Year 2012!
    marek

  • How to configure Oracle 10g to use 4GB memory

    I'm trying to configure Oracle 10g to use >4GB memory. Have configured server boot.ini with required flags (/3GB /PAE). Rebooted server then created standard database, then connected to db instance and changed oracle parameters DB_BLOCK_BUFFERS, USE_INDIRECT_DATA_BUFFERS as required. Restarted DB instance, DB fails to restarted with SGA memory error. According to oracle user docs the SGA is nolonger in effect due to previous settings. Can you provide example of SPFILE with parameters settings that do work and use >4GB memory. Current server has 8GB, 2 x Dual XEON core/processors (i.e. 8 processors)

    The recommended /3GB switches in the boot.ini file can only be used with the following operating systems editions (KB article 291988):
    Microsoft Windows 2000 Advanced Server
    Microsoft Windows 2000 Data Center Server
    Microsoft Windows Server 2003, Enterprise Edition
    Microsoft Windows Server 2003, Data Center Edition
    Microsoft Windows Small Business Server 2003
    Important: Windows 2000 and 2003 Server Standard Editions DO NOT SUPPORT /3GB Switch.
    So if your OS is listed above, then you cannot have a larger SGA.

  • How can i limit CVP port used by a script

    Dears ;
    Is there any way to limit the number of CVP Port used by scripts ?
    i need to give each script fixed number of CVP ports cannot exceeded.
    we have CVP V 8.
    Thanks

    Ok, so here are some pretty bad ideas.
    - Have CVP look into TCD for active calls to your DN.
    - Have ICM increment/decrement a counter before the IVR and after the IVR.
    - Use SNMP traps to trigger some flags.
    - Don't do this.
    david

  • How to increase limit of users using portal/SSO

    Hello,
    I am expending number of users using a portal forms application and recently started to get this error
    Service Temporarily Unavailable
    The server is temporarily unable to service your request due to maintenance downtime or capacity problems. Please try again later.
    The error appears only for the pages that require SSO, no problem for the public pages. Can something be done to increase the limits for SSO connections?
    Thanks.

    Hi, can you review this link:
    http://www.oracle.com/technology/products/forms/pdf/10g/forms904capacityplanning.pdf
    Good Luck...

  • How do I get Firefox to use less memory? None of the answers I've found online work. I'm ready to go back to IE!

    I like to keep several tabs open while I'm working. I have friends who do this with no noticeable effect on their computer speed. My Task Manager consistently shows a huge amount of memory being used by firefox, increasing as I keep my browser open. Closing tabs doesn't help, and I've tried about a dozen "fixes" that I've found online. Thanks for your help.

    See these:
    http://malwaretips.com/blogs/remove-istart123-virus/
    http://www.pcthreat.com/parasitebyid-45021en.html

  • How do I limit the number of rows retrieved at a time using RefCursor?

    I have a PL/SQL package in use, that returns a REF CURSOR. This is currently being used in a Forms 6i application. Now I want to develop an ASP.NET web application that displays exactly the same information as my Forms 6i module. In fact those two applications will be used concurrently for a while.
    I looked at the sample code provided on otn.oracle.com and decided to use the OracleDataAdapter.Fill()-method to fill a dataset and bind that dataset to a pageable GridView. Now I wonder, whether this method retrieves ALL records of the query at once and how I can limit the number of rows fetched? The Select statement retrieves up to 10000 rows at a time. Most of the time, a user is only interested in the first 20-30 rows. Forms 6i fetches more rows as the user scrolls down, how can I implement the same behavior in ODP.NET?
    - Markus

    Excuse me, but the reply does not quite answer my question. Maybe I did not explain my concerns clear enough:
    I understand the use of the two properties (RowSize and FetchSize) to reduce the amount of round trips needed to transfer the data - not the number of rows fetched in total. This would still lead to a situation where all rows are transferred, when I am using the OracleDataAdapter.Fill()-Method. Is this correct or did I misunderstand the function of this method?
    I quote the otherwise really helpful article you send me:
    Of course, there is a cost if the fetch size is arbitrarily large. More client-side memory and processor cycles will be needed to store and manage a larger amount of data. The goal is to find a high-performing balance between the number of round trips and the amount of data retrieved per trip.
    My RowSize is for sure a bit larger than the one in the given example. The query will probably be used by up to 100 users at a time, so I would like to limit the resource-costs not only on the network by the number of round trips, but also on the web-server which is storing all these records in it's memory per user-request.

  • How we can limit the number of concurrent calls to a WCF service without use the Singleton pattern or without do the change in BizTalk Configuration file?

    How can we send only one message to a WCF service at a time? How we can limit the number of concurrent calls to a WCF service without use the Singleton pattern or without do the change in BizTalk Configuration file? Can we do it by Host throttling?

    Hi Pawan,
    You need to use WCF-Custom adapter and add the ServiceThrottlingBehavior service behavior to a WCF-Custom Locations.
    ServiceThrottlingBehavior.MaxConcurrentCalls - Gets or sets a value that specifies the maximum number of messages actively processing across a ServiceHost. The MaxConcurrentCalls property specifies the maximum number of messages actively
    processing across a ServiceHost object. Each channel can have one pending message that does not count against the value of MaxConcurrentCalls until WCF begins to process it.
    Follow MSDN-
    http://msdn.microsoft.com/en-us/library/ee377035%28BTS.10%29.aspx
    http://msdn.microsoft.com/en-us/library/system.servicemodel.description.servicethrottlingbehavior.maxconcurrentcalls.aspx
    I hope this helps.
    Rachit
    If this answers your question please mark it accordingly. If this post is helpful, please vote as helpful by clicking the upward arrow mark next to my reply.

  • How do I limit the amount of space Time Machine uses?

    Right, so the drive I was using for Time Machine had a most lovely volume failure. Somehow, I managed to fix it. The drive itself is fine but I find this all out after I buy a Drobo to replace it with (plenty of other of reasons for buying it, so it's OK).
    Anyway, I've transitioned all of my files onto the Drobo and now want to use part of it for Time Machine. However, there's a snag. There are only two ways I know to do this:
    1. Partition part of the drive and tell Time Machine to use that. Would work except the guys behind the Drobo specifically say "Don't use your Drobo with Disk Utility. It'll just mess thing sup." So partitioning is out of the question.
    2. Time Tamer, a handy little script that does some magic and gives me a Sparse Bundle to use for Time Machine that is twice the size of my internal drive. That would work great. Except I only want it to be 1 TB instead of 2 TBs. I never even come close to filling the drive itself and the last Time Machine backup I had was only 1 TB and I had yet to even fill that after... Oh... Six months or so.
    I'm sure there's a way for me to do number two manually but I have no idea how. I'd really apprecaite it if someone could point me in the right direction. Google isn't helping.

    You cannot limit what TM uses on the drive. You can partition the drive and assign a specific partition as the TM backup drive. If you do this then be sure that partition is at least twice the capacity of the drive it backs up.
    You don't pre-size a sparsebundle. It simply expands or contracts as needed. Given sufficient time TM will fill up any drive.
    If your Drobo consists of RAIDed drives, then you cannot partition it. If it comes as two separate drives, then use one for backup.

  • HT204264 How do I limit the amount of space used by photos on my phone - now that I turned iCloud on it is taking over my phone

    How do I limit the amount of space used by photos on my phone - now that I turned iCloud on it is taking over my phone

    Hello Maahk,
    Welcome to the Apple Support Communities!
    I understand that you would like to optimize your Photos storage. If you are using iCloud Photo Library on your iPhone, please read over the information in the attached article. 
    iCloud Photo Library FAQ - Apple Support
    Can I use iCloud Photo Library to save space on my device?
    iCloud Photo Library automatically keeps all your photos and videos in the original, high-resolution version. Follow these steps to choose how you store your photos and videos on your device:
    In iOS, tap Settings > iCloud > Photos or Settings > Photos & Camera, then select a storage setting.
    In OS X, click Photos > Preferences > iCloud, then select a storage setting. 
    If you turn on Optimize [device] Storage, iCloud Photo Library will automatically manage the size of your library on your device, so you can make the most of your device's storage and access more photos than ever. All of your original, full-resolution photos and videos are stored in iCloud while device-size versions are kept on your device. You can download the original photos and videos over Wi-Fi or cellular when you need them. 
    If you turn on Download Originals, iCloud Photo Library will keep your original, full-resolution photos and videos in iCloud and on your device. Download Originals is the default setting for iOS devices with the free 5 GB storage plan and for all Mac devices.
    Have a great day,
    Joe

  • If I don't join creative cloud, how will that limit my use of photoshop touch?

    If I don't join creative cloud, how will that limit my use of photoshop touch?

    I do not think it will limit your work with PS Touch, but it may enahnce it quite a bit.
    Just try out the free 2 GB membership and find it out:
    https://creative.adobe.com/plans
    Thanks!

  • How do I stop Mavericks from using the Internet, I have a DATA PLAN LIMIT!

    Since installing Mavericks on our 2 iMacs our DATA PLAN is overused. Over 1.5 to 2.5 GB PER DAY! This is unacceptable!
    How do I stop Mavericks from using the Internet, I have a DATA PLAN LIMIT!
    HELP!

    Have you seen this thread…
    https://discussions.apple.com/message/23826437#23826437
    The short story is that the new 'certifcate checking' system could be downloading large amounts of data, you can turn it of as follows…
    clockworkapps wrote:
    Turning off CRL & OCSP checking in the Certificates Preferences in Keychain Access solved the problem.
    You can do as others have done, install Little Snitch & use the Network Monitor to view what is happening, that thread has some good advice. http://www.obdev.at/products/littlesnitch/index.html
    @Topher, Activity Monitor is a bit pants for tracking processes that respawn or just go away (I assume its because it's an on-demand job, have you got a nice article on 'mach services', Linc confused me !? ).
    ocspd seems to do that in my limited testing,
    Little Snitch is the easiest way to monitor & you can get away with the free demo for long enough to test if funds are tight.

  • [help] How to limit gnome started using a specific resolution?

    TV via vga interface, the default will use the 1920 * 1080 resolution, however, when the TV will prompt "mode is not supported"! Tests found under Windows supports up to 1280 * 1024, another big mistakes!
    Ask, gnome how to limit starts to use a specific resolution?
    Thank you!

    Please remove the "[help]" from your title.  All threads in that subforum are requests for help.  The inclusion of things like that, "please help", etc are both unnecessary and somewhat irritating to many members of this community.  It is not required that yu remove it, but I would strongly recommend it.

  • How do I limit the character count in a text field?

    I'm creating a form for co-workers to use when creating web content. I need to restrict their character count for items like headlines, titles, subtitles, etc. Any suggestions on a ready-made form to use out there? And how can I limit those fields so they don't generate content that will then need to be edited down?
    Thanks,
    EAW

    Check out this post:
    http://forums.adobe.com/message/4364378
    Randy

Maybe you are looking for

  • Logon failed on internet explorer

    Hi! We have an EP7 SP14 with a problem: After the user puts his name/password on the logon screen, he hits "enter" key or click on the "log on" button,However the logon screen does not do anything and show again the logon page. Firefox works fine ¡¡

  • Audio CD Spinning Noise

    Hi there, I recently purchased my father a mac mini to sit as a media centre under his LCD TV. All hooked up great and it all works very well... apart from audio CD's, they spin at a ridiculous speed meaning that when the sound is low all you can hea

  • Add new custom fields in tcode VA05

    In order to add new custom fields in tcode VA05, i need to change V05TZZMO which is a exit to populate the new fields. But how can I edit V05TZZMO ? I must have development key to change that ?

  • TS1702 iTunes Crashes Trying To Access Device Apps?

    Hi, I've connected my 4s to iTunes, but every time I select the device and click on Apps then iTunes stops working, locks up, and I get the message 'A problem caused the program to stop working correctly' and I can then only close program.  Any advic

  • Missing Preview Images

    Hi all, I've just installed CS4 Bridge (Mac) 3.0.0.464 - and am unable to get any Image Previews to appear. I'm either getting just empty space, or if I use "purge cache" I get the generic |PSD/JPG icons. This is happening in all gallery modes, and a