Do people auto start with init?

Hi. I was just wondering whether it is a common practice to auto start an entire stack (e.g. Node Manager, Admin Server(s), Management Server(s)) all via init scripts+chkconfig?
I have been doing this for Oracle Application Server, now requested to do this for WebLogic Server so that someone can bootup/shutdown/restart the OS without care.
What do you guys think?

Hi,
But general common practice is starting nodemanager as background process. Starting AdminServer and Managed Servers is based on customer's requirement.
Thanks & Regards,
Murali.
============

Similar Messages

  • DB and listner  auto start with linux problem

    Dear all :
    i can't set DB auto start with linux
    my db version 10g linux 5
    I followed these steps :
    edit the "/etc/oratab" file setting the restart flag for each instance to 'Y'.
    TSH1:/u01/app/oracle/oracle/product/10.2.0/db_1:Y
    create a file called "/etc/init.d/dbora" as the root user, containing the following.
    #!/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=/u01/app/oracle/oracle/product/10.2.0/db_1
    ORA_OWNER=oracle
    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/lsnrctl start"
    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
    su - $ORA_OWNER -c "$ORA_HOME/bin/lsnrctl stop"
    esac
    chmod 750 /etc/init.d/dbora
    chkconfig --level 345 dbora on
    # ln -s /etc/init.d/dbora /etc/rc.d/rc3.d/K01dbora
    # ln -s /etc/init.d/dbora /etc/rc.d/rc3.d/S99dbora
    # ln -s /etc/init.d/dbora /etc/rc.d/rc5.d/K01dbora
    # ln -s /etc/init.d/dbora /etc/rc.d/rc5.d/S99dbora

    Follow this part of Oracle Doc,
    Automating Shutdown and Startup
    http://download.oracle.com/docs/cd/B19306_01/server.102/b15658/strt_stp.htm#sthref249
    Also run your script manually see if it will run sucessfully.
    /etc/init.d/dbora start
    /etc/init.d/dbora stop

  • Skype 7.2 doesn't auto-start with Windows

    A week or two ago, Skype stopped auto-starting with Windows.  At the same time, I started appearing as offline to my contacts and cannot message any of my contacts.  I've uninstalled/re-installed Skype but it hasn't fixed my issue.  I suspect this coincided with a Windows Update but I can't be 100% sure of that.  I've searched thru Event Viewer but don't find any Skype errors.  Can anyone offer a suggestion on how I can get Skype working properly again?
    Win 7 with all updates
    Skype 7.2
    Thanks in advance, Andre

    Please, run the DirectX diagnostics tool.
    Go to Windows Start and in the Run box type dxdiag.exe and press the OK button. This will start the DirectX diagnostics program. Run this diagnostics and save the results to a file. Please, attach this file to your post. Info on all installed devices should be available in this file.
    Be aware that you will have to zip this file before attaching it here.

  • I plugged IPOD in to sync ( first time in over a year) it auto started with the "Do Not Disconnect", but did not sync.  Now the IPOD is stuck in that mode, won't shut off, won't sync, won't work.  is there a way to reboot it?

    I plugged IPOD in to sync ( first time in over a year) it auto started with the "Do Not Disconnect", but did not sync.  Now the IPOD is stuck in that mode, won't shut off, won't sync, won't work.  is there a way to reboot it?

    It has already been 6 days from your post, my apology for responding so late, but it is my habit to help only the leftovers, which the other contributors missed.
    Toggle the hold switch make sure there is no red showing.
    To reboot an iPod. (Or RESET in Apple iPod jargon)
    Press Menu and Center button for about 10 secs till the Apple logo comes ON , this would not erase any data from your iPod.
    I would advice you to leave the iPod charging for about 4 hours, if it has been discharged for 1 year or more, and also Apple recommends that you charge the iPod at least once a month, to prevent a discharged battery leakage, which may corrrode the circuitry in the iPod.
    Hopefully you don't get the dreaded RED X on the iPod screen.
    Good Luck!

  • Auto Start, with no theme

    Hello Folks,
    I am new here and found the FCP discussion to be very helpful, so.... here I am.
    I have just updated to iLife 06' and have a question. I don't want a theme whatsoever. I want the DVD to be able to start when it is loaded into the DVD player without having to push menu buttons; Although I have completed the first task of dropping the clip into the auto start area, I do not know how to get rid of the theme. Please help.....
    Thank you in advance, as this is probably a novice question to the talent on this discussion board.
    CR

    Thank you for all who replied! My question did get answered, and I also found another method...... DVD Studio Pro Thanks again.
    Oh, by the way.. I do not see the area where I could put that these answers were helpful (they were).
    CR
    CR
    PowerMac G5 Mac OS X (10.4.6)

  • Database auto start with machine on and shutdown with machine shutdown

    i have installed oracle 10g release 2 on linux 5.1. now i want to start my database with machine on and shut down when the machine is shutdown.
    for this i have do the following steps but i does not works.
    Log in as the root user
    vi /etc/oratab
    $ORACLE_SID are not allowed.
    orcl:/u01/app/oracle/product/10.2.0/db_1:Y
    change the directory to /etc/init.d
    Create a file called dbora, and copy the following lines into this file:
    vi dbora
    #! /bin/sh -x
    # Change the value of ORACLE_HOME to specify the correct Oracle home
    # directory for your installation.
    ORACLE_HOME=/u01/app/oracle/product/10.2.0/db_1
    # Change the value of ORACLE to the login name of the
    # oracle owner at your site.
    ORACLE=oracle
    PATH=${PATH}:$ORACLE_HOME/bin
    HOST=`hostname`
    PLATFORM=`uname`
    export ORACLE_HOME PATH
    if [ ! "$2" = "ORA_DB" ] ; then
    if [ "$PLATFORM" = "HP-UX" ] ; then
    remsh $HOST -l $ORACLE -n "$0 $1 ORA_DB"
    exit
    else
    rsh $HOST -l $ORACLE $0 $1 ORA_DB
    exit
    fi
    fi
    case $1 in
    'start')
    if [ "$PLATFORM" = "Linux" ] ; then
    touch /var/lock/subsys/dbora
    fi
    $ORACLE_HOME/bin/dbstart $ORACLE_HOME &
    'stop')
    $ORACLE_HOME/bin/dbshut $ORACLE_HOME &
    echo "usage: $0 {start|stop}"
    exit
    esac
    Change the group of the dbora file to the OSDBA group (typically dba), and set the permissions to 750:
    # chgrp dba dbora
    # chmod 750 dbora
    Create symbolic links to the dbora script in the appropriate run-level script directories as follows.
    # ln -s /etc/init.d/dbora /etc/rc.d/rc0.d/K01dbora
    # ln -s /etc/init.d/dbora /etc/rc.d/rc3.d/S99dbora
    # ln -s /etc/init.d/dbora /etc/rc.d/rc5.d/S99dbora
    after done these changes i restarted my system but the database is not started automatically.....
    please help where i am doing wrong...and correct me..

    Re: Oracle 10g on linux 5.1 issue
    DUPLICATE!

  • Want my DVDs to auto start with the main menu when inserted into a player

    I used idvd to burn an imovie that I made. I have a main menu theme from idvd on the project but when I insert the dvd into a dvd player or computer, the project automatically starts playing without going to the main menu first. How can I make it so it goes to the main menu first, allowing me the chance to click the button I made on the menu to play the project. THANK YOU SOO MUCH FOR ANY HELP!!

    By default, projects created with iDVD will always go to the menu screen first. If it doesn't that usually means you made a change to the iDVD map.
    To check, click on the "Map" button (Three small squares joined by a line at the bottom of the screen).
    Take a look at the far left menu square. If there is anything in this square it will play that square first before going to the menu.
    Click on that left hand square and tap the delete key to remove the auto-play item.
    Hope that helps.

  • MacBook Auto Start with power?

    MacBook Pro is starting up whenever there is any power available to it. It doesn't matter is the AC Adapter is plugged in or not.
    Plug in the power adapter: it turns on.
    Shut down: turns back on
    Shut down with no power adapter: turns back on!
    Shut down with as little battery as I can possibly have: TURNS BACK ON.
    I've looked for the option to turn on after power faliure, I can't find such an option. I've done the Shift-Option-Command and the Option-Command-P-R,  no avail.
    Don't know if this has any relation, but my Bluetooth has disapeared as well. Recently installed a new hardrive, do you think perhaps I accidently disconneceted something?

    Thank you for all who replied! My question did get answered, and I also found another method...... DVD Studio Pro Thanks again.
    Oh, by the way.. I do not see the area where I could put that these answers were helpful (they were).
    CR
    CR
    PowerMac G5 Mac OS X (10.4.6)

  • How to make the listener auto start with OS?

    Using: 10gR2 (10.2.0.3) RAC +ASM 64bit  &  11g Gateway (11.1.0.7) 64bit
    2 Node Cluster
    Platform: SUSE Linux Enterprise Server 8 (x86_64) (kernel: 2.6.5-7.276-smp)
    I have a two node cluster that uses a 10gR2 DB home. I have setup a 11g Gateway home to allow the 10gR2 Home to connect to an AS/400 system.
    The Heterogeneous connection works perfectly.
    The problem is that when I reboot the nodes the 11g Gateway listener doesn't startup with the OS.
    Question: How can I setup my OS to have the listener startup at system boot?
    Currently, I have to manually set ORACLE_SID, change to 11g Gateway home and start the listener.
    Thanks,
    (BLL)

    user10860953 wrote:
    My initial research (google) the subject of "oracle 10g adding listener clusterware" finds plenty of hits for adding instances to the cluster.
    I was less successful with finding information on adding a listener as a node app.
    Any suggestions on a reference article?
    The way to add applications is documented in the Admin Guide.
    Would not the netca (run under 11g) achieve the same?

  • 9iAS 9.0.3 / Webcache / Auto-Start does not start!

    Hello!
    I've installed 9iAS 9.0.3 (OHS, J2EE, Webcache) on SUSE-Linux.
    I've changed the configuration to use auto-start with the Webcache-Admin-Website and restarted the webcache.
    But using webcachectl status shows, that the auto-restart monitor is not running.
    "Web Cache admin server is not running.
    Web Cache auto-restart monitor is not running.
    Web Cache cache server is running as process 8725."
    The auto-restart "yes" configuration exists in the webcache.xml - config - file.
    So, why is the monitor not running?
    I hope, someone can help!
    best regards
    Harald Gruenn

    Hi Harold,
    There's two things which I'd like you to check:
    1. What is the contents of the WATCHDOG element in $ORACLE_HOME/webcache/webcache.xml file? It should look something like:
    <WATCHDOG ENABLE="YES" PINGINTERVAL="15" PINGTIMEOUT="30" PINGURL="/"
    PINGRETRY="3"/>
    2. Are there any messages related to "Auto-Restart" in the event log (default location is $ORACLE_HOME/webcache/logs/event_log)? For example:
    27/Dec/2002:15:20:54 +0000 -- Error: Auto-restart failed to start. /opt/oracle/webcache/bin/webcachemon not found.
    or
    27/Dec/2002:15:28:07 +0000 -- Information: Auto-Restart: WXE-00800 Auto-restart started successfully
    patrick

  • Have just migrated from the world of PC's. and I had my set up so that when I typed a new sentence it started with a capital with out me pressing shift. also, i could set up words to self fill like ur would auto correct to your. can this be done with mac

    Have just migrated from the world of PC's. and I had my mail text typing set up so that when I started  a new sentence after a full stop  it started with a capital with out me pressing shift. also, i could set up words to self fill like ur would auto correct to your. can this be done with mac

    I don't know about the first letter cap but the spelling is simple. Edit - Spelling and Grammar - Select While Typing and Correct Spelling Automatically.
    I'd also STRONGLY recommend that you bookmark and use:
    Mac 101
    Switch 101
    Find Out How Video tutorials
    List of Useful URLs for switchers
    Welcome to the Light side.

  • Problem with auto start-stop script

    Hi to All,
    Logged as root. I have create in /etc/rc.d/init.d this file and saved as dbora (Oracle Linux 5.4):
    +#!/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=/u01/app/oracle/product/10.2.0/db_1
    ORA_OWNER=oracle
    +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 $ORA_HOME"
    touch /var/lock/subsys/dbora
    +;;+
    +'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 $ORA_HOME"
    rm -f /var/lock/subsys/dbora
    +;;+
    esac
    After creation I have execute:
    *#chmod 750 /etc/rc.d/init.d/dbora*
    *#chkconfig --add /etc/rc.d/init.d/dbora*
    The last command return this message:
    +"service dbora does not support chkconfig"+.
    Can You help me? Have You an idea ?
    Thank You and best regards
    Gaetano

    sb92075 wrote:
    Oracle RDBMS needs to be started by process running at OS level as owner of Oracle software; typically OS user "oracle" & not as ROOT!Ok,
    But I have founded this script at [http://www.oracle-base.com/articles/linux/AutomatingDatabaseStartupAndShutdownOnLinux.php].
    The article report:
    Article
    When using RAC or ASM under Oracle 10g Release 2 or above, the Oracle Clusterware automatically starts and stops the Oracle database instances, so the following procedures are not necessary. For all other cases, you can use the methods described below.I must suppose, that the author has written an incorrect article?
    Best Regards
    Gaetano

  • I'm writing a report and need a title page, so I want the auto-numbering to start with the second page. So the title page is zero and the next page will read "1"

    I'm writing a report and need a title page, so I want the auto-numbering to start with the second page. So the title page is zero and the next page will read "1" How do I do this?

    Hi H4S,
    Click at the end of the Tile page.
    Menu > Insert > Section Break.
    Click in the second Section. Insert a page number in the Header or Footer.
    Inspector > Layout > Section:
    Regards,
    Ian.

  • VM auto start in a single server pool with only local hard disk repository

    I searched the forum but can't find anything similar.
    Basically, part of the dev environment I have is just starting to use Oracle VM to have a nice centralized place to manage the VMs and managed server.
    Those environment doesn't have shared storage and all VMs are stored under local hard disk. (as just having several VMs to share the resource in a single server)
    So there is only one server in the server pool.
    What should be the best way to set up VM auto-start when this single server is rebooting or start from boot up?
    Should I just set up a symlink of /OVS/running_pool/vm1/vm.cfg to /etc/xen/auto/vm1.cfg ?
    (p.s. I can't set up HA mode in the single server pool since this is ocfs2.local, it will fail)
    Thx in advance.

    After some testing, I'm now using a traditional way (for single server with local repository)
    auto start VM in dom0 during server starts up:
    ln -s /OVS/running_pool/vmname/vm.cfg /etc/xen/auto/vmname
    auto shutdown VM in dom0 during server shut down:
    - edit /etc/sysconfig/xendomains
    change the line:
    XENDOMAINS_SAVE=/var/lib/xen/save
    to
    XENDOMAINS_SAVE=
    I also change XENDOMAINS_RESTORE from true to false
    Now when I need to reboot/power down the server via OVM, I can just go ahead and do it without migrating..and xendomains will shutdown all my VMs and start them up next time.

  • I have an iPhone 5 and if I make a call it goes blank hangs up on the people and then proceeds to facetime them automatically.  Does anyone know how to fix this?  It only started with ios7

    I have an iPhone 5 and if I make a call it goes blank hangs up on the people and then proceeds to facetime them automatically.  Does anyone know how to fix this?  It only started with ios7

    Judging by all the posts on the forum, there seems to be an issue at Apple's end, although they have made no announcement on their status page. Unfortunately, we may have to wait until Apple is more forthcoming with information.
    http://www.apple.com/support/systemstatus/

Maybe you are looking for