cancel
Showing results for 
Search instead for 
Did you mean: 

How to start SAP and oracle on SUN SOLARIS SYSTEM

Former Member
0 Kudos

hi.

Please suggest

(Mistakenly we restarted the server when SAP is on and now SAP is not starting)

1. How to start the SAP ECC6 in sun Solaris.(version 10)

2.How to start the oracle in sun Solaris (version 10)

We are trying with

sh startsap SID

but it showing SAP SYSTEM NAME NOT FOUND

Please suggest'

Regards,

Accepted Solutions (1)

Accepted Solutions (1)

markus_doehr2
Active Contributor
0 Kudos

login as ora<sid>

execute

lsnrctl start

logout and login as <sid>adm

execute

sqlplus / as sysdba
startup

p

If that work execute

startsap

Markus

Answers (1)

Answers (1)

Former Member
0 Kudos

To reply your question.To start and stop below two commands are sufficent.

START SAP

$Su -sidadm

$startsap

To Stop SAP

$stopsap

*************************************************************

Now comming to your posting.

If you have issued sapstart by mistake ,it shall not make any difference .SAP shall remain up and running.

you can check the status of sap

ps -ef|grep sap

it should show some process running approx 20 to 30

ps -ef|grep ora

it shall show listener and other oracle processes up and running.

In case you are not able to login to sap from gui and sap instance is down.

Just shut down the system as mentioned above.

or if you db is not shutting down by the stopsap

su - orasid

sqlplus /as sysdba

shutdown

or shutdown immidiate

then check if any oracle process is running

ps -ef|grep ora

if listener is running you can stop and start that as

lsnrctl stop

lsnrctl start

atlast if nothing works

refer oss note 2033 also.You may need to clean the IPC (shared memory processes)

Hope it helps.

Amit