service Oracle script does not...

a newbie question...
I installed oracle 11g R2 on Suse 11 and I created /etc/init.d/oracle script:
ORA_HOME=/opt/oracle/product/11.2.0/dbhome
ORA_OWNER=oracle

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

case "$1" in
        'start')
        #start oracle database
        su - $ORA_OWNER -c "$ORA_HOME/bin/lsnrctl LISTENER11 start"
        su - $ORA_OWNER -c $ORA_HOME/bin/dbstart
        ;;
        'stop')
        # Stop the Oracle databases:
        su - $ORA_OWNER -c $ORA_HOME/bin/dbshut
        su - $ORA_OWNER -c "$ORA_HOME/bin/lsnrctl LISTENER11 stop"
        ;;
        'Required-Stop')
        #aaa
        ;;
esac
also, I changed the permission chmod 750 on this
When I type chkconfig--add oracle, I received a message:
insserv: script jexec is broken: incomplete LSB comment.
insserv: missing `Required-Stop:'  entry: please add even if empty.
insserv: script jexec is broken: incomplete LSB comment.
insserv: missing `Required-Stop:'  entry: please add even if empty.
insserv: script jexec is broken: incomplete LSB comment.
insserv: missing `Required-Stop:'  entry: please add even if empty.
insserv: script jexec is broken: incomplete LSB comment.
insserv: missing `Required-Stop:'  entry: please add even if empty.
insserv: warning: script 'S12oracle' missing LSB tags and overrides
insserv: script jexec is broken: incomplete LSB comment.
insserv: missing `Required-Stop:'  entry: please add even if empty.
insserv: script jexec is broken: incomplete LSB comment.
insserv: missing `Required-Stop:'  entry: please add even if empty.
insserv: script jexec is broken: incomplete LSB comment.
insserv: missing `Required-Stop:'  entry: please add even if empty.
insserv: script jexec is broken: incomplete LSB comment.
insserv: missing `Required-Stop:'  entry: please add even if empty.
insserv: script jexec is broken: incomplete LSB comment.
insserv: missing `Required-Stop:'  entry: please add even if empty.
insserv: warning: script 'oracle' missing LSB tags and overrides
insserv: script oracle: service oracle already provided!
insserv: script jexec is broken: incomplete LSB comment.
insserv: missing `Required-Stop:'  entry: please add even if empty.
insserv: warning: script 'catalina.sh' missing LSB tags and overrides
insserv: Default-Start undefined, assuming default start runlevel(s) for script `catalina.sh'
insserv: warning: script 'setclasspath.sh' missing LSB tags and overrides
insserv: Default-Start undefined, assuming default start runlevel(s) for script `setclasspath.sh'
insserv: warning: script 'tomcat' missing LSB tags and overrides
insserv: Default-Start undefined, assuming default start runlevel(s) for script `tomcat'
insserv: exiting now!
/sbin/insserv failed, exit code 1
oracle                    0:off  1:off  2:off  3:on   4:off  5:off  6:off
What did I miss?

Salvation;

Please close this thread as answered and update your other post which is available at:
service Oracle script does not...

Respect of
HELIOS

Tags: Database

Similar Questions

  • Force the print to stop/restart spooler service when it does not

    Our office has a HP plotter, where the driver (note that we have the latest version, directly from the HP site) seems to cause the print spooler service becomes out of order sometimes.  In turn of the programs (including AutoCAD and Outlook) to lock, as well as windows, as the dialog box, which causes devices and printers.

    If I restart the 'Services' print spooler service in computer management, it goes back to work at least some time - if at least I can work around the problem.  It is important to note however, that even by using this method, it throws a dialog box error saying that the service failed.  But since this is a question with all facilities of this liner installed with Vista, I need to have a method easier to use of the service is restarted.

    I wrote a file .bat base with a net stop spooler command followed by a net start spooler command, but the problem is that, unlike with computer management, net stop does not seem to force the service to shut down if it does not, and I can't find a way to force the stop command.

    Is there a tool more powerful/switch available that I could script so that users can easily stop and restart the spooler service when it does not?

    Thank you

    Type sc /?

    --
    ..
    --
    "mgarrison" wrote in message news: d3d768a8-126-b-4246-a4d8-ca6d8f4db6a7...
    > Our Office has a HP plotter, which the driver (note that we later
    (> version, directly from the HP site) seems to cause the print spooler
    > service becomes out of order sometimes. Which causes in turn of programs
    > (including AutoCAD and Outlook) to put him away, windows as the
    dialogue of the RHS.
    >
    > If I restart the spooler service for printing of 'Services' in computer science
    > Management, she goes back to work for at least some time - if at least I have
    > can work around the problem. It is important to note however, that even
    > by using this method, it throws an error dialog box saying that the service
    > did not. But since this is a problem with our Vista
    > facilities having this installed plotter, I need to have a more
    > user-friendly method of restarting the service.
    >
    > I wrote a .bat file to base with a net stop command spooler followed by a
    > net start spooler command, but the problem is that, unlike with a computer
    > Management, net stop does not seem to force the service stops if it is not
    > answer and I cannot find a way to force the stop command.
    >
    > Is there a tool more powerful/switch available that I could then script
    > users can easily stop and restart the spooler service when it is not
    > sensitive?
    >
    > Thank you

  • RMAN script does not work as a cron job, but works when explicitly executed

    Oracle 10 g 2 10.2.0.1, Oracle Enterprise Linux 4 U7.

    I've added a task to crontab of the oracle user who looks like the following:
    #ORACLE_HOME,ORACLE_SID and PATH are set in the user's profie
    TAG=`date|awk '{print $1"_"$2"_"$3}'| tr [:lower:] [:upper:]`
    
    echo "backup started on`date` "> /home/oracle/rman.log
    
    rman target / LOG='/home/oracle/rman_run.log' << EOF
    
    run{
    
    sql 'aler system switch logfile';
    backup full database tag='$TAG' include current controlfile;
    delete noprompt obsolete;
    
    }
    exit;
    EOF
    
    echo "rman finished, returned $? " >> /home/oracle/rman.log
    echo "Backup ended on `date` " >> /home/oracle/rman.log
    the tracks work as expected but the rman command never works the inside of cron, it always returns code 1, but if I call the script itself from the command line
    It works smoothly and the backup is performed.

    what I am doing wrong?

    what I am doing wrong?

    no no no ORACLE_HOME and ORACLE_SID is defined in script
    The script does not source in the script of environmental requirements

    env | Tri o /tmp/capture.env

    above indicates how deficient the script environment cron is really

  • I mistakenly checked the box "don't show me this message again" on the Script does not have attention... How can I bring back?

    Hi and thanks for reading my question,

    I recently got a pop up box "warning: the Script does not" Firefox v38.0 and checked by mistake the box (paraphrase) "don't show me this message again."

    How can I report these warnings? I saw something in the tools-> Options area... have I missed?

    Thank you!

    You can check these prefs on the topic: config page and if either appears "BOLD" (user set) (bold) then right click in the pref and click Reset.

    You can open the topic: config page via the address bar.
    You can accept the warning and click on "I'll be careful" to continue.

  • Thunderbird stops for one minute with the symbol of the waiting and then returns an error message on a script does not? CAUSED: By McAfee

    Thunderbird stops especially when you write a message, displays the circle waiting and finally back with a message on a script does not properly. The choices are stop script or continue, the choice is obviously stop. It's embarrassing, I have set up with the same problem with XP on Thunrderbird and on Firefox and supposed to with Win 8.1 this would go, I was wrong. It is a standard installation of you bird, have not had the problem again with F'fox.

    Thanks for the info, I intend to replace McAfee but looks, as norton may have the same problem or a similar problem and is probably what is causing issues with XP. E machine XP will disappear but will have to solve on the new machine.
    Once again thanks for the info.

  • script does not work in firefox, but in IE, chrome, and safari

    I have a landing page with a script of web form, www.wholewoman.com/newpages/landing/helpforcystocele.html. the script does not appear in firefox. In addition, any of our videos (served from kaltura (CDN) show up in firefox.) nor is the registration of scripts for our drupal forum. the good news is that there are a lot of firefox users worldwide. the bad news is that none of them can opt in my list, watch my videos or register for my forum. Help!

    With a .html page, it is impossible to include the HTTP headers in the page. It should be in a file external to the page setup (unless you have a very unusual configuration on your server).

    On an Apache Server, the headers are sometimes defined in a file .htaccess at the root of your site. If you view the site in an FTP program or extension, make sure that hidden files are displayed.

  • Tiara startup script does not work when running file associated with

    Hello

    I have a startup script that works correctly with tiara itself, however when I open a file associated with tiara (tdms files) the startup script does not work.  Is it possible to ensure that the script runs without worrying?  Thanks for the help!

    Bala

    Hi Bala,

    Depending on your use case, I suggest you call the next VI, which comes with LabVIEW, after your purchase VI is the creation of the data file.  Just pass the data file path in the upper part of entry and your path to the VBScript file in less than entry.

    "C:\Program Files (x 86) \National Instruments\LabVIEW 2013\vi.lib\ExportToExcel\DIAdem report Assistant Start CSC.vi '.

    Brad Turpin

    Tiara Product Support Engineer

    National Instruments

  • information store service Exchange starts does not automatically

    information store service Exchange starts does not automatically

    Post in the Forums of Exchange Server:
    http://social.technet.Microsoft.com/forums/Exchange/en-us/home?category=exchangeserve

  • service pack 3 does not load because of kbdhid.sys in use

    service pack 3 does not due to kbdhid.sys in use, I was updating after a repair windows, service pack 2 is installed, but the service pack 3 will not get spent about 1/2 in point because it says the kbdhid.sys open or currently in use, and there is no way to remove or stop in sys.32 drivers as it says it is used and there seems to be no way of knowing What to use.

    Hello

    I suggest you to follow the steps in this link and check if it helps: http://support.microsoft.com/kb/949377

    Also check out this link:
    http://support.Microsoft.com/kb/950717

    It will be useful.

  • Why do I get a message from Script does not

    Whenever I turn on my computer and go on the internet (Firefox), I get a message from script does not always.  I always click the stop script.  For up to about half an hour, the computer is very slow and sometimes does not.  After about half an hour, the computer starts more smoothly.

    The complete message, I just had was: A script on this page may be busy, or it may have stopped responding. You can stop the script now, or you can continue to see if the script ends.

    Script: chrome://divxhtml5/content/script.js:6

    I use norton 360 and Malwarebytes anti-malware to scan my computer for viruses and also auslogics disk defrag every week.  I also use Windows Vista, which he said can cause some problems.

    I spoke to a staff member of my internet provider who told me it was a simple problem to solve, but they could not advise me on how to do it.

    Thanks for any help.

    Hi johne278,

    Thanks for posting in the Microsoft Community.

    Please answer the question-

    This problem occur on Internet Explorer as well?

    Method-

    If the problem is specific to Firefox, so I'd like you to contact the Support of Mozilla Firefox and post a question the Mozilla Forums as well.

    We know if you need help. We will be happy to help you.

    Thank you.

  • WARNING the script does not have anyone can help on this?

    I get this warning whe script does not try to use firefox.

    I get sound on my computer laptop windows vists home premum.

    Hello

    I suggest that you try the Firefox Forums for assistance.

    http://forums.mozillazine.org/index.php?c=4

    See you soon.

  • If the State shows red and javascript script does not

    I am just learning Javascript and I can't believe, I have problems with that simple statement, but alas I am.

    Any help would be appreciated.

    The script is a script of learning:

    JavaScript document

    var crust = prompt ("what kind of crust do you want - thin or regular?'");

    If (== crust "thin"). (crust is 'regular')) {

    var cheese is prompt ("choose your cheese?");.

    {Switch (Cheese)}

    case "mozarella":

    case 'feta ':

    "parmesan" case

    case "cheddar":

    break;

    by default:

    Alert ("sorry we not that kind of cheese.");

    break;

    }

    } else {}

    Alert ("sorry we don't serve that kind of crust here.'");

    }

    Line no 4 and 19 shows red and the script does not run.  Help, please.  I created a similar script with numbers and it works fine but as soon as I put channels in I get errors.

    I tried to rewrite these lines so many times in so many different ways.

    I use Dreamweaver CC 2015, I Am studying an old version of Javascript?

    Any help would be appreciated.

    Thank you

    Try to run your code through this online validation tool.

    JavaScript - http://www.jslint.com/



    Nancy O.

  • Adobe Story Script does not allow me to integrate the script into Premiere Pro

    Integration with Premiere Pro Adobe story Script does not work I would like to integrate the script

    Goal: Incorporate a Story Script from Adobe in Premiere Pro. (mac)

    Method: I have a video with a text transcript.

    I inport the transcript in Adobe Story and save it in the file extension "Adobe" correct history (.astx)

    I save on the cloud to Adobe, and I also exported it to my office.

    I launch Premiere Pro and import the video that I transcribed.

    The I try one of the 3 ways to get the script of the video in PP.

    The first steps are the same as below:

    I go to Adobe Story and you connect from PP.

    I search for the file.

    I add a scene.

    Make sure that the scene is the same as it is in PP

    then...

    1.

    I drag and drop it on the movie file.

    Nothing appears in the Embed Adobe Story Script Meta Data field.

    2.

    I click on Analyze and the box integrate Adobe Story Script script remains greyed out (impossible to select)

    If I click on analyze then PP will analyze the script (does a decent job) but this isn't what I want.  I want to join the script verbatim in the video, that's why I've transcribed.

    3.

    Right click on the movie file in the PP and the context menu allows me to attach a script.

    I find my .astx file downloaded on my Mac and select it.

    Still nothing appears in the field to incorporate Adobe Story metadata.

    I worked with Anand of support suggested that I have post this question here.

    I don't know if there are only some Adobe models for which it works (IE script of TV, movies etc.)

    He suggested that this would probably work only for the formats .mov file, but then discovered that it should work, even for .mp4 files.

    In any case - if anyone has any ideas, ideas, or has experience with this it would be greatly appreciated.

    Jon

    17 views Tags: first proContent the tag with premiere pro, adobe story scriptContent script adobe story, the story adobe script in first embed tag proContent tag integrate adobe story script in first pro

    Translate

    I followed the below and so that the video above, it worked for me:

    https://forums.Adobe.com/thread/1235896?TSTART=0

  • Failed: Cannot access the remote Converter Standalone Agent service. It does not exist or is not responding.

    When I try to run the converter that we receive the following error message, FAILED: cannot access the remote Converter Standalone Agent service. It does not exist or is not responding.

    RaymondT

    Given that the conversion works, you can have a software or configuration of Windows Server. Check the Windows event logs. Anything in current policies that could prevent?

  • Point culminating script does not work correctly

    I try to get the yellow filled rectangle to become visible behind the digital field when the numeric field is greater than "1". Can anyone help to see why my script does not work?

    https://Acrobat.com/#d=MJObRvA * l9tbFmrlHcMHUA

    Thank you

    -Don

    Hi Don,

    Your code does not work because because it is not actually executed. It's because of put you the code on the text box itself output event and this would require the user to move to that field and then leave the field and then run the code.

    I would recommend you change you form to add this code at the end of the code that runs your "addAttachment" button and then the form works as I expect.

    If (NumberOfAttachments.rawValue > 1) {}

    RectangleYellow.presence = "visible";

    }

    Hope this helps

    Malcolm

Maybe you are looking for

  • Why can I not select a channel update for only security releases?

    It is a development machine. I write software that works in browsers, including yours. I would like to keep your current browser regarding versions, except that the framework that I use does not always keep upward. I'm trying to catch up with your se

  • Connectivity LAN on Satellite L20-205 works sometimes and sometimes not

    Hello Well im using ethernet to connect to internet. The thing is, sometimes it works, sometimes not. There are times when I can connect immediately after that I turned on the laptop, there are moments where the connection becomes available after 10

  • HP Envy 15t: fingerprint login no longer works

    I upgraded my laptop HP Envy-15 t to 10 Windows recently and the functionality of fingerprint login worked fine for more than 3 months. Today, I tried to add an another fingerprint for my spouse, using the login under account settings options. The fi

  • How can I turn the LCD on my A1300?

    I haven't used the A1300 enough to remember how to use it. I just tried to take a picture using the LCD screen and I see is the info from the camera. I used the viewfinder, pulled a photo, and I see that when I press the button to the left of the "Me

  • Explorer.exe does not after...

    Explorer.exe does not respond after I click 2 mouse on a mouse icon 2 on windows media player and press one of the tasks, it gives an error: Signature of the problem:Problem event name: BEXApplication name: explorer.exeApplication version: 6.1.7600.1