Security
Setting System Access Permissions on UNIXLike many other SAS processes, the IOM servers require that the SASPERM and SASAUTH files in the !SASROOT/utilities/bin directory be owned by the root user and have the setuid bit enabled. These permissions are typically set during SAS installation, using the setup utility. You might want to verify that the appropriate permissions are set. If they are not, then enable the setuid bit and change the owner to root by using one of the following methods.
Method 1: Using SAS Setup
Method 2: Using the Command LineAt a UNIX prompt, type the following:$ su root # cd !SASROOT/utilities/bin # chown root sasauth sasperm sasrun # chmod 4755 sasauth sasperm sasrun # exit |