Problem to start Oracle 10 G Enterprise Linux

Hi guys! Please I need help.
Recentlly I installed Oracle 10 g on Linux Enterprise 5.4, the finished good, instalation I loged in isqlplusselect a few example of table, but then when I reboot to start computer oracle can't, I changed/var/opt/oracle/oratab the opsion 'Y' in oracle sid: oracle home.
When I manually start isqlplus and try to connect, I get this error "ERROR ORA 12541: TNS: no listner, I tried to start id form/oracle/bin, but I gess, it's not working."
Can someone help me with this, I mean how can I start to oracle, and what I need to chang for automatic start
Thank you

OK, here's what you need to do to 10.2.0.1 (I guess that's what you mean by 10 gr 2):

1. open the dbstart script located in /home/oracle/product/10.2.0/db_1/bin

2. search for all occurrences of the string "/ ade/vikrkuma_new/oracle" and replace it with "$ORACLE_HOME". This is a known bug fix.

3. edit/etc/oratab and set option to Y for the database that you want to start automatically.

4. create a file /etc/init.d/dbora as root with the following content (defining the correct values for ORA_HOME and ORA_OWNER):

#!/bin/sh
# chkconfig: 345 99 10
# description: Oracle auto start-stop script.
#
# Set ORA_HOME to be equivalent to the $ORACLE_HOME
# from which you wish to execute dbstart and dbshut;
#
# Set ORA_OWNER to the user id of the owner of the
# Oracle database in ORA_HOME.

ORA_HOME=+path_to_your_oracle_installation+
ORA_OWNER=+your_database_sid+

if [ ! -f $ORA_HOME/bin/dbstart ]
then
echo "Oracle startup: cannot start"
exit
fi

case "$1" in
'start')
# Start the Oracle databases:
# The following command assumes that the oracle login
# will not prompt the user for any values
su - $ORA_OWNER -c $ORA_HOME/bin/dbstart
;;
'stop')
# Stop the Oracle databases:
# The following command assumes that the oracle login
# will not prompt the user for any values
su - $ORA_OWNER -c $ORA_HOME/bin/dbshut
;;
esac

5 set permissions for the new file (replace "dba" with defined during the installation of Oracle dba OS group):

# chgrp s/n /etc/init.d/dbora
# chmod 750 /etc/init.d/dbora

6. run:

# chkconfig--level 345 released on

Restart and test if the DB starts correctly.

I hope this helps.

And by the way, I'm not Russian, Bulgarian. But you were close enough ;)

Tags: Database

Similar Questions

  • Paths multiple problem with PowerVault MD3200i + Oracle Enterprise Linux (5,7)

    Hello

    I'm trying to configure MPIO on a host (running Oracle Enterprise Linux Server 5.7) connected to an Powervault MD3200i. I have a few unexpected problems with/dev/dm-0 missing after reboot.

    I configured 3 virtual disks (RAID 1) with MPIO. 3 devices have been created (/ dev/dm-0, / dev/dm-1 and/dev/dm-2).  If I mount them manually, they work very well, so I've added to the fstab. After a reboot, I checked that/dev/dm-1 and/dev/dm-2 have been automatically but is not/dev/dm-0. In fact, the/dev/dm-0 has disappeared from the directory of the device (!)

    If I rinse 'multipath f' and ' multipath - v2 "the device gets recreated, but disappears on the"
    next reboot again. How can I resolve this behavior? Can anyone help?

    Thanks in advance.

    See you soon

    I thought about it... the problem is that I had the wrong specified dev in fstab.

    Should I use the devices in/dev/map /... it worked immediately.

  • memory usage of Oracle on Oracle Enterprise Linux 5.2

    Hello

    I installed a copy of Oracle 9.2.0.4 db server software (Enterprise edition) on Oracle Enterprise linux 5.2 (32 bit)
    After installing the software, I created two instances db with DBCA.

    Now the question is that, after I start the instance db, after awhile, I see more than 95% of the 8 GB of memory on this server in use.
    The size of sga max of these instances collectively is not more than 800 MB. In fact, even after closing one of the instances of memory
    consumption do not go down significantly because the instance is not assigned too much memory in the first place.

    With the help of TOP does not give a clear picture at all. If I keep the db instance down after restarting the server, consumption of memory is quite normal - less than 500 MB for all internal servers OS treats. SHMMAX is a default value of 4 GB and swap memory occupies about 16 GB. Another point that I want to stress is that I don't see most of the 16 GB memory swap are allocated. Nearly 90% of swap remains free.

    I was wondering how I can solve this problem on a new server.

    Hi usr1298

    I've installed a lot of servers Oracle Linux 2.1, 3,..., 5, and in each of them, I noted that the same behavior. At first when I saw this behavior, I thought something was wrong, but it's the behavior of memory on Linux when Oracle works. I think that default Oracle software reserves all this memory (90%) and that it uses on request but really the software does not use all the memory in a real way in the proceeding does not heavy operations. As I wrote, do not worry about this and worry on this subject when the swap space began to be used more than 20% despite the SGA_MAX_SIZE and the sum of the other parameters of memory does not receive nearly the total amount of RAM.

    Joel Perez
    DBA Oracle
    Members AS

  • I want to improve my server database Oracle 10 g 10.2.0.4, node 2 CARS on OS: release of Red Hat Enterprise Linux Server 5.3 (Tikanga)-version 2.6.18 kernel - 2.6.18 - 402.el5 to 128.el5.  This core does support my current 10.2.0.4

    I want to improve my server database Oracle 10 g 10.2.0.4, node 2 CARS on OS: release of Red Hat Enterprise Linux Server 5.3 (Tikanga)-version 2.6.18 kernel - 2.6.18 - 402.el5 to 128.el5.  This core does support my current Version of 10.2.0.4 or do I need to apply patches on the binary database after upgrading the kernel?

    Thank you

    Hameed

    Hello

    It should work without problem.

    According to the following document, you should have the kernel version 2.6.18 - 8 or higher.

    Oracle Database (RDBMS) under Unix AIX, HP - UX, Linux, Mac OS X, Solaris, Tru64 Unix operating system Installation and Configuration requirements checklist (8.0.5 to 11.2) (Doc ID 169706.1)

    Also check this document:

    How to check that you have an Oracle support for the kernel (Doc ID 225710.1)

    Kind regards

    Bashar

  • Oracle 10g on Oracle Enterprise Linux 6 using VMWare

    I am trying to install Oracle 10 g on a Linux server. The reason is that the system, which I am working 10g and want a test environment on my computer.
    I installed the latest version of Oracle Enterprise Linux 6 on VMWare Player.
    So far so good.
    Now I want to install 10g on the system and have read both Expert Oracle 10 g database Administration and the fast for 10g Release 2 Setup Guide (10.2) for Linux x 86
    I seems to be now stuck in the situation to get all loaded packages that are recommended. Some of the packages are not on the cd, so I'm starting to wonder if it is a valid version for installation.
    Because the version is releast Red Hat Enterprise Linux Server 6.0, I had that with
    # cat/etc/redhat-release

    So 10g is not supported on this version?
    If so do I download the previous version of Linux?
    If so what version and if you can direct me in the sense I would be really happy.

    Currently 6 Linux is not certified to any version of database Oracle.

    Operating system for 10 g 2 (which is what I assume you are using) is listed in the Release Notes - http://download.oracle.com/docs/cd/B19306_01/relnotes.102/b15659/toc.htm#CHDFHIEA

    Srini

  • Failed installation of Oracle on Oracle Enterprise Linux.

    Hi all
    I installed Enterprise Linux version 5 Update 2 for x 86 (32 bit) on my Vmware Virtaul oracle machine electronically supplied. When I try to install Oracle Database 10 g Release 2 (10.2.0.1.0) for Linux x 86, after you run the runInstaller, I get the following error.

    [data oracle@vmware] $. / runInstaller
    From Oracle Universal Installer...

    Checking Installer requirements...

    Checking the operating system version: must be redhat-3, 9-SuSE, redhat-4, UnitedLinux - 1.0, asianux-1 or asianux-2
    Failure of < < < <

    Note: Oracle E-Delivery provided 5 CD downlaod Enterprise Linux version 5 Update 2 for x 86 (32 bit). But the LINUX installation finished successfully with 3 CD only. I don't have no idea for what purpose the CD remains 4 and 5. do I need to install separately from 4 and 5 from the CD. Is that what the problem of the failed installation orcle DB or is there a proprietary database that I need to download for Enterprise Linux version 5 Update 2 for x 86 (32 bit).

    Any help in this matter is highly appreciated.
    Thank you very much.

    How to connect as the user oracle, directly to the OS login or su - root ed?

    If the former:

    $ export DISPLAY =: 0.0
    xclock $

    If the latter (as root):

    # xhost +.
    # su - oracle
    $ export DISPLAY =: 0.0
    xclock $

    Do not go further if xclock command does not show you the analog clock.

  • VMware p2v oracle enterprise linux

    Hi people,

    I need to perform a p2v of oracle enterprise Linux server.

    Can someone please tell me the correct procedure (if no document is available, that would be great ), thanks for the pointers.

    This was better than I expected, I downloaded converter 5.5.1 and it went smoothly, no reconfiguration needed, it installs GRUB, patch mount point entries in fstab and re-create the virtual disk original (all automatically).

    Bravo from VMWare.

  • error starting Oracle Enterprise manager

    I have oracle database 11 g 2 on windows 7, when I want to launch the Enterprise Manager, the following error: Microsoft Windows [Version 6.1.7601] Copyright (c) 2009 Microsoft Corporation. All rights reserved.

      C:\Users\SHOJAIE>emctl start dbconsole Oracle Enterprise Manager 11g Database Control Release 11.2.0.1.0 Copyright (c) 1996, 2010 Oracle Corporation.  All rights reserved. https://SHOJAIE-PC:1158/em/console/aboutApplication Starting Oracle Enterprise Manager 11g Database Control ...System error 5 has occurred.  Access is denied.

    check if the services oracle is up and running, also export ORACLE_SID, ORACLE_HOME and ORACLE_BASE and try again.

    new error?

  • Oracle Enterprise Linux: Required Package for 11.2.0.3 CARS

    I downloaded Oracle Enterprise Linux 64 Bit in November 2012 (Oracle Linux Release 6, update 3)

    Once I have installed OEL, how can I check if all needed packages required for installation of grid Infrastructure 11.2.0.3 smooth is installed?

    Hello

    the new name of "oracle-validated" under OL6 is oracle-RDBMS-server-11 GR 2-preinstall:

    https://blogs.Oracle.com/Linux/entry/oracle_rdbms_server_11gr2_pre

    Concerning
    Sebastian

  • Can I use file of udev rules for RAC on Oracle Enterprise Linux 6 11.2.0.3?

    Version of the grid: 11.2.0.3
    Platfomrm: The last Oracle Enterprise Linux 6 (Unbreakable Enterprise Kernel)


    Yes guys Oracle sales have convinced our Manager to go OEL of AIX.
    We plan to install RAC on Oracle Enterprise Linux 6 (UEK) 11.2.0.3.

    I read this thread on the asmlib and udev rules file.
    List of rules for CAR 10.2 udev

    As a benefit to ASMLib, periera Levi said (quotes)
    '+ A good async IO interface to the database, all the I/o interface is based on a model of performance + ASYNC'

    Oracle is not out for 6 OEL or RHEL 6 AsmLib. I think that they will not release asmlib more.

    So, we will use only the udev rules file. Without ASMLib, we will have an ASYNCHRONOUS i/o or other storage related issues?

    Someone at - it successfully installed 11.2.0.3 RAC OEL 6 with udev rules file?

    I use +/etc/udev/rules.d/40-multipath.rules+ udev file to configure the permissions of device of multiple devices on path to e/s for use by o/s user grid.

    It is as follows:

    # modded for setting mpath device permissions
    
    SUBSYSTEM!="block", GOTO="end_mpath"
    
    KERNEL!="dm-[0-9]*", GOTO="end_mpath"
    
    PROGRAM!="/sbin/mpath_wait %M %m", GOTO="end_mpath"
    
    ACTION=="add", RUN+="/sbin/dmsetup ls --target multipath --exec '/sbin/kpartx -a -p p' -j %M -m %m"
    
    # goto labels added
    PROGRAM=="/sbin/dmsetup ls --target multipath --exec /bin/basename -j %M -m %m", RESULT=="?*", NAME="%k", SYMLINK="mpath/%c", GOTO="check_cluster_devs"
    PROGRAM!="/bin/bash -c '/sbin/dmsetup info -c --noheadings -j %M -m %m | /bin/grep -q .*:.*:.*:.*:.*:.*:.*:part[0-9]*-mpath-'", GOTO="check_cluster_devs"
    PROGRAM=="/sbin/dmsetup ls --target linear --exec /bin/basename -j %M -m %m", NAME="%k", RESULT=="?*", SYMLINK="mpath/%c", GOTO="check_cluster_devs"
    
    GOTO="end_mpath"
    
    # set device permissions for Grid Infrastructure
    LABEL="check_cluster_devs"
    RESULT=="*", GROUP="oinstall", MODE="660"
    RESULT=="*", OWNER="grid", GROUP="oinstall", MODE="660"
    OPTIONS="last_rule"
    
    LABEL="end_mpath"
    
    # eof
    

    I understand that it is no longer necessary that can be configured in +/etc/multipath.conf+ as follows:

    ..
    multipaths {
        multipath {
            wwid  SSCST_BIOscst1_sdb_757d30d0
            alias scst1_sdb
            mode 0660
            uid oinstall
            gid grid
          }
    .. etc.
    }
    

    However, has never work properly myself--must do something wrong that I saw a few sources Internet showing it works.

    As far as I KNOW, it is also with OL6 (as it is with OL5 and earlier versions), not a question of AsmLib or udev/MPIO. Udev is a Mapper devices used by the kernel. The decision is whether to add another layer called AsmLib. Personally, I have yet to see any convincing evidence that why should I increase the complexity of the kernel driver stack, adding AsmLib. We also had a few serious incompatibility with AsmLib issues in the past (where he with, caused compatible I/O corruption at the logical level).

    If you look at the clusters in the www.top500.org list, many of them have shared storage accessible via udev/multichemin Pentabytes and nothing else. MPIO has its roots as a driver of kernel for these groups. One of the reasons why we stopped years ago to use EMC Powerpath for our CARS that are wired to EMC San to shared storage.

  • How to start Oracle Linux Builder

    Hi all

    Can someone please by telling how to start Oracle Linux Builder?

    Thanks and best regards to all

    Hello

    There should be a rwbuilder.sh script
    in ORACLE_HOME/bin for 10.1.2.
    in ORACLE_INSTANCE/config/reports/bin for 11g

    Of course, you must have a "X display server" facing up and running and the DISPLAY variable must be on this 'X display server.

    Example:

    Export DISPLAY = 123.456.789.12:0
    $ORACLE_HOME/bin/rwbuilder.sh

    Concerning

  • Installing Oracle 11g R2 on Oracle Enterprise Linux 5.1

    Hello
    May I know if Oracle 11 g R2 can be installed on OEL5.1, if yes, oracle is certified or not.

    Concerning
    Bobby

    Edited by: user12119634 (bobs) 30 Sep, 2010 22:07

    Hi user;

    Its certified

    Linux x 86 platform
    Platform Version Oracle Enterprise Linux 5/Oracle VM
    Product version 11 GR 2
    Certified certification status

    Certified on Oracle Enterprise Linux 5 Update 2 or higher
    See Oracle Database Installation Guide 11g Release 2 (11.2) for Linux for the minimum requirements of the operating system.

    Respect of
    HELIOS

  • Oracle enterprise linux download

    Hi pl tell me where I can download oracle enterprise linux-also oracle for linux

    Hello

    Thanks, but I tried E delivery of oracle previously.
    I am able to check notify his "you will receive mail..." »
    despiting waiting for two days, I have received no acknowledgement of delivery e oracle.

    Your credentials have been selected and sent to download e-Delivery Web site software. If you get an e-mail within 2-3 days after the date of the registration, you can contact "Oracle E-delivery of Customer Service" by email ([email protected]).

    Kind regards
    Hussein

  • Application specialist Oracle Enterprise Linux - 1z0-402

    I saw [http://education.oracle.com/pls/web_prod-plq-dad/db_pages.getpage?page_id=351] and [http://education.oracle.com/pls/web_prod-plq-dad/db_pages.getpage?page_id=144] I think I notice a change.

    After having passed 1z0-402 (just now) to get this (Oracle Enterprise Linux application specialist) certification?


    Or certification is available to those within the Oracle partner network?


    Page: [http://education.oracle.com/pls/web_prod-plq-dad/db_pages.getpage?page_id=146] is not clarified this.


    Some certifications and existing reviews seem to be spring upward with this logo attached, clarification would be useful.



    I confess that I feel the pass mark on this review associated with 57% is too low to justify the title of the certification associated without the title of devaluation. I wouldn't think of someone who passed this exam with 58% being sent to me as a specialist of Oracle partner Oracle Enterprise Linux network implementation. Probably a pass mark of 65 to 70% would be reasonable, and I would plump for 67%.

    Published by: bigdelboy on November 29, 2009 06:37
    -A bit of history is on {message identifier: = 3728606}
    -In addition the long awaited ISBN: 978-0071615440 is now scheduled for February 5, 2010. The availability of this book would be the success rate of the exam 1z0-402 too low?

    If you took the review 402 previously, you should automatically receive implementation specialist Oracle Enterprise Linux certification. This certification is available for all candidates and not OPN members only. If you do not receive this certificate within 4 to 6 weeks, please contact [email protected] customer service and they will help with the reception of this certificate.

    With regard to the test score. Results of the review reflect the level of difficulty of the examination. More scrutiny is difficult, more passing grade. This is a very simplified explanation for everything that will determine a test score. There are a lot of mechanics that go into determining the points of overtaking, but a decisive factor is the level of difficulty of the examination.

    Kind regards
    Brandye Barrington
    Certification Forum Moderator
    Manager certification program

  • 11.5.10 oracle Apps Enterprise Linux version 5 installation

    Hi all


    Please let me know if one makes the installation of the application Oracle Enterprise Linux version 5 version 11.5.10.


    Thank you...


    BestRegards,
    Vincent.

    Vincent,

    Oracle Applications 11i is certified with OEL5. Please refer to these documents for more details.

    Note: 294932,1 - recommendations for install of Oracle 11i Applications
    Note: 316806.1 - Oracle Applications Installation update Notes, Release 11i (11.5.10.2)
    [Oracle Applications installation guide: quick help install | http://download-uk.oracle.com/docs/cd/B25516_14/current/acrobat/r115102ins.pdf]

    Kind regards
    Hussein

Maybe you are looking for

  • HP 15-BA051-NM: Ram memory upgrade

    Hello! I was wondering if I can upgrade the RAM in my laptop and if I can put an SSD inside as well? As far as I was able to research, I should be able to put the memory of 8 GB of Ram, forward your reply :))

  • Questions of WLAN with Satellite T130, Win 7 64 bit

    Tried to reinstall all drivers, pressing FN + F8. The light itself. The only thing that works is if I plug a network cable into my laptop, but Wireless does not at all. WTF? It is really annoying since I use everyday in my laptop for school. Help ple

  • I have a missing file

    I have a missing file and it won't let me set up a printer

  • Battery not properly charging (full)

    HelloI just bought a new smartphone XPeria Z2, which I'm really excited. That the battery is down to 5%, I put the phone on my magnetic charger that came in the package of the Z2.The morning (after 6 hours), the battery was only 66% and does not char

  • Note to the other App

    Is there a way to link (http or other) that is clickable in Notepad (or email) that would open another application on the BB and pass information to him?