Change SAPOSCOL Owner, Group & Permission in UNIX & Linux

1. Login to the UNIX / Linux system as a root and go to /usr/sap/<SID>/SYS/exe/run. Execute the following commands

• Change directory

# cd /usr/sap/<SID>/SYS/exe/run

• Change the saposcol owner to root

# chown root saposcol

• Change the saposcol group to sapsys

# chgrp sapsys saposcol

• Change the saposcol permission

# chmod 4750 saposcol

2. Verify the file properties to be similar like below..

# ls -la /usr/sap/<SID>/SYS/exe/run/saposcol
-rwsr-x---   1 root     sapsys    1234567 Jan 30 12:21 saposcol

You May Also Like

Leave a Reply?