Updates from MaximDemenko RSS Toggle Comment Threads | Keyboard Shortcuts

  • MaximDemenko 23:52 on 25 August, 2009 Permalink | Reply  

    Oracle BI with multiple Repositories and MySQL Datasource 

    Probably well known fact is that Oracle BI server can serve multiple repositories at the same time.  Equally well known is that MySQL (or any ODBC source) can be accessed by Oracle BI. At least theoretically.  In fact, it works, but there are some pitfalls, which one should be aware of. Ok, it sounds a little unrelated to each other and one can ask – why bother, in most cases it is still Oracle, oc4j and only one instance per machine.  Right. The problem with this standard configuration (of course, it is only my personal opinion) – it is delivered and works out of the box.  It is not bad at all, but most part of configuration is done in background and the person who implement oracle bi doesn’t get a chance to understand configuration in such default environment.  Chosing nonstandard components ( and it is often a requirement in a custom project) provides better understanding how single components work together.

    OBIEE Architecture

    OBIEE Architecture

    In general it isn’t at all the most terrible idea to have a look into documentation and try to understand architecture of the software product before start to install or configure it.  From the picture (borrowed from the oracle documentation) it is clear that the 3 components (marked red on the picture) are the most important in this architecture:

    • j2ee server (web application containter) which communicates with presentation services and brings the data to the client (web browser)
    • presentation services which communicates with web tier and with oracle bi server (over odbc)
    • oracle bi server which performs the actual bi queries and communicate with data source (rdbms or odbc source or xml file)

    To serve multiple repositories only one instance of bi server is needed, corresponding rpd files should be placed into OracleBI_HOME/server/Repository directory:

    tree  ../server/Repository/ -P "*.rpd"
    ../server/Repository/
    |-- paint.rpd
    |-- sakila.rpd
    |-- samplesales.rpd
    `-- sh.rpd
    

    and every repository should be referenced in oracle bi config file (NQSConfig.INI):

    [ REPOSITORY ]
    
    // Star = samplesales.rpd, DEFAULT;
    samplesales = samplesales.rpd, DEFAULT;
    sh = sh.rpd;
    sakila = sakila.rpd;
    

    That’s all regarding bi server, for presentation service a little bit more work is required, but first i would like to show how MySQL database and odbc DSN should be configured (because the blog title implies, not only multiple repositories, but one of them with MySQL as datasource). To create a database (please, don’t blame me for absolutely no security consideration, it’s only an example) – install mysql with any suitable tool – for example with yum. My test system is Cent OS 5.3 x86-64 machine, on the RHEL or OEL setup is absolutely the same, 32bit platform don’t differ much ( but there are some differences, which i’ll  mention later). After that, assuming mysql is started:

     mysql -u root
    Welcome to the MySQL monitor.  Commands end with ; or \g.
    Your MySQL connection id is 59
    Server version: 5.0.45 Source distribution
    Type 'help;' or '\h' for help. Type '\c' to clear the buffer.
    mysql> create database sakila;
    Query OK, 1 row affected (0.02 sec)
    mysql> grant all privileges on sakila.* to biee@'localhost' identified by 'biee' with  grant option;
    Query OK, 0 rows affected (0.00 sec)
    mysql> grant all privileges on sakila.* to biee@'%' identified by 'biee' with grant option;
    Query OK, 0 rows affected (0.01 sec)
    mysql> flush privileges;
    Query OK, 0 rows affected (0.00 sec)
    mysql> Bye
    mysql -u root sakila < sakila-schema.sql
    mysql -u root sakila < sakila-data.sql
    

    The demo database sakila can be downloaded from MySQL documentation page. Next step is to configure and test an odbc connection for this datasource. To do that, add to the system odbc config file ( /etc/odbc.ini) following section:

    [sakila]
    Driver       = /usr/lib64/libmyodbc3.so
    Description  = Connector/ODBC 3.51 Driver DSN
    SERVER       = localhost
    PORT         = 3306
    USER         =
    Password     =
    Database     = sakila
    OPTION       =
    SOCKET       = /var/lib/mysql/mysql.sock
    

    and test the connection with the ODBC client isql

    isql sakila biee biee
    +---------------------------------------+
    | Connected!                            |
    |                                       |
    | sql-statement                         |
    | help [tablename]                      |
    | quit                                  |
    |                                       |
    +---------------------------------------+
    SQL> select table_name,engine FROM information_schema.tables where table_schema='sakila';
    +-----------------------------------------------------------------+-----------------------------------------------------------------+
    | table_name                                                      | engine                                                          |
    +-----------------------------------------------------------------+-----------------------------------------------------------------+
    | actor                                                           | InnoDB                                                          |
    | actor_info                                                      |                                                                 |
    | address                                                         | InnoDB                                                          |
    | category                                                        | InnoDB                                                          |
    | city                                                            | InnoDB                                                          |
    | country                                                         | InnoDB                                                          |
    | customer                                                        | InnoDB                                                          |
    | customer_list                                                   |                                                                 |
    | film                                                            | InnoDB                                                          |
    | film_actor                                                      | InnoDB                                                          |
    | film_category                                                   | InnoDB                                                          |
    | film_list                                                       |                                                                 |
    | film_text                                                       | MyISAM                                                          |
    | inventory                                                       | InnoDB                                                          |
    | language                                                        | InnoDB                                                          |
    | nicer_but_slower_film_list                                      |                                                                 |
    | payment                                                         | InnoDB                                                          |
    | rental                                                          | InnoDB                                                          |
    | sales_by_film_category                                          |                                                                 |
    | sales_by_store                                                  |                                                                 |
    | staff                                                           | InnoDB                                                          |
    | staff_list                                                      |                                                                 |
    | store                                                           | InnoDB                                                          |
    +-----------------------------------------------------------------+-----------------------------------------------------------------+
    SQLRowCount returns 23
    23 rows fetched
    SQL> quit
    

    For odbc connections oracle bi uses its own odbc. ini , which is located in OracleBI_HOME/setup/odbc.ini. After being ensured odbc connection works, the simplest step is to copy the odbc.ini entry for this database. Indeed, it is enough on 32bit platform, but doesn’t work on x86-64 – oracle bi couldn’t connect to my database. For troubleshouting, the usual suspicious were very useful (as expected):

    • bi server log (Oracle_BI_HOME/Log/NQServer.log)
    • odbc trace file (activated by following section in oracle bi  odbc.ini file)
    • [ODBC]
      # Trace=0
      Trace=1
      TraceFile=/tmp/odbctrace.out
      TraceDll=/opt/biee/OracleBI/odbc/lib/odbctrac.so
      InstallDir=/opt/biee/OracleBI/odbc
      UseCursorLib=0
      IANAAppCodePage=4
      
    • system calls trace ( strace -f -o /tmp/nqsserver.trc -p process_id_of_bi_server)

    In short, the issue is:  oracle bi on linux exists only as 32 bit software. That is not a problem to run it on x64 bit system, oracle software itself works fine. But supplied odbc driver manager ( from data direct) is in 32bit version as well ( probably 32bit nqsserver can only be accessed over 32bit odbc driver) and it’s unable to load 64bit linux library for mysql odbc driver. Well, but it should be possible to access 64bit database with 32bit odbc client – was my first thought. Indeed, it works, but odbc driver in 32bit version  doesn’t exist for x64 CentOS ( and i assume – RHEL and OEL ) distribution. I don’t think, it’s a bug, in opposite, i tend to assume – there are some conflicts in running 32bit odbc client on 64bit system, however, i could not find any issue in internet or on my test system – and workaround is rather simple – download odbc driver from 32bit repository and use it for bi server. This don’t work out of the box – bi server driver manager can not load 32bit driver as well – but for another reason – it can’t find 32 bit mysql client libraries. Simple to solve – just extend LD_LIBRARY_PATH  appropriated (the same is very true regarding Oracle client on a 64bit Linux – oracle bi has to be pointed to 32bit libraries as well) , here is the final configuration for biee os user (first one for environment and second for OracleBI_HOME/setup/odbc.ini) :

    echo $LD_LIBRARY_PATH
    /opt/oracle/product/10.2.0.4/lib32:/usr/lib:/lib:/usr/lib/mysql:/usr/lib:
    
    [sakila]
    Driver = /usr/lib/libmyodbc3.so
    DATABASE = sakila
    DESCRIPTION = sakila
    USER =
    PWD =
    PORT = 3306
    SERVER = localhost
    SOCKET = /var/lib/mysql/mysql.sock
    
    [AnalyticsWeb01]
    Driver=/opt/biee/OracleBI/server/Bin/libnqsodbc.so
    Description=Oracle BI Server
    ServerMachine=local
    Repository=samplesales
    Catalog=
    UID=
    PWD=
    Port=9703
    
    [AnalyticsWeb02]
    Driver=/opt/biee/OracleBI/server/Bin/libnqsodbc.so
    Description=Oracle BI Server
    ServerMachine=local
    Repository=sh
    Catalog=
    UID=
    PWD=
    Port=9703
    
    [AnalyticsWeb03]
    Driver=/opt/biee/OracleBI/server/Bin/libnqsodbc.so
    Description=Oracle BI Server
    ServerMachine=local
    Repository=sakila
    Catalog=
    UID=
    PWD=
    Port=9703
    

    The first DSN will be used by bi server itself to connect to datasource, the other 3 – by presentation services to connect to bi server.  It means, while bi server can serve 3 different repositories, at the same time, 3 instances of presentation services are needed (separate instance for each repository). All of them connect to the bi server on the port 9703 and to distinguish different repositories they use different DSN’s. They need as well a listening address ( to enable communication with web tier) and it should be different for each instance of course. To implement it – 3 different configuration files are required ( instead of  instanceconfig.xml in OracleBIData_HOME/web/config ) , which can be created as copies of instanceconfig.xml) . Default configuration uses 9710 as listening port, so, a smart idea could be to use 9711 ans 9712 for additional config files. For example, the relevant (changed)  section from instanceconfig02.xml and instanceconfig03.xml looks like:

    <WebConfig>
     <ServerInstance>
     <DSN>AnalyticsWeb02</DSN>
     <Listener port="9711" />
    <CatalogPath>/opt/biee/OracleBIData/web/catalog/sh</CatalogPath>
    
    <WebConfig>
     <ServerInstance>
     <DSN>AnalyticsWeb03</DSN>
     <Listener port="9712" />
    <CatalogPath>/opt/biee/OracleBIData/web/catalog/sakila</CatalogPath>
    

    After that – 3 instances of presentation services can be started (the sawserver executables accept a -c commandline parameter to specify a configuration file). Unfortunately, delivered run-saw.sh doesn’t allow to start multiple instances, so i wrote a customized start script (i apologize for inconvinient media type – but the script is too long to post it here and i am really newby in regard to wordpress , i.e. i didn’t found a way to upload a shell script, that’s why i chose a pdf) , which does the same as supplied script, but additionally

    • allows start a single instance with specified config file ( either full path to instanceconfig.xml or only basename)
    • allows stop of a single instance with specified config file
    • checks existence of specified config file
    • takes care to write to separate log file for each instance
    • takes care to not start a javahost server only by startup of first instance presentation services and shut down only if the last instance is shutdown

    I consider it as dirty hack, although, it works fine for me on Linux – but probably, there are some bugs , additionally i didn’t test it on solaris or hpux – so, please test it carefully if you decide to use it.  After all, the typical use case for it looks like:

    ./run-config-saw.sh -c instanceconfig02.xml start
    Oracle BI Presentation Services with process id 27097 and config instanceconfig02.xml is already running.
    Oracle BI Java Host with process id 26428 is already running
    ./run-config-saw.sh -c instanceconfig02.xml stop
    Stopping Oracle BI Presentation Services with process id 27097 and config instanceconfig02.xml
    ./run-config-saw.sh -c instanceconfig02.xml start
    Starting Oracle BI Presentation Services with config file instanceconfig02.xml
    Oracle BI Presentation Services startup initiated.
    ./run-config-saw.sh -c whateveryoutypewrong start
    Config File /opt/biee/OracleBIData/web/config/whateveryoutypewrong doesn't exist
    Exit now ...
    

    Now, after bi server and presentation services are configured, the last tier – webserver deployment should be completed. In my setup i used WebLogic (i consider myself slightly biased in regard to it – i like, how this software is designed and implemented), but the process is very similar on JBoss, Tomcat,OC4J or whatever you choose. To deploy the analytics.war under bea as 3 different applications – simply create 3 different directories under chosen deployment directory ( could be anywhere in system), extract analytics.war archive in each of them and modify web.xml configuration file to reflect the listening port of presentation services.

    cd /opt/biee/Middleware
    mkdir deployments
    cd deployments
    mkdir analytics0{1,2,3}
    for dir in analytics*
    do
     (cd $dir;jar -xf /opt/biee/OracleBI/web/analytics.war)
    done
    

    After modifiing web.xml for each application, it looks like

     cat analytics0{1..3}/WEB-INF/web.xml|grep -C 3 oracle.bi.presentation.sawserver.Port
    <param-value>localhost</param-value>
     </init-param>
     <init-param>
    <param-name>oracle.bi.presentation.sawserver.Port</param-name>
    <param-value>9710</param-value>
     </init-param>
     </servlet>
    --
    <param-value>localhost</param-value>
     </init-param>
     <init-param>
    <param-name>oracle.bi.presentation.sawserver.Port</param-name>
    <param-value>9711</param-value>
     </init-param>
     </servlet>
    --
    <param-value>localhost</param-value>
     </init-param>
     <init-param>
    <param-name>oracle.bi.presentation.sawserver.Port</param-name>
    <param-value>9712</param-value>
     </init-param>
     </servlet>
    

    The last step is to go to WebLogic Admin console and deploy these web applications ( it can be done with wlst as well)  – some screenshots  follows

    After deployment it should be possible to access every single Oracle BI presentation service under its url (i configured WebLogic server to listen on Port 7003 – like in my previous blog post) :

    Last thing to be mentioned – the configuration with multiple presentation services on the same host is not officially supported by oracle. But for development purposes it may be fully acceptable  – as long as it works.

    Deployment Step 1

    Deployment Step 1

    Deployment Step 2

    Deployment Step 2

    Deployment Step 3

    Deployment Step 3

    Deployment Step 4

    Deployment Step 4

    Deployment Step 5

    Deployment Step 5

    Deployment Step 6

    Deployment Step 6

     
    • rnm1978 10:45 on 10 September, 2009 Permalink | Reply

      Excellent post, and interesting comments around getting ODBC 32/64 bit working.

      • MaximDemenko 09:02 on 11 September, 2009 Permalink | Reply

        Thank you for kind words

    • Calista Gelbach 06:05 on 19 March, 2010 Permalink | Reply

      Ich hab darueber erst mal wo gelesen, extrem gutes Thema. Ich komme wieder.

  • MaximDemenko 21:54 on 10 August, 2009 Permalink | Reply
    Tags: OBIEE, silent, unattended, WebLogic   

    OBIEE powered with WebLogic 

    Majority of OBIEE deployments are implemented with OC4J – this is the default type of OBIEE setup. It is easy.  Well, substitute OC4J with WebLogic is easy as well ( of course, this alternative may be interesting only for shops already running WebLogic, otherwise it might be too expensive).

    First, the WebLogic software should be installed – this is not a big deal, interesting to mention only – it is perfectly capable for silent mode installation.  To do that, a pretty simple configuration file should be created – the example from the documentation is a good start point, in my setup i written such config ( silent.xml) with following content:

    
    <?xml version="1.0" encoding="UTF-8"?>
    <bea-installer>
     <input-fields>
     <data-value name="BEAHOME" value="/opt/biee/Middleware" />
     <data-value name="WLS_INSTALL_DIR" value="/opt/biee/Middleware/wlserver_10.3" />
     <data-value name="COMPONENT_PATHS"
     value="WebLogic Server" />
     <data-value name="INSTALL_NODE_MANAGER_SERVICE" value="yes"  />
     <data-value name="NODEMGR_PORT" value="5555" />
     <data-value name="BEA_BUNDLED_JVMS" value="/opt/biee/Middleware/jrockit_160_05" />
     </input-fields>
    </bea-installer>
    

    There is not too much freedom by the installation – you can vary installation location, individual components, which jdk should be installed/used. The installation itself can be performed then with

    
    ./server103_linux32.bin -silent_xml=/opt/biee/stage/silent.xml -mode=silent -log=silent.log
    

    After installer completes, the domain should be created. The concept of domain is again very good explained in the documentation, basically it is a logical entity which contains grouped by some attribute (it may be all development server – building a development domain, or , alternatively,  all server located in Munich – building a geographical domain) WebLogic servers or clusters. To perform administrative tasks on domain, one server, dedicated for this job should be created (typically called AdminServer) – where no custom applications should be deployed. Additionally, any number of managed server or cluster may be created in the same domain.  Another component worth to mention is NodeManager – it adds a lot of flexibility to control your server infrastructure, it can start server, kill server,check server status and alike – again, the documentation is very detailed.  So, to achieve the goal – deployment of OBIEE – the plan could look

    1. Create a bi domain
    2. Create administrative  server
    3. Create managed server
    4. optionally – enroll NodeManager
    5. Deploy OBIEE into managed server

    The funny point about this is – all the tasks above can be scripted. No mouse. Ever.

    Moreover, it can be done in a lot of ways, my personal favorite is WebLogic Scripting Tool (WLST – a jython based api). There are a lot of functionality already included in WLST, it is highly extensible, for example Oracle Fusion is delivered with additional modules to get better control over individual components.  But if that’s not enough, one can write own scripts using either existing java or python classes. To create a simple domain a supplied script can be used (with some adujstments) – the location of sample wlst scripts is $WLS_INSTALL_DIR/common/templates/scripts/wlst. Google search can provide a lot of nice examples as well, in particular, i used slightly customized version of script found at Bala Kothandaraman’s blog :

    ### Script to create WebLogic Domain(s) from csv file02.### Reusable Definitions
    def buildDomain():
        ### Read Basic Template
        readTemplate(WL_HOME+"/common/templates/domains/wls.jar")
        cd('Servers/AdminServer')
        set('ListenAddress', adminServerAddress)
        set('ListenPort', int(adminServerPort))
        ### Create Admin User
        cd('/Security/base_domain/User')
        delete('weblogic','User')
        create(adminUser,'User')
        cd(adminUser)
        set('Password',adminPassword)
        set('IsDefaultAdmin',1)
        ### Write Domain
        setOption('OverwriteDomain', 'true')
        writeDomain(domainLocation+'/'+domainName)
        closeTemplate()
    def printConfirmation():
        ### Print Confirmation
        print ""
        print "Created Domain With Following Values"
        print "Domain Name   = %s " % domainName
        print "Domain Location  = %s " % domainLocation
        print "Admin User   = %s " % adminUser
        print "Admin Password   = %s " % adminPassword
        print "Admin Server Address  = %s " % adminServerAddress
        print "Admin Server port  = %s " % adminServerPort
    ### Executable Script
    ### CreateDomain.py
    import sys
    ### Define constants
    WL_HOME = "/opt/bea/Middleware/wlserver_10.3"
    ### Read the command-line arguments
    argslength = len(sys.argv)
    if argslength < 2 :
        print '==>Insufficient arguments'
        print '==>Syntax: java weblogic.WLST CreateDomain.py csv.file'
        exit()
    else:
        ### Read the csv file
        fileName = sys.argv[1]
        print('Reading File \"' + fileName + '\"' )
        f = open(fileName)
        try:
            for line in f.readlines():
            ### Strip the comment lines
              if line.strip().startswith('#'):
                  continue
              else:
                  ### Split the comma seperated values
                  items = line.split(',')
                  items = [item.strip() for item in items]
                  if len(items) != 6:
                      print "==>Bad line: %s" % line
                      print "==>Syntax: domainName, domainLocation, adminUser, adminPassword, adminServerAddress, adminServerPort"
                  else:
                      (domainName, domainLocation, adminUser, adminPassword, adminServerAddress, adminServerPort) = items
    
                      ### Call the definition buildDomain
                      buildDomain()
                      ### Call the definition printConfirmation
                      printConfirmation()
        except Exception, e:
            print "==>Error Occured"
            print e
    exit()
    

    This script reads a csv file with 6 fields filled for domain name,domain location,admin user,admin password,server address,server port. I used a file biee.csv with the contents:

    biee,/opt/bea/Middleware/user_projects/domains,admin,weblogic,,7001
    

    Leaving the server address empty means, server will be listening on all available interfaces, otherwise, it would be listen only on the interface with the given ip address.
    Script can be executed then by the WLST wrapper ( of course, the csv file can contain definitions for multiple domains, which all are created then in bulk)

    wlst.sh CreateDomain.py biee.csv
    

    The next steps – create managed server, enroll NodeManager, deploy application are performed by following wlst script:

    ## Variable Definitions
    DomainName   = 'biee'
    DomainLocation  = '/opt/bea/Middleware/user_projects/domains'
    DomainDir = DomainLocation + '/' + DomainName
    AdminUser   = 'admin'
    AdminPassword   = 'weblogic'
    AdminServerport  = '7001'
    AdminServer='AdminServer'
    ManagedServer='biee01'
    Machine='unixMachine01'
    nmPort=5555
    nmType='SSL'
    nmHost='localhost'
    nmHome='/opt/bea/Middleware/wlserver_10.3/common/nodemanager'
    
    # StartServer - starts AdminServer
    startServer(adminServerName=AdminServer,domainName=DomainName,username=AdminUser,password=AdminPassword,
       domainDir=DomainDir)
    # connect to server
    connect(AdminUser,AdminPassword)
    edit()
    startEdit()
    
    # create Machine
    cmo.createUnixMachine(Machine)
    # create managed server
    cmo.createServer(ManagedServer)
    
    cd('/Machines/' + Machine + '/NodeManager/' + Machine)
    cmo.setNMType(nmType)
    cmo.setListenPort(nmPort)
    cmo.setListenAddress(nmHost)
    
    cd('/Servers/' + ManagedServer)
    cmo.setListenAddress('')
    cmo.setListenPort(7003)
    cmo.setListenPortEnabled(true)
    cmo.setJavaCompiler('javac')
    cmo.setMachine(getMBean('/Machines/' + Machine))
    
    cd('/Servers/' + ManagedServer + '/SSL/' + ManagedServer)
    cmo.setEnabled(true)
    cmo.setListenPort(7004)
    
    cd('/Servers/' + ManagedServer + '/ServerStart/' + ManagedServer)
    cmo.setUsername(AdminUser)
    cmo.setPassword(AdminPassword)
    cmo.setClassPath('/opt/bea/Middleware/patch_wls1030/profiles/default/sys_manifest_classpath/
       weblogic_patch.jar:/opt/bea/Middleware/patch_cie660/profiles/default/sys_manifest_classpath/
       weblogic_patch.jar:/opt/bea/Middleware/jrockit_160_05/lib/tools.jar:/opt/bea/Middleware/
       wlserver_10.3/server/lib/weblogic_sp.jar:/opt/bea/Middleware/wlserver_10.3/server/lib/
       weblogic.jar:/opt/bea/Middleware/modules/features/weblogic.server.modules_10.3.0.0.jar:/
       opt/bea/Middleware/wlserver_10.3/server/lib/webservices.jar:/opt/bea/Middleware/modules/
       org.apache.ant_1.6.5/lib/ant-all.jar:/opt/bea/Middleware/modules/
       net.sf.antcontrib_1.0.0.0_1-0b2/lib/ant-contrib.jar:')
    save()
    activate()
    # enroll NodeManager
    nmEnroll(DomainDir,nmHome )
    # start Node Manager
    startNodeManager(verbose='true',NodeManagerHome=nmHome,ListenPort='5555',ListenAddress=nmHost)
    # connect to node manager
    nmConnect(AdminUser,AdminPassword, nmHost, 5555, DomainName, DomainDir,'ssl')
    # start managed server
    start(ManagedServer,'Server')
    # deploy application ( oracle bi )
    deploy("analytics","/opt/bea/OracleBI/web/analytics.war","biee01,",securityModel="DDOnly",block="true")
    

    The script is pretty self explanatory – it is in general the strength of jython or python scripts – the code is easy readable, but it might be my personal opinion as i use a lot of python in daily work. Another point worth to mention – in the AdminConsole recording can be enabled, so all configuration changes in the Web gui can be saved to a script, that can be a starting point for latter configuration/deployment scripts.
    By the last step – deployment – is assumed, Oracle BI EE is already installed. By the way, Oracle BI EE can as well be installed in silent mode – the response file will be created if installer options are like:

    $BI_STAGE/setup.sh -console -options -record custom_response.ini
    

    which might be reused then

    $BI_STAGE/setup.sh -options custom_response.ini -silent
    

    If BI Server and Presentation Server are started, then you can immediately login to Answers/Dashboards served from WebLogic server. XMLPublisher can be deployed on the same or another managed server, depending on requirements.

    ### Script to create WebLogic Domain(s) from csv file02.### Reusable Definitions
    def buildDomain():
    ### Read Basic Template
    readTemplate(WL_HOME+”/common/templates/domains/wls.jar”)
    cd(‘Servers/AdminServer’)
    set(‘ListenAddress’, adminServerAddress)
    set(‘ListenPort’, int(adminServerPort))
    ### Create Admin User
    cd(‘/Security/base_domain/User’)
    delete(‘weblogic’,'User’)
    create(adminUser,’User’)
    cd(adminUser)
    set(‘Password’,adminPassword)
    set(‘IsDefaultAdmin’,1)
    ### Write Domain
    setOption(‘OverwriteDomain’, ‘true’)
    writeDomain(domainLocation+’/'+domainName)
    closeTemplate()
    def printConfirmation():
    ### Print Confirmation
    print “”
    print “Created Domain With Following Values”
    print “Domain Name   = %s ” % domainName
    print “Domain Location  = %s ” % domainLocation
    print “Admin User   = %s ” % adminUser
    print “Admin Password   = %s ” % adminPassword
    print “Admin Server Address  = %s ” % adminServerAddress
    print “Admin Server port  = %s ” % adminServerPort
    ### Executable Script
    ### CreateDomain.py
    import sys
    ### Define constants
    WL_HOME = “/opt/bea/Middleware/wlserver_10.3″
    ### Read the command-line arguments
    argslength = len(sys.argv)
    if argslength < 2 :
    print ‘==>Insufficient arguments’
    print ‘==>Syntax: java weblogic.WLST CreateDomain.py csv.file’
    exit()
    else:
    ### Read the csv file
    fileName = sys.argv[1]
    print(‘Reading File \”‘ + fileName + ‘\”‘ )
    f = open(fileName)
    try:
    for line in f.readlines():
    ### Strip the comment lines
    if line.strip().startswith(‘#’):
    continue
    else:
    ### Split the comma seperated values
    items = line.split(‘,’)
    items = [item.strip() for item in items]
    if len(items) != 6:
    print “==>Bad line: %s” % line
    print “==>Syntax: domainName, domainLocation, adminUser, adminPassword, adminServerAddress, adminServerPort”
    else:
    (domainName, domainLocation, adminUser, adminPassword, adminServerAddress, adminServerPort) = items

    ### Call the definition buildDomain
    buildDomain()
    ### Call the definition printConfirmation
    printConfirmation()
    except Exception, e:
    print “==>Error Occured”
    print e
    exit()

     
  • MaximDemenko 22:02 on 22 July, 2009 Permalink | Reply  

    Some notes about Oracle installation in silent mode 

    Awhile ago Grégory Guillou from Pythian Group published a nice serie of posts about using some Oracle utilities (like oui,dbca,dbua,netca) in silent mode. For dba’s who perform a lot maintenance tasks – install,configure,patch – this technique is a huge timesaver ( at least it is in my experience ). As he stated himself, there is a ton of things more, one can do with these tools, which can’t be covered in a blog post ( or even in a couple of them).

    I was looking how to add individual components to an existing oracle home in silent mode – maybe, this requirement come not so often, because the enterprise or custom install types include the majority of the options. But connection manager and oracle label security (to name only two, i was interested in) are not installed per default. So, the first approach was – install interactively and record the response file. Unfortunately, it doesn’t work – installer doesn’t record selected options doing the custom install. There is a Metalink Note 314025.1 , which suggests, the issue to be fixed in later versions of oui, but in my test with the version bundled with database 11gR1 it was still not working.

    As opposite to examples provided by Grégory, this type of installation requires custom response file (at least, in my test the relevant parameters – DEPENDENCY_LIST – were not accepted as command line switches). Finally, this worked for me to install the mentioned two options on an enterprise 10.2.0.1 installation (assumed, the database software is unzipped into /opt/oracle/stage/database) :

    cat << eof >options.rsp
    RESPONSEFILE_VERSION=2.2.1.0.0
    oracle.options:DEPENDENCY_LIST={"oracle.rdbms.lbac:10.2.0.1.0"}
    oracle.network:DEPENDENCY_LIST={"oracle.network.cman:10.2.0.1.0"}
    eof
    
    WORK=/opt/oracle/stage
    DIST=$WORK/database
    RESP=$WORK/options.rsp
    $DIST/runInstaller -silent                        \
    -responseFile $RESP                               \
    FROM_LOCATION=$DIST/stage/products.xml            \
    ORACLE_HOME="/opt/oracle/product/10.2.0.4"        \
    ORACLE_HOME_NAME="OraDb10g_home4"                 \
    TOPLEVEL_COMPONENT={"oracle.server","10.2.0.1.0"} \
    DEINSTALL_LIST={"oracle.server","10.2.0.1.0"}     \
    COMPONENT_LANGUAGES={"en","de","ru"}              \
    INSTALL_TYPE="Custom"
    

    To verify

    opatch lsinventory -detail|grep -i "connection\|label"
    Oracle Connection Manager                                            10.2.0.1.0
    Oracle Label Security                                                10.2.0.1.0
    

    Of course, if the components should be installed on the oracle home already patched, after the installation the patchset should be applied again.

     
c
compose new post
j
next post/next comment
k
previous post/previous comment
r
reply
e
edit
o
show/hide comments
t
go to top
l
go to login
h
show/hide help
esc
cancel