Sponsored Content
Top Forums Web Development What is the maximum users we can go in weblogic and Oracle? Post 303018369 by ded325 on Monday 4th of June 2018 09:57:06 PM
Old 06-04-2018
hi

Hi Friend

Thanks a lot for your reply.

My quesitons is . i have web applciation that runs on weblogic and database resides on oracle.
so question from client is how many maximum users can create in my application.

OS is SUN Solaris
does it depend on no of processors in oracle


Quote:
Originally Posted by jim mcnamara
Do you mean simultaneous processes from one user?
As much as the system load will tolerate. This is a matter of available memory, process slots, and I/O resources.

Do you mean different simultaneous usernames?
The comment above applies about resources, plus there is an upper limit to the number of usernames a UNIX system can have. Ex Solaris 10 allows 65000 usernames by default.

I think maybe you misunderstand. Weblogic runs as a user and creates processes that connect into oracle. So the oracle kernel has to deal with how many simultaneous users in any case. Oracle scales very well but there are limits to performance.

Guessing you are trying to do some preliminary work on setting up a weblogic server.
Anything like this requires a lot of information - number of users, kinds of transactions and so on. The list is not small.

When you ask a question, giving us the OS, system hardware configuration (memory, disk, etc) is the base requirement. I worked in a place that runs weblogic on servers that are separate from the oracle kernel, for example. We had 500-700 users online.

So in reality there is no decent answer to the questions as asked. Sorry.
 

2 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

Maximum number of users allowed

How do i determen (what command) the max. number of users allowed Thanks in advance (10 Replies)
Discussion started by: siza
10 Replies

2. Solaris

oracle and weblogic startup

Hi All, i am facing problem after restart my Unix Box PC i should to startup oracle manual and weblogic also how yo make it start automatic (1 Reply)
Discussion started by: xxmasrawy
1 Replies
Apache::Session::Oracle(3pm)				User Contributed Perl Documentation			      Apache::Session::Oracle(3pm)

NAME
Apache::Session::Oracle - An implementation of Apache::Session SYNOPSIS
use Apache::Session::Oracle; #if you want Apache::Session to open new DB handles: tie %hash, 'Apache::Session::Oracle', $id, { DataSource => 'dbi:Oracle:sessions', UserName => $db_user, Password => $db_pass, Commit => 1 }; #or, if your handles are already opened: tie %hash, 'Apache::Session::Oracle', $id, { Handle => $dbh, Commit => 1 }; DESCRIPTION
This module is an implementation of Apache::Session. It uses the Oracle backing store and no locking. See the example, and the documentation for Apache::Session::Store::Oracle for more details. USAGE
The special Apache::Session argument for this module is Commit. You MUST provide the Commit argument, which instructs this module to either commit the transaction when it is finished, or to simply do nothing. This feature is provided so that this module will not have adverse interactions with your local transaction policy, nor your local database handle caching policy. The argument is mandatory in order to make you think about this problem. This module also respects the LongReadLen argument, which specifies the maximum size of the session object. If not specified, the default maximum is 8 KB. AUTHOR
This module was written by Jeffrey William Baker <jwbaker@acm.org>. SEE ALSO
Apache::Session::File, Apache::Session::Flex, Apache::Session::DB_File, Apache::Session::Postgres, Apache::Session perl v5.10.1 2010-10-18 Apache::Session::Oracle(3pm)
All times are GMT -4. The time now is 06:04 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy