This post is a
how to install Oracle® Fusion Middleware Service Registry 11g (11.1.1) on Linux CentOS 6.2.
Requirements
Hardware Requirements
- CPU 1GHz+, RAM 1 GB+: actual requirements depend on the on usage patterns of the target environment.
- Free HDD Space ~500MB: enough if the selected database system is installed on another machine. The database server machine must have sufficient space for the selected database system.
Software Requirements
- OS: A previously installed Linux CentOS 6.2 Server
- JDK: Sun Java 6 JDK or JRockit 1.6
- Databases: A previously installed and running Oracle 11g R1/R2, 10g R2
- LDAP (optionally if you want to configure LDAP authentication):
- Application Server:
- Oracle WebLogic Server 11g (10.3.1+) / 10.3.0
- Browsers (for client only):
- Microsoft Internet Explorer 7/8+
- Firefox 3.x+
- Tools and others:
- SQL Plus Client tools
- A supported JDBC driver for Oracle: ojdbc6.jar
- A login to the database with administrator privileges
Installation Steps
- Create the OSR (Oracle Serice Registry) tablespaces and user:
- Create a SQL script archive createdb.sql with the following content (NOTE: assuming you already created the directory /opt/app/oracle/oradata/soagov/):
-- createdb.sql --
CREATE TABLESPACE uddinode
LOGGING
DATAFILE '/opt/app/oracle/oradata/soagov/uddinode.dbf'
SIZE 50M REUSE AUTOEXTEND ON NEXT 10M MAXSIZE UNLIMITED
DEFAULT STORAGE (
INITIAL 5M
NEXT 5M
MINEXTENTS 1
MAXEXTENTS UNLIMITED
PCTINCREASE 50 );
CREATE USER uddiuser
PROFILE "DEFAULT"
IDENTIFIED BY "uddiuser"
DEFAULT TABLESPACE uddinode
TEMPORARY TABLESPACE "TEMP"
ACCOUNT UNLOCK;
GRANT "CONNECT" TO uddiuser;
GRANT "RESOURCE" TO uddiuser;
GRANT UNLIMITED TABLESPACE TO uddiuser;
GRANT CREATE ANY SYNONYM TO uddiuser;
GRANT DROP ANY SYNONYM TO uddiuser;
- Run sqlplus an connect to your SID, soagov in this case:
$ sqlplus sys@soagov AS SYSDBA
embed the SQL file and exit:
SQL> @createdb.sql
SQL> exit
- Test connectivity to the database:
$ sqlplus uddiuser/uddiuser
- Start the OSR installation. By default, It will start in graphical mode. You can use the -mode option to start it in console or silent mode. Or my preferred one, SSH X11 forwarding:
$ java -jar oracle-service-registry-11.1.1.jar -log=~/OSR_install.log
- Follow the wizard and choose "Connect to Schema" on the "Database Setup" panel. Provide the credentials written below.
Known issues
No comments:
Post a Comment