Sponsored Content
Operating Systems Linux Red Hat Installation of Oracle E-Business Suite 12.1.1 on RHEL 6.1 Post 302769920 by rehantayyab82 on Thursday 14th of February 2013 12:52:44 AM
Old 02-14-2013
according to oracle support doccument
" Oracle E-Business Suite Installation and Upgrade Notes Release 12 (12.1.1) for Linux x86-64 [ID 761566.1] "
Number of Open File Descriptors


* hard nofile 65535
* soft nofile 4096
* hard nproc 16384
* soft nproc 2047


i have exactly same value but still i am getting errors:

1.Increase the limit for maximum processes to 16384 or higher.

2.Increase the limit for file descriptors to 65536 or higher.


how i can resolve such issues ?
 

We Also Found This Discussion For You

1. Solaris

Oracle E-Business Suite @ Sun ZFS

Hi, Is there any known issue Oracle 11i application install on Sun ZFS? (0 Replies)
Discussion started by: KhawHL
0 Replies
merge_fonts(3alleg4)						  Allegro manual					      merge_fonts(3alleg4)

NAME
merge_fonts - Merges two fonts into one font. Allegro game programming library. SYNOPSIS
#include <allegro.h> FONT *merge_fonts(FONT *f1, FONT *f2) DESCRIPTION
This function merges the character ranges from two fonts and returns a new font containing all characters in the old fonts. In general, you cannot merge fonts of different types (eg, TrueType fonts and bitmapped fonts), but as a special case, this function can promote a mono- chrome bitmapped font to a color font and merge those. Example: FONT *myfont; FONT *myfancy_font; FONT *lower_range; FONT *upper_range; FONT *capitals; FONT *combined_font; FONT *tempfont; ... /* Create a font that contains the capitals from */ /* the fancy font but other characters from myfont */ lower_range = extract_font_range(myfont, -1, 'A'-1); upper_range = extract_font_range(myfont, 'Z'+1, -1); capitals = extract_font_range(myfancy_font, 'A', 'Z'); tempfont = merge_fonts(lower_range, capitals); combined_font = merge_fonts(tempfont, upper_range); /* Clean up temporary fonts */ destroy_font(lower_range); destroy_font(upper_range); destroy_font(capitals); destroy_font(tempfont); RETURN VALUE
Returns a pointer to the new font or NULL on error. Remember that you are responsible for destroying the font when you are finished with it to avoid memory leaks. SEE ALSO
extract_font_range(3alleg4), is_trans_font(3alleg4), is_color_font(3alleg4), is_mono_font(3alleg4), exfont(3alleg4) Allegro version 4.4.2 merge_fonts(3alleg4)
All times are GMT -4. The time now is 03:09 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy