![]() | |
![]() |
| | Thread Tools | Display Modes |
#1
| |||
| |||
|
#2
| |||
| |||
|
|
hi all After installing Oracle database 11.2 on Solaris 10 x86 the dbstart script doesn't work because of the interpreter is set to /bin/sh but the script uses syntax of ksh/bash . dbstart: line 1:#!/bin/sh ... line 89:export ORACLE_HOME=$ORACLE_HOME_LISTNER This export statement is illegal for bourne shell so the script exits with an error message and doesn't the database processes How do you solve this problem? Sven -- Sven-Olaf Hilmer, Solaris System Engineer http://www.hilmer-informatik.ch |
#3
| |||
| |||
|
|
After installing Oracle database 11.2 on Solaris 10 x86 the dbstart script doesn't work because of the interpreter is set to /bin/sh but the script uses syntax of ksh/bash . |
#4
| |||
| |||
|
|
"Sven Hilmer" <shilmer (AT) invalid (DOT) invalid> a écrit dans le message de news: hk42j0$nek$1 (AT) news (DOT) albasani.net... | hi all | | After installing Oracle database 11.2 on Solaris 10 x86 | the dbstart script doesn't work because of the interpreter | is set to /bin/sh but the script uses syntax of ksh/bash . | | dbstart: | line 1:#!/bin/sh | ... | line 89:export ORACLE_HOME=$ORACLE_HOME_LISTNER | | | This export statement is illegal for bourne shell | so the script exits with an error message and doesn't the database processes | | How do you solve this problem? | | Sven | | -- Change it to a syntax it accepts. It has been long since I used sh but it is valid for Korn shell. |
| export ORACLE_HOME=$ORACLE_HOME_LISTNER |
#5
| |||
| |||
|
|
hi all After installing Oracle database 11.2 on Solaris 10 x86 the dbstart script doesn't work because of the interpreter is set to /bin/sh but the script uses syntax of ksh/bash . dbstart: line *1:#!/bin/sh ... line 89:export ORACLE_HOME=$ORACLE_HOME_LISTNER This export statement is illegal for bourne shell so the script exits with an error message and doesn't the database processes How do you solve this problem? Sven -- Sven-Olaf Hilmer, Solaris System Engineerhttp://www.hilmer-informatik.ch |
#6
| |||
| |||
|
|
hi all After installing Oracle database 11.2 on Solaris 10 x86 the dbstart script doesn't work because of the interpreter is set to /bin/sh but the script uses syntax of ksh/bash . dbstart: line 1:#!/bin/sh ... line 89:export ORACLE_HOME=$ORACLE_HOME_LISTNER This export statement is illegal for bourne shell so the script exits with an error message and doesn't the database processes How do you solve this problem? Sven -- Sven-Olaf Hilmer, Solaris System Engineer http://www.hilmer-informatik.ch frank@cs-frank03:~$ bash |
#7
| |||
| |||
|
|
My dbora init.d(4) script invokes dbstart like this: su - $ORA_OWNER -c "ksh $ORA_HOME/bin/dbstart" |
![]() |
| Thread Tools | |
| Display Modes | |
| |