Operating System - HP-UX
1834665 Members
2845 Online
110069 Solutions
New Discussion

Disable root login via CDE

 
SOLVED
Go to solution
hp_user_1
Regular Advisor

Disable root login via CDE

Hello,

I like to disable direct root login access via CDE. This means that I do not want anyone to log in as root via CDE...

Points will be awarded.

Thanks
3 REPLIES 3
Peter Godron
Honored Contributor
Solution

Re: Disable root login via CDE

Hi,
did you spot:
http://forums1.itrc.hp.com/service/forums/questionanswer.do?threadId=975851
and

you may prevent direct root login via CDE
#vi /etc/dt/config/Xstartup (or cp from /usr/dt...)
(add folowing at the end of file)
if [ $(id-u ) = 0 ]; then
exit 1
fi
Robert-Jan Goossens_1
Honored Contributor

Re: Disable root login via CDE

Hi,

Title: Need to prevent root from logging in to CDE
Document ID: KBRC00000074

http://www1.itrc.hp.com/service/cki/docDisplay.do?docLocale=en_US&docId=200000064128599

Regards,
Robert-Jan
hp_user_1
Regular Advisor

Re: Disable root login via CDE

Thanks for the resolution.