Search icon CANCEL
Arrow left icon
Explore Products
Best Sellers
New Releases
Books
Videos
Audiobooks
Learning Hub
Conferences
Free Learning
Arrow right icon
Arrow up icon
GO TO TOP
Oracle SOA Suite 11g Administrator's Handbook

You're reading from   Oracle SOA Suite 11g Administrator's Handbook This book will quickly become your constant companion in achieving the reliability and security you want in your day to day administration of Oracle SOA Suite 11g. Covers both broad concepts and real-world implementation.

Arrow left icon
Product type Paperback
Published in Aug 2012
Publisher Packt
ISBN-13 9781849686082
Length 380 pages
Edition 1st Edition
Arrow right icon
Toc

Table of Contents (16) Chapters Close

Oracle SOA Suite 11g Administrator's Handbook
Credits
About the Authors
Acknowledgement
About the Reviewers
www.PacktPub.com
1. Preface
1. SOA Infrastructure Management: What you Need to Know FREE CHAPTER 2. Management of SOA Composite Applications 3. Monitoring Oracle SOA Suite 11g 4. Tuning Oracle SOA Suite 11g for Optimum Performance 5. Configuring and Administering Oracle SOA Suite 11g 6. Troubleshooting the Oracle SOA Suite 11g Infrastructure 7. Configuring Security Policies for SOA Composites 8. Managing the Metadata Services Repository and Dehydration Store 9. Backup and Recovery

Tuning the Linux operating system


If Oracle SOA Suite 11g is installed on a Linux operating system, consider increasing the ulimit for environments with large load. This is to avoid the following error, which appears in the /var/log/messages log under heavy load:

Dec 25 20:53:22 soahost1 sshd[22480]: fatal: setresuid 10000: Resource temporarily unavailable

As the root user, perform the following:

  1. 1. Add the following in /etc/security/limits.conf (assuming the product is installed by the oracle Unix user):

    oracle soft nproc 16384
    oracle hard nproc 63536
    oracle soft nofile 16384
    oracle hard nofile 63536
    
  2. 2. Add the following in /etc/profile (for 32-bit operating systems):

    if [ $USER = "oracle" ]; then
    if [ $SHELL = "/bin/ksh" ]; then
    ulimit -p 16384
    ulimit -n 65536
    # Use the following for 64-bit operating systems instead
    # ulimit -Su 16383
    # ulimit -Hu 16383
    # ulimit -Sn 63535
    # ulimit -Hn 63535
    else
    ulimit -u 16384 -n 65536
    # Use the following for 64-bit operating systems instead
    # ulimit -Hn...
lock icon The rest of the chapter is locked
Register for a free Packt account to unlock a world of extra content!
A free Packt account unlocks extra newsletters, articles, discounted offers, and much more. Start advancing your knowledge today.
Unlock this book and the full library FREE for 7 days
Get unlimited access to 7000+ expert-authored eBooks and videos courses covering every tech area you can think of
Renews at €18.99/month. Cancel anytime