problems when installing ORACLE 10 g R2 RAC on RHEL 5.3

I want to install oracle 10g R2 RAC on RHEL 5.3 in a test environment. My goal was to install using ASM.
I went through ok prerequisites before starting the installation.
Since RHEL 5.3 does not support raw devices, I used
http://www.idevelopment.info/data/UNIX/Linux/LINUX_ConnectingToAniSCSITargetWithOpen-iSCSIInitiatorUsingLinux.shtml#configure%20iSCSI%20Initiator%20and%20New%20Volume

udev to configure shared storage. my storage is on openfiler as an iSCSI target.

fdisk-l on both nodes shows the shared disks.
[root@node1 ~]# fdisk -l

Disk /dev/sda: 21.4 GB, 21474836480 bytes
255 heads, 63 sectors/track, 2610 cylinders
Units = cylinders of 16065 * 512 = 8225280 bytes

   Device Boot      Start         End      Blocks   Id  System
/dev/sda1   *           1          13      104391   83  Linux
/dev/sda2              14        2053    16386300   8e  Linux LVM
/dev/sda3            2054        2372     2562367+  82  Linux swap / Solaris

Disk /dev/sdd: 10.5 GB, 10502537216 bytes
64 heads, 32 sectors/track, 10016 cylinders
Units = cylinders of 2048 * 512 = 1048576 bytes

   Device Boot      Start         End      Blocks   Id  System
/dev/sdd1               1       10016    10256368   83  Linux

Disk /dev/sdb: 10.5 GB, 10536091648 bytes
64 heads, 32 sectors/track, 10048 cylinders
Units = cylinders of 2048 * 512 = 1048576 bytes

   Device Boot      Start         End      Blocks   Id  System
/dev/sdb1               1       10048    10289136   83  Linux

Disk /dev/sdc: 10.5 GB, 10536091648 bytes
64 heads, 32 sectors/track, 10048 cylinders
Units = cylinders of 2048 * 512 = 1048576 bytes

   Device Boot      Start         End      Blocks   Id  System
/dev/sdc1               1       10048    10289136   83  Linux

Disk /dev/sdf: 10.5 GB, 10569646080 bytes
64 heads, 32 sectors/track, 10080 cylinders
Units = cylinders of 2048 * 512 = 1048576 bytes

   Device Boot      Start         End      Blocks   Id  System
/dev/sdf1               1       10080    10321904   83  Linux

Disk /dev/sde: 10.5 GB, 10502537216 bytes
64 heads, 32 sectors/track, 10016 cylinders
Units = cylinders of 2048 * 512 = 1048576 bytes

   Device Boot      Start         End      Blocks   Id  System
/dev/sde1               1       10016    10256368   83  Linux
[root@node1 ~]# ls -l /dev/iscsi/arpl*
/dev/iscsi/arpl1:
total 0
lrwxrwxrwx 1 oracle oinstall  9 Jun 30 12:58 part -> ../../sde
lrwxrwxrwx 1 oracle oinstall 10 Jun 30 12:58 part1 -> ../../sde1

/dev/iscsi/arpl2:
total 0
lrwxrwxrwx 1 oracle oinstall  9 Jun 30 12:58 part -> ../../sdd
lrwxrwxrwx 1 oracle oinstall 10 Jun 30 12:58 part1 -> ../../sdd1

/dev/iscsi/arpl3:
total 0
lrwxrwxrwx 1 oracle oinstall  9 Jun 30 12:58 part -> ../../sdb
lrwxrwxrwx 1 oracle oinstall 10 Jun 30 12:58 part1 -> ../../sdb1

/dev/iscsi/arpl4:
total 0
lrwxrwxrwx 1 oracle oinstall  9 Jun 30 12:58 part -> ../../sdc
lrwxrwxrwx 1 oracle oinstall 10 Jun 30 12:58 part1 -> ../../sdc1

/dev/iscsi/arpl5:
total 0
lrwxrwxrwx 1 oracle oinstall  9 Jun 30 12:58 part -> ../../sdf
lrwxrwxrwx 1 oracle oinstall 10 Jun 30 12:58 part1 -> ../../sdf1
[root@node1 ~]# 
Configure the results of udev in the drives mapped to the names of persistent drive for example. / dev/iSCSI/arpl1/part1
always when I enter the name of the raw device that I created I get the following error. Help, please

Image:! http://img91.imageshack.us/img91/7448/Oracle.PNG!

did you check that
http://download-West.Oracle.com/docs/CD/B19306_01/install.102/B14203/storage.htm#BABBHECD
http://download.Oracle.com/docs/CD/B28359_01/install.111/b28263/storage.htm#CDEBFDEH

also before making what is proposed on the url posted by Mufalani.
It seems that you should do the following:

Verify the existence of udev mapping rule file /etc/udev/rules.d/60-raw.rules brute
On HR/EL5, gross udev mapping rule file /etc/udev/rules.d/60-raw.rules must exist by default as part of the util-linux package, for example:

# ls /etc/udev/rules.d/60-raw.rules
/etc/udev/rules.d/60-raw.rules

Create a custom gross udev mapping rules file, /etc/udev/rules.d/61-oracleraw.rules say, for example:

# touch /etc/udev/rules.d/61-oracleraw.rules

3B. Add raw udev binding rules to the /etc/udev/rules.d/61-oracleraw.rules file
Add the binding rules gross udev in the etc/udev/rules.d/61-oracleraw.rules file, for example:

# cat /etc/udev/rules.d/61-oracleraw.rules
# Raw bind to Oracle Clusterware devices
ACTION=="add", KERNEL=="sd*", PROGRAM=="/sbin/scsi_id", RESULT=="360a98000686f6959684a453333524174", RUN+="/bin/raw /dev/raw/raw1 %N"
ACTION=="add", KERNEL=="sd*", PROGRAM=="/sbin/scsi_id", RESULT=="360a98000686f6959684a453333524179", RUN+="/bin/raw /dev/raw/raw2 %N"

If switch to RHEL5/OEL5 since an earlier version of Linux that has pressed persistent raw device bindings in the/etc/sysconfig/rawdevices file, the following script can serve as a basis to generate your RHEL5/OEL5 of the udev rules. Note that the script does not factor device name persistence.

#!/bin/bash
grep -v "^ *#" /etc/sysconfig/rawdevices | grep -v "^$" | while read dev major minor ; do
if [ -z "$minor" ]; then
echo "ACTION==\"add\", KERNEL==\"${major##/dev/}\", RUN+=\"/bin/raw $dev %N\""
else
echo "ACTION==\"add\", ENV{MAJOR}==\"$major\", ENV{MINOR}==\"$minor\", RUN+=\"/bin/raw $dev %M %m\""
fi
done

Tags: Database

Similar Questions

  • Problems when installing Oracle XE 11 g x 64

    Everything in the re - install Oracle XE, I see all of the files under the directory

    C:\oraclexe\app\oracle\oradata\XE

    It seems that no schema is created, including when coz I am trying to connect, I get the error below. Can someone guide me?

    2015-10-26_215424.png

    The problem is resolved. I deleted some of the entries localhost in the host file and then tried to install the same. It worked.

  • Have a problem when installing packages Asmlib

    Hi all

    I have a problem when installing packages ASMlib.

    My OS = Redhat linux 5.3
    kenel version using this command uname - r = 2.6.18 - 128.el5

    I downloaded the package and installed successfully after 4

    oracleasm-support - 2.1.7 - 1.el5.i386.rpm
    oracleasmlib - 2.0.4 - 1.el5.i386.rpm
    oracleasm - 2.6.18 - 128.el5 - 2.0.5 - 1.el5.i686.rpm
    oracleasm-2.6.18-128.EL5-DebugInfo-2.0.5-1.EL5.i686.rpm

    But while the installation following received the error

    RPM - ivh oracleasm - 2.6.18 - 128.el5debug - 2.0.5 - 1.el5.i686.rpm

    kernel debugging = 2.6.18 - 128.el5 is necessary for oracleasm - 2.6.18 - 128.el5debug - 2.0.5 - 1.el5.i686

    RPM - ivh oracleasm - 2.6.18 - 128.el5PAE - 2.0.5 - 1.el5.i686.rpm

    kernel-PAE = 2.6.18 - 128.el5 is necessary for oracleasm - 2.6.18 - 128.el5PAE - 2.0.5 - 1.el5.i686

    RPM - ivh oracleasm - 2.6.18 - 128.el5xen - 2.0.5 - 1.el5.i686.rpm

    kernel-xen = 2.6.18 - 128.el5 is necessary for oracleasm - 2.6.18 - 128.el5xen - 2.0.5 - 1.el5.i686

    Thanks in advance

    xuv500 wrote:
    kernel debugging = 2.6.18 - 128.el5 is necessary for oracleasm - 2.6.18 - 128.el5debug - 2.0.5 - 1.el5.i686
    kernel-PAE = 2.6.18 - 128.el5 is necessary for oracleasm - 2.6.18 - 128.el5PAE - 2.0.5 - 1.el5.i686
    kernel-xen = 2.6.18 - 128.el5 is necessary for oracleasm - 2.6.18 - 128.el5xen - 2.0.5 - 1.el5.i686

    Then install the packages. You can find them on installtion DVD

  • Install the problem when installing Creative Suite 6 Master collection?

    Is that what someone has had this problem when installing Creative suite Master Collection 6? It is said: the product, you try to install in the footsteps of a real Adobe and seems to be counterfeit. I received the product directly from Adobe. It will validate then start to install and then stop and give me the above error. Help.

    Try http://helpx.adobe.com/creative-suite/kb/genuine-verification-failure.html

  • Don't take any Message When installing Oracle 11 g 1 material with dbca on Solaris10

    Hi people Oracle,.

    Please can someone help me;

    When installing Oracle 11 GR 1 material with dbca on Solaris10 als I get to the last step with the creation of database after clicking on finish OK for HTLM model it takes too much time.
    And nothing out like the other error more than an hour. It's just waiting without installation procedure. Nothing
    I tried uninstall-install-uninstall-install but nothing. I google but nothing.
    Reason why I'm asking you please your advice, or a good link where to look.


    I thank in advance
    Sincerely
    Easyman

    It was just a workaround solution, since I plugged directly in the external display. Try this with X fonts.

  • Issue of INS-35354 when installing Oracle RAC 12 on infrastructure Oracle Grid 12

    Hello

    I am trying to install Oracle RAC 12.1.0.2 one node installation on Windows Server R2 2012, but the installer told me:

    'Valid [INS-35354] the system on which you try to install Oracle RAC One doesn't not part of a cluster.'

    On the same server I have is installed and running Oracle Grid Infrastructure + ASM.

    I don't know what is missing the installation program, which is possible to register? The installation program does not provide which had not passed the specific audit.

    Thanks for the tips

    Georg

    Hello

    A CCR node does not mean that you install the grid infrastructure in a single node and install a base of a RAC data on this node.

    Basically, a concept CAR is similar to active passive clustering to provide high availability. To have a node database RAC upward and launched, you will have to install clusterware on at least two server by selecting the option during the installation of the IM.

    Pls follow the below post for detailed answer

    INS-35354: validates the system on which you are trying to install Oracle RAC not part of a group when installing a 12 c RAC node database

    Concerning

    Krishnan

  • When installing Oracle BI 12 c on AIX is xmalloc of error: could not allocate 2112164888 bytes (0 bytes allocated)

    Dear all

    I was asked to install Oracle BI server on an AIX 6.1 Server 12 c old we have.

    I have JAVA SDK 7 which is supposed to be certified with both weblogic and BI 12 c

    I have installed weblogic with no problems, but when you call BI installation I get this error

    xmalloc: could not allocate 2112164888 bytes (0 bytes allocated)

    I tried to adjust/etc/security/limits

    $ ulimit - a

    Time (seconds) unlimited

    leader (Blocks) unlimited

    Data (KBytes) unlimited

    Stack (KBytes) 196608

    Memory (KBytes) unlimited

    coredump (Blocks) unlimited

    nofiles (descriptors) 65536

    threads (per process) unlimited

    process (per user) unlimited

    I don't know if this is related but I thought that it might help, but it didn't

    I have enough memory on the server, so what else could be wrong?

    Thank you all

    He is certified according to

    http://www.Oracle.com/technetwork/middleware/Fusion-Middleware/documentation/FMW-1212certmatrix-1970069.xls

    in any case, I found the solution, I don't even believe that such a thing has stopped me for a long time

    I only had to run the command from the same directory where the bin file!
    I used to run it like this

    . // bi_platform - 12.2.1.0.0_aix_ppc64.bin

    I should go the location first, then executez./bi_platform-12.2.1.0.0_aix_ppc64.bin

    Thanks to you all

  • Problem to install Oracle 11 g - impossible to establish a remote connection

    In short:

    I just installed Oracle 11 g and created a data base and the headset, but I'm unable to connect remotely with a customer database.

    My environment:

    Oracle 11g is installed on a VirtualBox (4.3.18) Red Hat Linux 6.5 VM.  The host operating system is Mac OS X Yosemite.  Linux VM is assigned a static ip address and the host and vm have host entries to resolve this name server:

    192.168.58.152 rhel65opdev-vm

    I am able to ping rhel65opdev-vm from these two places.

    Host: 64 bytes from 192.168.58.152: icmp_seq = 0 ttl = 64 time = 0,287 ms

    VM: 64 bytes of rhel65opdev-vm (192.168.58.152): icmp_seq = 1 ttl = 64 time = 0.027 ms

    I am also able to ssh into the Linux vm without problem.  If I try to telnet to the virtual machine on the port of configured database:

    = > telnet rhel65opdev-vm 1521
    192.168.58.152 by train...
    Telnet: connect to address 192.168.58.152: connection refused

    Telnet: unable to connect to the remote host

    Login as a user other my oracle on the same VM user, can I tnsping data base successfully:

    tnsping $ OP

    AMT Ping utility for Linux: Version 11.2.0.4.0 - Production on 16 January 2015 13:47:10

    Copyright (c) 1997, 2013, Oracle.  All rights reserved.

    Use settings files:

    TNSNAMES adapter used to resolve the alias

    Try to contact (DESCRIPTION = (ADDRESS_LIST = (ADDRESS = (PROTOCOL = TCP) (HOST = rhel65opdev-vm)(PORT = 1521))) (CONNECT_DATA = (SERVICE_NAME = OP)))

    OK (10 ms)

    The same user non-oracle, I am able to do appear SQLDeveloper and establish a connection with the database and check its schema.  But on the Mac, I am unable to use (the Mac version of) SQLDeveloper to do the same.  I get an error: IO error: the network adapter could not establish the connection.  Code 17002 provider.

    I have another Red Hat 6.5 virtual VM from where I'm modeling this new machine, which has the same version of Oracle on it, installed and working (which I myself installed without problem, but a long time ago).  I am able to connect remotely to this base since my Mac using Toad and SQLDeveloper without problem and I can telnet to port of database and there is no problem.

    I point out that I recently removed from the database and reinstalled.  I have created only one service: OP, but the OPXDB see below seems to be a previous installation, which can contribute to my question - not sure.

    Here are a few releases of various orders, I tried following suggestions I've seen on different threads, I found through research:

    • lsnrctl service $

    LSNRCTL for Linux: Version 11.2.0.4.0 - Production on 16 January 2015 13:59:32

    Copyright (c) 1991, 2013, Oracle.  All rights reserved.

    Connection to (ADDRESS = (PROTOCOL = tcp)(HOST=) (PORT = 1521))

    Summary of services...
    "OP" service has 1 instance (s).
    Instance "OP" READY State, has 1 operation for this service...
    Managers:
    "DEDICATED" set up: 0 denied: 0 status: ready
    LOCAL SERVER
    Service 'OPXDB' has 1 instance (s).
    Instance "OP" READY State, has 1 operation for this service...
    Managers:
    "D000" put in place: 0 denied: current: 0 0 max: 1022 State: loan
    DISPATCHER < machine: rhel65opdev-vm, pid: 2116 >
    (ADDRESS = (PROTOCOL = tcp) (HOST = rhel65opdev-vm)(PORT=23707))

    The command completed successfully

    • $ lsnrctl status

    LSNRCTL for Linux: Version 11.2.0.4.0 - Production on 16 January 2015 14:00:49

    Copyright (c) 1991, 2013, Oracle.  All rights reserved.

    Connection to (ADDRESS = (PROTOCOL = tcp)(HOST=) (PORT = 1521))

    STATUS of the LISTENER
    ------------------------
    Alias LISTENER
    Version TNSLSNR for Linux: Version 11.2.0.4.0 - Production
    Start date 16 January 2015 13:19:05
    Uptime 0 days 0 h 41 min 44 sec
    Draw level off
    Security ON: OS Local Authentication
    SNMP OFF
    Parameter Listener of the /opt/app/oracle/product/11.2.0/dbhome_1/network/admin/listener.ora file
    The listener log file /opt/app/Oracle/diag/tnslsnr/rhel65opdev-VM/listener/alert/log.XML
    Summary of endpoints listening...
    (DESCRIPTION = (ADDRESS = (PROTOCOL = tcp) (HOST = rhel65opdev-vm)(PORT=1521)))
    Summary of services...
    "OP" service has 1 instance (s).
    Instance "OP" READY State, has 1 operation for this service...
    Service 'OPXDB' has 1 instance (s).
    Instance "OP" READY State, has 1 operation for this service...

    The command completed successfully

    • $ iptables-L - v

    INPUT string (policy ACCEPT packets 0, 0 bytes)
    pkts bytes target prot opt in to the source destination
    2146 229K ACCEPT all - none none no matter where, no matter where the State RELATED, established

    2 168 ACCEPT icmp - any any anywhere anywhere
    576 34560 ACCEPT all - lo any anywhere anywhere
    7 448 tcp - all all no matter where no matter where State ACCEPTING NEW tcp dpt: ssh
    all 21 3688 - REJECT any any anywhere anywhere reject-with icmp-host-prohibited

    Chain forward (policy ACCEPT packets 0, 0 bytes)
    pkts bytes target prot opt in to the source destination
    0 0 all - REJECT any any anywhere anywhere with reject icmp-host-prohibited

    Chain OUTPUT (policy 2307 ACCEPT packets, 259 kb)

    pkts bytes target prot opt in to the source destination

    • $ cat /opt/app/oracle/product/11.2.0/dbhome_1/network/admin/tnsnames.ora

    tnsnames.ora # Network Configuration file: /opt/app/oracle/product/11.2.0/dbhome_1/network/admin/tnsnames.ora
    # Generated by Oracle configuration tools.

    OP =
    (DESCRIPTION =
    (ADDRESS_LIST =
    (ADDRESS = (PROTOCOL = TCP) (HOST = rhel65opdev-vm)(PORT = 1521))
    )
    (CONNECT_DATA =
    (SERVICE_NAME = OP)
    )
    )

    • $ cat /opt/app/oracle/product/11.2.0/dbhome_1/network/admin/listener.ora
      listener.ora # Network Configuration file: /opt/app/oracle/product/11.2.0/dbhome_1/network/admin/listener.ora
      # Generated by Oracle configuration tools.

      OP_LISTENER =
      (DESCRIPTION_LIST =
      (DESCRIPTION =
      (ADDRESS = (PROTOCOL = TCP) (HOST = rhel65opdev-vm)(PORT = 1521))
      )
      )

    ADR_BASE_OP_LISTENER = Oracle

    • My ORACLE_HOME is set to /opt/app/oracle/product/11.2.0/dbhome_1
    • On the Linux VM on which Oracle runs correctly (host name rhelopvm), I have the log queue listener and start SQLDeveloper on the host Mac:

    $ tail-f /opt/oracle/11.2.0.4/diag/tnslsnr/rhelopvm/listener/alert/log.xml

    < time msg = "2015-01 - 16 T 14: 19:02.286 - 05:00 ' org_id = 'oracle' id_comp = 'tnslsnr'"
    type = 'UNKNOWN' level = host_id = '16' "rhelopvm".
    host_addr = '192.168.57.152' >
    < txt > 16 January 2015 14:19:02 * (CONNECT_DATA = (SID = OP) (CID = (= SQL Developer PROGRAM) (HOST = __jdbc__) (USER = sellis))) * (ADDRESS = (PROTOCOL = tcp (PORT = 50158))(HOST=192.168.57.100)) * establish * OP * 0
    < / txt >

    < / msg >

    When I have the same tail on the defective VM log, the connection request is not that much (and so nothing is seen in this newspaper).

    In conclusion, I am of ideas on how to diagnose and correct the network error.  I would be grateful for any help.

    Thank you

    Scott Ellis

    This can prove to be worthless, consider that on some * nix systems 'iptables' is enabled as part of the base operating system installation.

    your symptoms may change if you turn off or disable iptables on the virtual machine

    IPTABLES (8) IPTABLES (8)

    NAME

    iptables - administration tool for IPv4 and NAT packet filtering

    LOGBOOK

    iptables [-t table]-[AD] chain rule-specification [options]

    iptables [-t table]-I chain [rulenum] rule-specification [options]

    iptables [-t table] r chain rulenum rule-specification [options]

    iptables [-t table] d chain rulenum [options]

    iptables [-t table]-[home] [string] [options]

    iptables [-t table] chain n

    iptables [-t table] X-[string]

    iptables [-t table] string Pei [options] target

    iptables [-t table] name old-chain-new-name-of-chain E

    DESCRIPTION

    Iptables is used to set up, maintain and control intellectual property tables

    Linux kernel packet filtering rules.  Several different tables can

    be defined.   Each table contains a number of built-in chains and may

    also contain user-defined strings.

    Each string is a list of rules that can match a set of packages.

  • Problems when installing application Express listener

    Hello
    I am new to Oracle Application Express and installed it for the first time. I'm following the instructions in the Setup Guide (http://docs.oracle.com/cd/E37097_01/doc/install.42/e35123/otn_install.htm) and am stuck after installing the listening service. I think that I have installed the service, but the web page is blank. In IE, I see the icon in the status bar of error. The opening, I get the following error message:

    Webpage error details

    User Agent: Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729 .NET CLR 3.0.30729; Media Center PC 6.0; NET4.0C;. NET4.0E; .NET CLR 1.1.4322)
    Timestamp: Monday, November 26, 2012 09:24:50 UTC


    Message: "apex" is not defined
    Line: 35
    Char: 1
    Code: 0
    URI: http://localhost: 8080/apex/f? p = 4550:1:10702613836253:


    Message: "apex" is not defined
    Line: 110
    Char: 1
    Code: 0
    URI: http://localhost: 8080/apex/f? p = 4550:1:10702613836253:



    My configuration is:
    Oracle DB 11 g Standard running on port 1158. The listening APEX service is configured for the port 1521, but when I enter http://localhost:1521/apex/in the browser, it changes automatically to http://localhost: 8080/apex /.

    Listening service works well (I guess):
    C:\SW\Apex\apex_listener > java-jar apex.war
    NEWS: Check out: C:\SW\Apex\apex_listener\apex.war
    + See: ' java-jar apex.war - help' for a full range of configuration options.
    NEWS: Check out at: C:\Users\hm\AppData\Local\Temp\apex
    INFO: Using classpath: file:/C:/Users/hm/AppData/Local/Temp/apex/apex/___
    Embedded/Start.jar:file:/C:/Users/HM/AppData/Local/Temp/APEX/APEX/Web-INF/
    lib/apex.jar:file:/C:/users/HM/APPDATA/local/Temp/Apex/Apex/Web-INF/lib/co
    mmons-FileUpload-1.2.1.jar:file:/C:/Users/HM/AppData/Local/Temp/APEX/APEX/
    WEB-INF/lib/je-4.0.103.jar:file:/C:/Users/hm/AppData/Local/Temp/apex/apex/
    WEB-INF/lib/ojdbc6.jar:file:/C:/Users/hm/AppData/Local/Temp/apex/apex/WEB-
    INF/lib/ojmisc.jar:file:/C:/Users/hm/AppData/Local/Temp/apex/apex/WEB-INF/
    lib/POI-3.6-20091214.jar:file:/C:/Users/HM/AppData/Local/Temp/APEX/APEX/We
    B-INF/lib/ucp.jar:file:/C:/Users/hm/AppData/Local/Temp/apex/apex/WEB-INF/l
    IB/xdb-11.2.0.jar:file:/C:/Users/HM/AppData/Local/Temp/APEX/APEX/Web-INF/l
    IB/xmlparserv2-11.2.0.jar:
    INFO: From Embedded Web container in: C:\Users\hm\AppData\Local\Temp\a
    PEX
    November 26, 2012 02:16:30 ___bootstrap. The Deployment Manager deploy
    INFO: Deploy the application = C:\Users\hm\AppData\Local\Temp\apex\ape path
    x\WEB-INF\web. XML
    November 26, 2012 02:16:31 ___bootstrap. The Deployment Manager deploy
    INFO: deploy the application path = C:\Users\hm\AppData\Local\Temp\apex\apex\W
    EB - INF\web.xml
    Using the configuration file: C:\Users\hm\AppData\Local\Temp\apex\apex-config.xml
    + - list properties.
    PropertyCheckInterval = 60
    ValidateConnection = true
    MinLimit = 1
    MaxLimit = 10
    InitialLimit = 3
    AbandonedConnectionTimeout = 900
    MaxStatementsLimit = 10
    InactivityTimeout = 1800
    MaxConnectionReuseCount = 1000
    Listener APEX version: 1.1.4.195.00.12
    The APEX listener server info: Grizzly/1.9.18-o
    November 26, 2012 02:16:53 com.sun.grizzly.Controller logVersion
    INFO: From Grizzly Framework 1.9.18 - o - Mon Nov 26 02:16:53 MST 2012
    INFO: http://localhost: 8080/apex began.
    Using the JDBC driver: Oracle JDBC driver version: 11.2.0.2.0


    Here is the output of lsnrctl status+ ordering:

    LSNRCTL for 32-bit Windows: Version 11.2.0.1.0 - Production on 26 November 2012 02:40:42

    Copyright (c) 1991, 2010, Oracle.  All rights reserved.

    Connection to (DESCRIPTION = (ADDRESS = (PROTOCOL = IPC) (KEY = EXTPROC1521)))
    STATUS of the LISTENER
    ------------------------
    Alias LISTENER
    Version TNSLSNR for 32-bit Windows: Version 11.2.0.1.0 - Production
    Start date November 25, 2012 23:16:01
    Uptime 0 days 3 hours 24 min 44 sec
    Draw level off
    Security ON: OS Local Authentication
    SNMP OFF
    Listener parameter File C:\app\hm\product\11.2.0\dbhome_1\network\admin\listener.ora
    C:\app\hm\diag\tnslsnr\dummy\listener\alert\log.XML log listener
    Summary of endpoints listening...
    +(Description=(address=(Protocol=IPC)(PIPENAME=\\.\pipe\EXTPROC1521ipc)))+
    + (Description = (Address = (Protocol = TCP)(Host=Dummy.com) (port = 1521))) +.
    Summary of services...
    Service 'CLRExtProc' has 1 instance (s).
    Instance of 'CLRExtProc', status UNKNOWN, has 1 operation for this service...
    "Xxxx" service has 1 instance (s).
    Instance "orcl", State LOAN, has 1 operation for this service...
    "Xxxx" service has 1 instance (s).
    Instance "orcl", State LOAN, has 1 operation for this service...
    The command completed successfully


    Could you please help me solve the problem?



    ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
    One last thing. I tried to install the service of the APEX and the listener on a different machine with Oracle 10 g Express Edition. Here too, I could install APEX (according to http://docs.oracle.com/cd/E37097_01/doc/install.42/e35123/otn_install.htm#BABHHIJB), but when installing listening Service, a config went wrong and now when I run the database, OracleXETNSListener does not start.

    C:\oraclexe\app\oracle\product\10.2.0\server\BIN > net start OracleXETNSListener
    OracleXETNSListener service starts.
    The OracleXETNSListener service could not be started.

    A system error has occurred.

    System Error 1067 has occurred.

    Unexpected end of the process.


    C:\oraclexe\app\oracle\product\10.2.0\server\BIN > net start OracleServiceXE
    The OracleServiceXE service is now...
    The OracleServiceXE service has started successfully.

    Lsnrctl status+ gets stuck too:
    C:\Users\hm > lsnrctl status

    LSNRCTL for 32-bit Windows: Version 10.2.0.1.0 - Production on 26 November 2012 15:11
    +: 55 +.

    Copyright (c) 1991, 2005, Oracle.  All rights reserved.

    Connection to (DESCRIPTION = (ADDRESS = (PROTOCOL = IPC) (KEY = EXTPROC_FOR_XE)))
    AMT-12541: TNS:no listener
    AMT-12560: TNS:protocol adapter error
    AMT-00511: no listener
    + 32-bit Windows Error: 2: no such file or directory.
    Connection to (DESCRIPTION = (ADDRESS = (PROTOCOL = TCP) (HOST = dummy
    +) (PORT = 1521))) +.
    + ^ C +
    C:\Users\hm >


    How can I return to the Oracle XE database original settings?

    Published by: user783239 on November 27, 2012 06:47

    Thank you, but I couldn't work, so I thought to nine. On my laptop, I uninstalled the database, restarted the laptop and reinstalled Oracle Database 10 g Express Edition.

    After a new installation of database, I did the following:

    1. check the opens the homepage (http://127.0.0.1:8080/apex) DB.
    >
    Home page of Oracle XE, okay. Given URL is wrong, it should have been http://127.0.0.1:8080. That is, without /apex at the end.
    >
    2 APEX installed with the following command:
    @apexins.sql SYSAUX SYSAUX TEMP is

    Successful installation.

    3. without installing the listener, tried opening http://127.0.0.1:8080 / apex, but this time faces the same problem of blank page. The loading of the page, I see "Application Express Login" in the title bar of the browser, there is a source code when I view the Source, but the same two errors:
    >
    This is because you have not run apxldimg.sql. It is this script which creates and loads the images folder (/ i /)
    >
    Message: "apex" is not defined
    Line: 35
    Char: 1
    Code: 0
    URI: http://127.0.0.1:8080/apex/f? p = 4550:1:22301135410489:

    Message: "apex" is not defined
    Line: 110
    Char: 1
    Code: 0
    URI: http://127.0.0.1:8080/apex/f? p = 4550:1:22301135410489:

    The file is loaded on http://127.0.0.1:8080 / apex is e.htm and here is its code line 34-36 source:

    and 109-11 line is:

    SQL>EXEC DBMS_XDB.SETHTTPPORT(0);
    SQL>COMMIT; -- Important
    
  • Forgotten original password when installing Oracle 10 g XE. What can I do?

    Hi, I have installed Oracle 10 g XE and my labtop two years ago, but I never really used it until now that I need to. The problem is that when I try to open a session asks me the password I originally took in the initial installation of the software, which I do not remember anyway. I was wondering if anyone could advice me in what should I do to begin to use the database? Thank you very much. Any help will be greatly appreciated.

    Hello

    From the Service Panel, you can start the OracleServiceXE service to start the database.

    Then, from a DOS window (connected with the OS user with which that oracle was installed), try this:

    set ORACLE_SID=XE
    sqlplus /nolog
    connect / as sysdba
    alter user sys identified by ;
    

    This way, you will have the new password for SYS.

    You will have more details on the following link:

    http://download.Oracle.com/docs/CD/B25329_01/doc/admin.102/b25107/users_secure.htm#sthref290

    Beware, if you change passwords from APEX, you will need to do some operations on the demand side too.

    Hope this helps.
    Best regards
    Jean Valentine

    Published by: Lubiez John Valentine on February 12, 2011 22:20

  • Problems when installing a driver for my scanner

    Hello!

    I have serious problems when you try to install a driver for my scanner - Epson Perfection V700 - on my desk. It was installed earlier, but after a reinstall of XP Pro (SP3), it seems impossible to install it again. Whenever I get an errormessage: "not able to copy the files. Make sure that the target disk is not dead. »

    I tried to install the driver when I had turned off almost all the programs, in "auto-start" - same problem. I run a scan of the disc and also done a defrag - same problem. I have installed many programs on my desktop, so until after I encountered the problem with the driver for the scanner and it was no problem to install the driver on my laptop (also XP Pro).

    I ' v chatted with the support of Epson in England and they have suggested that the problem was in my PC. Because I'm taking care of family archives, I am more eager to get the scanner working again. Any advice/suggestions how to deal with the situation are so much appreciated.

    Hello

    Good to know that your problem is resolved and thanks for letting know us.

    ·        If the scanner works fine then, why do you want to update the driver?

    You may need to consult the manufacturer of the scanner (Epson) to check if they have released an update of the driver for your scanner. To update the drivers on which are present on the system, follow the steps mentioned in the article below.

    How to manage devices in Windows XP

    http://support.Microsoft.com/kb/283658

    Thanks and regards.

    Thahaseena M
    Microsoft Answers Support Engineer.
    Visit ourMicrosoft answers feedback Forum and let us know what you think.

  • problem when installing itunes

    I downloaded itunes from the apple website, but when I try to install it into my laptop it goes well up to an intermediate procedure where he stops to say 'there is a problem with this windows installer. a program required to install could not be found' what should I do naughty tejas * address email is removed from the privacy *.

    Hello

    1. What is the error message displayed when installing for iTunes fails?

    2 is specific to the installation of the program iTunes the problem?

    3 what was the recent change in hardware or software performed on the computer before the question?

    Follow the steps mentioned in the link below.

    Problem installing iTunes or QuickTime for Windows

    http://support.Apple.com/kb/HT1926

    If you're still having problems, you can contact Apple support.

    I hope this helps.

  • Problems to install Oracle SOA Suite 11 g on Solaris 10 SPARC-64

    I'm trying to install Oracle SOA Suite 11 g on Solaris 10 SPARC 64 but I m having problems.

    I have already installed the JDK for 64-bit 1.6_11 and I use it for the installation of SOA, the statement is:

    . / runInstaller - jreLoc /export/home/adminsoa/Java1.6_11/jdk1.6.0_11

    I am providing the absolute path to the correct JDK (JDK 64-bit).

    But I get the following error:

    bash-3. $ 00. / runInstaller - jreLoc /export/home/adminsoa/Java1.6_11/jdk1.6.0_11
    From Oracle Universal Installer...

    Check if the CPU speed went above 300 MHz. real 1500 MHz
    Check the Temp space: must be greater than 150 MB. Real 5291 MB passed
    Check the swap space: must be greater than 500 MB. Real 39311 MB passed
    Monitor: must be configured to display at least 256 colors. 16777216 real past
    Preparations for the launch of Oracle Universal Installer from/tmp/OraInstall2010-01-26_03-17-44 PM. Please wait... bash-3. $00 Log: /home/oracle/oraInventory/logs/install2010-01-26_03-17-44PM.log
    [ERROR]: Setup has encountered an internal error. Contact Oracle support with details
    [EXCEPTION]:java.lang.reflect.InvocationTargetException

    I saw the newspaper install2010-01-26_03-17 - 44 PM .out and displays the following text:

    Adding/tmp/OraInstall2010-01-26_03-17-44 PM for deletion.
    Add to the classpath:file:/tmp/OraInstall2010-01-26_03-17-44PM/ext/jlib/soawl.jar
    Add to the classpath:file:/tmp/OraInstall2010-01-26_03-17-44PM/ext/jlib/template.jar
    CUSTOM_COPY_RIGHT@Oracle.as.install.soawl.resources.WelcomePage.ScreenRes
    java.lang.UnsatisfiedLinkError: /tmp/OraInstall2010-01-26_03-17-44PM/oui/lib/solaris/liboraInstaller.so: LD.so.1:: java: fatal: /tmp/OraInstall2010-01-26_03-17-44PM/oui/lib/solaris/liboraInstaller.so: evil class ELF: ELFCLASS64 (Possible cause: incompatibility of width for the word architecture)
    in java.lang.ClassLoader$ NativeLibrary.load (Native Method)
    at java.lang.ClassLoader.loadLibrary0(ClassLoader.java:1778)
    at java.lang.ClassLoader.loadLibrary(ClassLoader.java:1674)
    at java.lang.Runtime.load0(Runtime.java:770)
    at java.lang.System.load(System.java:1005)
    at oracle.sysman.oii.oiip.osd.unix.OiipuUnixOps.loadNativeLib(OiipuUnixOps.java:402)
    to oracle.sysman.oii.oiip.osd.unix.OiipuUnixOps. < clinit > (OiipuUnixOps.java:125)
    at oracle.as.install.engine.modules.statistics.util.SysInfo.getAvailableMemory(SysInfo.java:161)
    to oracle.as.install.engine.modules.statistics.element.AvailableMemoryElement. < init > (AvailableMemoryElement.java:39)
    at oracle.as.install.engine.modules.statistics.standard.StandardElementLocator.loadElements(StandardElementLocator.java:63)
    at oracle.as.install.engine.modules.statistics.boot.ProfilerInitializer.initializeProfile(ProfilerInitializer.java:82)
    at oracle.as.install.engine.modules.statistics.Statistics.launchModule(Statistics.java:284)
    at sun.reflect.NativeMethodAccessorImpl.invoke0 (Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:597)
    at oracle.as.install.engine.InstallEngine.launchModule(InstallEngine.java:508)
    at oracle.as.install.engine.InstallEngine.processAndLaunchModules(InstallEngine.java:462)
    at oracle.as.install.engine.InstallEngine.startOperation(InstallEngine.java:415)
    at oracle.sysman.oio.oioc.OiocOneClickInstaller.main(OiocOneClickInstaller.java:446)
    java.lang.reflect.InvocationTargetException
    at sun.reflect.NativeMethodAccessorImpl.invoke0 (Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:597)
    at oracle.as.install.engine.InstallEngine.launchModule(InstallEngine.java:508)
    at oracle.as.install.engine.InstallEngine.processAndLaunchModules(InstallEngine.java:462)
    at oracle.as.install.engine.InstallEngine.startOperation(InstallEngine.java:415)
    at oracle.sysman.oio.oioc.OiocOneClickInstaller.main(OiocOneClickInstaller.java:446)
    Caused by: java.lang.UnsatisfiedLinkError: no oraInstaller in java.library.path
    at java.lang.ClassLoader.loadLibrary(ClassLoader.java:1709)
    at java.lang.Runtime.loadLibrary0(Runtime.java:823)
    at java.lang.System.loadLibrary(System.java:1030)
    at oracle.sysman.oii.oiip.osd.unix.OiipuUnixOps.loadNativeLib(OiipuUnixOps.java:420)
    to oracle.sysman.oii.oiip.osd.unix.OiipuUnixOps. < clinit > (OiipuUnixOps.java:125)
    at oracle.as.install.engine.modules.statistics.util.SysInfo.getAvailableMemory(SysInfo.java:161)
    to oracle.as.install.engine.modules.statistics.element.AvailableMemoryElement. < init > (AvailableMemoryElement.java:39)
    at oracle.as.install.engine.modules.statistics.standard.StandardElementLocator.loadElements(StandardElementLocator.java:63)
    at oracle.as.install.engine.modules.statistics.boot.ProfilerInitializer.initializeProfile(ProfilerInitializer.java:82)
    at oracle.as.install.engine.modules.statistics.Statistics.launchModule(Statistics.java:284)
    ... 8 more
    [ERROR]: Setup has encountered an internal error. Contact Oracle support with details
    [EXCEPTION]:java.lang.reflect.InvocationTargetException


    I think that the error would cause the JDK version with which try to initialize.

    Anyone has an idea on the possible error? Thanks in advance.

    Hi, I advise you to try to use the generic Setup program to: % SOA_INSTALLER_DIR%/Disk1/runInstaller. Because if you use the runInstaller in the %SOA_INSTALLER_DIR%/Disk1/install/solaris it will lead to this problem in some cases.

  • Problem after installing Oracle.

    Hello

    After that I installed Oracle 10.2.1.0 and the patch to releasing 10.2.4.0.
    My installation was successful
    Tried to stop and start DB using (sqlplus "/ as sysdbs ') command on command promp.
    But I get this error.

    E:\oracle\SOT\102\BIN > sqlplus / as sysdba

    SQL More: Release 10.2.0.4.0 - Production on Mon Mar 22 16:43:03 2010 *.

    Copyright (c) 1982, 2007, Oracle. All rights reserved.

    ERROR:
    ORA-12560: TNS:protocol adapter error
    Enter the user name:

    I tried to go back on my receiver is starts in the Services, but I can't find my interlocutor on the list of services. I just har ' OracleSOT102iSQL * more ' on the list of services.
    Any body knows why?
    Thank you

    >
    C:\Documents and Settings\Administrateur > lsnrctl status

    LSNRCTL for 64-bit Windows: Version 10.2.0.1.0 - Production on April 14, 2010 17:04
    : 24

    Copyright (c) 1991, 2005, Oracle. All rights reserved.

    Connection to (ADDRESS = (PROTOCOL = tcp)(HOST=) (PORT = 1521))
    AMT-12541: TNS:no listener
    AMT-12560: TNS:protocol adapter error
    AMT-00511: no listener
    Windows 64-bit error: 61: unknown error
    >

    Please start is and let us know what happens.

    lsnrctl start
    

    Then connect to the Oracle database.

    Kind regards
    Phiri

  • Problem installing Oracle 11 g 2 RAC - rpm packages

    People,

    Hello.
    I was installing RAC Oracle Database 11 g 2 system with 2 Virtual Machines (rac1 and rac2) in 3 VMPlayer.

    When to install the extra rpm package, I need to download and install the following 3 files:

    libaio-devel - 0.3.106
    SYSSTAT - 7.0.2
    unixODBC-devel - 2.2.11

    But I can't find anywhere to download the 3 files above.

    Can any folk tell me where to download the 3 files "libaio-devel - 0.3.106, sysstat - 7.0.2, unixODBC-devel - 2.2.11?


    Thank you.

    Hello

    Mount the DVD media and check the server / directory.

    # cd //Server
    # ls libaio-devel-0.3.106*
    # ls sysstat-7.0.2*
    # ls unixODBC-devel-2.2.11*
    

    I could find in the "Enterprise-R5-U6-Server-x86_64-dvd.iso" of the ISO file.
    I could find also all 3 files in Oracle Enterprise Linux 5.5 x 86 32-bit CD-ROM media #3.
    (from the "Enterprise-R5-U5-Server-i386-disc3.iso" file.)

    And type the rpm command to install.

    # rpm -ihU 
    

    Good luck

Maybe you are looking for