cancel
Showing results for 
Search instead for 
Did you mean: 

Process not running....?

Former Member
0 Kudos

I am working on SAP Basis. Please explain me how to check whether the process is running or not at UNIX LEVEL , or how to bring up the Process ...?

Accepted Solutions (1)

Accepted Solutions (1)

pavan_anjimeti
Participant
0 Kudos

Hi Sai,

Whenever you issue a command in UNIX, it creates or starts a new process.

 

ps -ef | grep <sid>adm --> you can see all running <sid>adm owner process(SAP Process).

ps -ef | grep ora<sid> --> you can see all running ora<sid> owner process(DB Process).

Process Control

  ps (display the status of the current processes)

options:

-a include processes owned by other users

-g display all processes

-u display user-oriented processes

-x include processes with no controlling terminals

-gx display all of your local processes

kill id-number terminate a process. The id-number (PID-Process ID) can be found by first using the ps command.

Some unix process commands:  http://www.st-andrews.ac.uk/ITS/training/unix/unix7.html

Regards,

Pavan

Former Member
0 Kudos

thank u soo much .... do u have any material regarding the ISSUE RESOLVING in SAP BASIS SUPPORT.

Former Member
0 Kudos

Thank u somuch ... and how to resolve too many instances issue... when we dont know the SID of the Instance.

Former Member
0 Kudos

Hi.. I got issue like Threshold exceeds some 90%. I Deleted some old files, even after deleting some old files, its still 90 %  and i zipped some trace files. what is the best way to reduce the threshold without losing data and without affecting production.

pavan_anjimeti
Participant
0 Kudos

Hi Sai,

some of the below non-required files that can be deleted from the SAP system, deleting files is not a permanent solution. You should increase the file system size.

Backup Offline Redo log files and then delete.

Old spool and log files should be deleted regularly by scheduling a periodic batch job.

Core files in Unix file system

Old ABAP/4 trace files. Use Transaction SE30 to delete the files

Old output requests, they are stored on the data directory as files SP*.

Regards,

Pavan

Answers (1)

Answers (1)

Former Member
0 Kudos

ps -ef | grep <useradmin>

where useradmin is process' owner

Regards

Diego