Sponsored Content
Top Forums UNIX for Dummies Questions & Answers error message risc 43p model 150 Post 302617547 by frank_rizzo on Monday 2nd of April 2012 11:21:55 PM
Old 04-03-2012
Just an educated guess but it sounds like you need to increase the ulimits for the user.

to show current settings for the user run
Code:
ulimit -a

then as root run
Code:
chuser data=-1 the_database_username

and then verify as the_database_username
Code:
ulimit -a

if that shows unlimited then restart the service
 

10 More Discussions You Might Find Interesting

1. AIX

PCI Ethernet NIC's for IBM RISC 600 Model B50

I am trying to locate a non IBM PCI Ethernet card that will work with the Model B50 RISC box. Alternatively, I need to find AIX drivers for standard PCI Ethernet NIC's ?. (0 Replies)
Discussion started by: rahe
0 Replies

2. HP-UX

please help need HP-UX 11 for PA RISC

Im not asking for an illegal copy (but from what i understand if i have the system its not illegal to give it to me) just how to get a copy of hp-ux period i have some old hp visualize systems based on the PA8500 400mhz cpu spent days on the phone with hp they no nothing and there website is a... (6 Replies)
Discussion started by: maliqua
6 Replies

3. UNIX for Dummies Questions & Answers

Save 43p bios?

Is there any way to backup the bios on a 43P-140 7043? (0 Replies)
Discussion started by: freestyle10269
0 Replies

4. AIX

43p 120

I have acquired a 43p 120 (7248-120) and I have two questions: Can anyone remember what is the highest version of AIX which I can install (5.1 I believe) and Can anyone remember how to boot this from the CDROM (boot floppy?) (1 Reply)
Discussion started by: johnf
1 Replies

5. AIX

Building a 43p using BOOTP

I have a 43p 120 (7248-120) which I am trying to install AIX 5.2 on. I have built a Nimol server on a Linux PC running SUSE LES 10. I have setup the 43p to perfom a network boot (BOOTP) and all the addresses in the network settings under SMS are set to 0.0.0.0. When I power up the 43p it... (15 Replies)
Discussion started by: johnf
15 Replies

6. AIX

Root password for fresh 5.1 install on 43p-140?

I've installed AIX 5.1 on a 43p-140, but am unable to log in. At no point in the install did it ask me for a root password. When it boots to the console prompt, I enter "root" as a username, and then after 1 second it cycles right back to another root prompt. I am accessing the 43p-140... (4 Replies)
Discussion started by: akbar
4 Replies

7. AIX

model 43P 7248 Recovery!

HI all! this is my problem: my boss got a Model 43P 7248-100 PowerPC server with the AIX 4.2 os, but some days ago it crashed and now it doesn't want to boot up again, it stops after the initial diagnostic phase with the "PowerPC" screen! I must recover some important data from the hard disk, so... (6 Replies)
Discussion started by: AKO
6 Replies

8. AIX

brisque impose 43P 150 aix version 4 HELP!!!!!!!!

hi to everybody I have a problem with the AIX version 4: I can not get into failsafe session kindly someone knows how to enter this mode? thanks in advance (5 Replies)
Discussion started by: elektrospeed
5 Replies

9. AIX

EXP400 with 43P machine not booting

Hello I connected the exp400 & turned on the aix machine which is 7043-150 but now I guess probably ODM is corrupted as it does not boot. Its stuck at 0518 code. Also, on the console it shows stuck on the kernel, which then it does not want to boot. Is it possible to fix from maintenance... (1 Reply)
Discussion started by: pdhawan
1 Replies

10. UNIX for Beginners Questions & Answers

SunBlade 150 can't start openwin: /usr/openwin/bin/xinit: Server error.

Hi. I have a Microsystems SunBlade 150 shell# cat /etc/release Solaris 8 2/02 s28s_u7wos_08a SPARC shell# uname -a SunOS HOSTNAME 5.8 Generic_108528-14 sun4u sparc SUNW,Sun-Blade-100 shell# prtconf -F /pci@1f,0/SUNW,m64B@13:m640 When I join to the only account the server try to... (5 Replies)
Discussion started by: siegroup
5 Replies
model-builder(1)					      General Commands Manual						  model-builder(1)

NAME
model-builder - graphical ODE simulator DESCRIPTION
Model Builder is a graphical ODE simulator. It allows the user to define, simulate and analyze arbitrary systems of Ordinary Diferential Equations. Features * Equation-based model definition. No need to learn to program to define and run your models. Just type-in you differential equations * Graphic output of simulation. You can save the graphics in the most common formats: png, svg, pdf, etc. * Spreadsheet view of the results. From the spreadsheet you can make customized plots from your variables. You can also export your data to a .csv text file * Latex rendering of your system of equations. Check you equation in clear mathematical notation. * Intuitive graphical interface. * Uncertainty analysis module. Implements a straightforward interface for the Bayesian Melding method. * Sensitivity analysis. Find out how sensitive your model is to variations in parameter values. GETTING STARTED
The best way to get started with ModelBuilder is open one of the models included with the distribution and look at it . Yes, it's that simple. So, if you have already intalled it, start Model-Builder by typing in the console: $ PyMB followed by <enter>. This will start Model-Buider . From now on I will assume that you know what a system of differential equations is, otherwise you probably should not be using Model-Builder. The larger box on the main frame, labeled "Differential Equations" is where we are going to start. On this text box you will write your system of equations (or a single equation) The syntax is that of python for mathematical expressions and functions and there are some conventions also, which I will explain below: * First of all, Model-Builder expects only the right-hand-side (RHS) of you equations to be present one per line in the equations box. The LHS is assumed to be of the form dy(t)/dt, dy_i/dt where i is an index to the the number of equations in your model. This number i will be used to refer to the state variables of the model ( y[i] ). This index, i, MUST start at 0, so if your model has 3 equations, their state variables will be y[0], y[1], and y[2] . * Another convention is the reference to model parameters. Any number of parameters may be included in the equations by the using this nomeclature: p[0], p[1], and so on. These parameter must the be specified one per line and in ascending order in the "Parameters" box. So the first line would be the definition of p[0], the second of p[1] and so forth. * The mathematical expressions that make up the equations and the parameters may include any function of the numpy python module. This allows for the easy contruction of models with a level of sophistication higher than that of a simple algebraic expression. Time may be referenced in the equations or parameter expressions by the variable "t". So if you want a parameter that is a function of time, you can simply write in the parameter box. * The user familiar with python will also be able to include more advanced structures in the model specification, such as Lambda functions for instance. Well, with that out of the way, it remains to explain the rest of the interface which is pretty much self-explanatory: * The initial values box should include one number for each equation (line) in the equations box. The numbers should be separated by spaces. * The start time is the time value at which the equations begin to be evaluated. The values of the state variables at this point in time are those specified in the initial conditions. * End time: You can figure this one out... * Time step: this is the time-step used in reporting the output of the simulation. The actual time step used by the numeric integrator is variable and chosen on the fly. Its normally much finer that what you specify here. * Critical time steps. Most user wil leave this box empty. * First Step: The size of the first step. Leave at 0 for automatic determination. * Min Step Size and Max Step Size: Respectively the minimum and maximum value for step sizes as chosen by variable step size algorithm. Leave at zero for automatic determination. * Full Output check box: If this box is checked a lot of useful information about the integration is included in the output. Check out the output spreadsheet to see what they are. * Show convergence message: if this box is checked, ModelBuilder will print "Integration successful" to the console after the integration is completed. Useful for debugging purposes only. Uncheck if you are doing uncertainty analyses. as it will slow things down. * Once you are done entering the necessary information for you model, Just press the start button to calculate your model. Enjoy! HOMEPAGE
http://model-builder.sourceforge.net/ AUTHOR
This manual page was written by Varun Hiremath <varunhiremath@gmail.com>, for the Debian project (but may be used by others). December 4, 2006 model-builder(1)
All times are GMT -4. The time now is 04:58 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy