search
top

How To Install SCOM 2012 R2 Agent on Solaris 10 x86

Recently our company has been deploying Microsoft SCOM 2012 R2 in our environment. Installation on Solaris 10 x86 proved to be an issue. This post Create the service account and group (opsmgrsvc is our service account) id and set the password. You can use an auto generated UID, For our purposes we choose 21053. # groupadd -g 21053 opsmgrsvc # useradd -u 21053 -g opsmgrsvc -c “SCOM Service... read more

Changing umask based on Group Membership in Solaris 10 in profile

Recently ran into a situation where we needed to make sure that the umask of 002 was set on all the files owned by a specific group.  There are several solutions but one way is to set the umask in the /etc/profile. For Solaris 10 it is set in the profile here. if [ “$LOGNAME” = “root” ] then PS1=”ROOT@`uname -n`# ” ; export PS1 else PS1=”$LOGNAME@`uname -n`$... read more

top