This article describes how to create the Oracle user or users required by WebSphere
Application Server. These instructions assume that you have installed
Oracle8i.
Perform the following steps to configure Oracle8i for use with
WebSphere Application Server:
- Ensure that you are logged in as the user oracle.
- Edit the initialization file $ORACLE_HOME/dbs/inityour_SID.ora
as follows:
- If necessary, add the line
open_cursors = 300 .
- Ensure that the default value of
150 for the processes
parameter is sufficient for your database by reading the information in your
inityour_SID.ora file. To increase the value of this parameter, add
and remove comment markers to specific lines related to processes.
- Restart your Oracle database. Start the database by entering the
following commands:
$ svrmgrl
SVRMGR> connect internal
SVRMGR> startup
SVRMGR> quit
Note: You might need to stop the database before you are able to restart it. Stop the Oracle database
by using the shutdown command, as follows:
$ svrmgrl
SVRMGR> connect internal
SVRMGR> shutdown
SVRMGR> quit
- Ensure that the Oracle listener is started or start it by entering the
following commands:
$ lsnrctl
LSNRCTL> start
LSNRCTL> quit
- Create the Oracle users named EJSADMIN and EJB required by WebSphere Application Server. You might or might
not want to grant user EJSADMIN dba authority. Create these users with the proper authorities, by entering
the following set of commands using these values:
SYSTEM is user account created by the Oracle Database Configuration Assistant;
manager is the default password for the SYSTEM account;
and the EJSADMIN_password is the password you specify for the user named EJSADMIN.
- If you do want to grant dba authority to the user EJSADMIN, enter the following commands:
$ sqlplus SYSTEM/manager
SQL> create user EJSADMIN identified by EJSADMIN_password;
SQL> grant connect, resource, dba to EJSADMIN;
SQL> create user EJB identified by EJB;
SQL> grant connect, resource to EJB;
SQL> quit
- If you do not want to grant dba authority to the user EJSADMIN, enter the following commands:
$ sqlplus SYSTEM/manager
SQL> create user EJSADMIN identified by EJSADMIN_password quota 100M \
on SYSTEM;
SQL> create user EJB identified by EJB quota 100M on USERS;
SQL> grant connect, resource to EJSADMIN;
SQL> grant connect, resource to EJB;
SQL> quit
- If any of your applications use JTA datasources, enter the following commands using these values:
SYS is user account created by the Oracle Database Configuration Assistant;
change_on_install is the default password for the SYS account.
$ sqlplus SYS/change_on_install
SQL> grant select on dba_pending_transactions to EJB;
SQL> quit
- Test access to the new database with the EJSADMIN user ID by doing the following:
- Enter the command
$ sqlplus ejsadmin/EJSADMIN_password . A message opens
indicating a successful connection.
- Enter the command
SQL> exit to log out as the EJSADMIN user.
|
|