Sponsored Content
Full Discussion: Prophet 21 acclaim system
Operating Systems AIX Prophet 21 acclaim system Post 302999332 by vbe on Saturday 17th of June 2017 04:03:47 AM
Old 06-17-2017
My first thoughts as I have no idea what is prophet21 acclaim system abut little googling says its an ERP and perhaps you have a progress DB, shm segment this I know better and would suspect is responsible of the second line error

What user is used for prophet/progress db ? And what is the ulimit? But I would say I doubt it be here only this is the first thing to look at... cmd:
Code:
 ulimit -a

and should be unlimited...

What is the size of your shared memory? How much RAM on the system?
when total amount of shared memory a process tries to attach to exceeds the OS-allowed limit, you get such error, on a 32bit OS ( which Im sure is the case...) it would be around 1.6 GB ( that is what I had for oracle instances...)
So next Q: how many instances of progress or ?db do you have running?
Is this the first time?
When was the last time the system was rebooted?
If not after a reboot
I suggest to look if more than one instance running at possible shared memory fragmentation, if you see no solution there, then stop the/all instance of db ( because that message means the following line cannot execute and I understand a db instance cant be brought up... So one stopped see what is left in shared memory, is there any memory still attached to db ? If so it should not and remove it - It may be the culprit
And try to start all again
Of course the easiest would be a reboot that would clean the lot... Maybe the easiest and fastest if you can...

A totally different case if it occured just after a reboot of course, which doesnt mean all the above is absurd, but needs to be figured out in what way it could be affected by the sort:
Any new instance added?
Has someone changed any parameters? ( especially for the instance - (like oracle's SGA...)
If not, anything is the system logs??? errpt -a...

Last edited by vbe; 06-17-2017 at 05:09 AM.. Reason: typos... sorry Im in bed...
 

9 More Discussions You Might Find Interesting

1. Solaris

rsh commands not getting executed from Solaris 10 System to AIX System

Hi Friends, I am trying to execute rsh commands from Solaris 10 system to AIX system. When I give; Solaris10# rsh <hostname> ls -l , it gives me an error rshd : 0826-826 The host name for your address is not known At the same time, Solaris10# rsh <hostname> ---- gives me remote shell of... (25 Replies)
Discussion started by: jumadhiya
25 Replies

2. SCO

file system not getting mounted in read write mode after system power failure

After System power get failed File system is not getting mounted in read- write mode (1 Reply)
Discussion started by: gtkpmbpl
1 Replies

3. Shell Programming and Scripting

how to delete files at booting of system (system startup)

hi all I have a problem how to write a shell script which delete files/folder form directory whenever system boot and copy last updated folder/file in the specified directory.pse help me ASAP. i write a script which copy files in directory.I want when system boot up using script it check whether... (1 Reply)
Discussion started by: shubhig15
1 Replies

4. UNIX for Advanced & Expert Users

how to make a full system backup excluding data and restoring it to a new system

Hi, In order to have a sand box machine that I could use to test some system changes before going to production state, I'd like to duplicate a working system to a virtual one. Ideally, I'd like to manage to do it this way : - Make a full system backup excluding the user file system (this... (7 Replies)
Discussion started by: pagaille
7 Replies

5. Solaris

System hangs (freezes) on system bell/beep

I am running OpenIndiana development version oi_148 32-bit on a seven-year-old Dell Inspiron 8600. Seems to be running fine except for one particular annoyance: It freezes whenever a system bell/beep plays. I have mitigated this by turning the system bell off in gnome-terminal, which I use... (3 Replies)
Discussion started by: DeadBadger
3 Replies

6. HP-UX

how to mount a file system from a solaris server into an hp-ux system

Hi all I wonder if its possible to mount on a hp-ux server a file system that was previously mounted on a solaris 10 server. The LUN is on NetApp stoarge. The problem on hp-ux I cannot do pvcreate on the lun (disk) because contains data. Any help will be appreciated FR (2 Replies)
Discussion started by: fretagi
2 Replies

7. AIX

Accessing files on AIX system from Linux system

I have a following requirement in production system 1 : LINUX User: abcd system 2: AIX (it is hosting a production DB) Requirement user abcd from system 1 should have read access on archive log files created by DB on system 2. The log files are created with permissions 540 by user ora ,... (2 Replies)
Discussion started by: amitnm1106
2 Replies

8. AIX

Cloning a system via mksysb backup from one system and restore to new system

Hello All, I am trying to clone an entire AIX virtual machine to a new virtual machine including all partitions and OS.Can anyone help me on the procedure to follow? I am not really sure on how it can be done.Thanks in advance. Please use CODE tags for sample input, sample output, and for code... (4 Replies)
Discussion started by: gull05
4 Replies

9. UNIX for Beginners Questions & Answers

Migrating jobs from COBOL Mainframe system to UNIX system

In a nutshell requirement is to migrate the system from mainframe environment to UNIX environment (MF cobol would be used I guess). I have not much of idea in this field. I need to do some investigation on following points - - Ease of conversion - Known Data compatibility issue - Issue in... (9 Replies)
Discussion started by: Tjsureboy4me
9 Replies
Prophet::Web::Menu(3pm) 				User Contributed Perl Documentation				   Prophet::Web::Menu(3pm)

NAME
Prophet:Web::Menu - Handle the API for menu navigation METHODS
new PARAMHASH Creates a new Prophet::Web::Menu object. Possible keys in the PARAMHASH are "label", "parent", "sort_order", "url", and "active". See the subroutines with the respective name below for each option's use. label [STRING] Sets or returns the string that the menu item will be displayed as. parent [MENU] Gets or sets the parent Prophet::Web::Menu of this item; this defaults to null. This ensures that the reference is weakened. sort_order [NUMBER] Gets or sets the sort order of the item, as it will be displayed under the parent. This defaults to adding onto the end. link Gets or set a Jifty::Web::Link object that represents this menu item. If you're looking to do complex ajaxy things with menus, this is likely the option you want. target [STRING] Get or set the frame or pseudo-target for this link. something like _blank class [STRING] Gets or sets the CSS class the link should have in addition to the default classes. This is only used if "link" isn't specified. url Gets or sets the URL that the menu's link goes to. If the link provided is not absolute (does not start with a "/"), then is is treated as relative to it's parent's url, and made absolute. active [BOOLEAN] Gets or sets if the menu item is marked as active. Setting this cascades to all of the parents of the menu item. child KEY [, PARAMHASH] If only a KEY is provided, returns the child with that KEY. Otherwise, creates or overwrites the child with that key, passing the PARAMHASH to "new" in Jifty::Web::Menu. Additionally, the paramhash's "label" defaults to the KEY, and the "sort_order" defaults to the pre-existing child's sort order (if a "KEY" is being over- written) or the end of the list, if it is a new "KEY". active_child Returns the first active child node, or "undef" is there is none. delete KEY Removes the child with the provided KEY. children Returns the children of this menu item in sorted order; as an array in array context, or as an array reference in scalar context. render_as_menubar [PARAMHASH] Render menubar with YUI menu, suitable for an application's menu. It can support arbitary levels of submenu. as_link Return this menu item as a "Jifty::Web::Link", either the one we were initialized with or a new one made from the "/label" and "/url" If there's no "/url" and no "/link", renders just the label. perl v5.10.1 2009-12-22 Prophet::Web::Menu(3pm)
All times are GMT -4. The time now is 01:48 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy