Problem:
I have an HP-UX 11.31 server, for hardening and securing the server I have disabled the root login on this server.
How to Disable Root SHH Login in HP-UX?
But after disabling the root login, I was not able to switch to the root user. I was able to log in as a normal user but when I was trying to switch to root user it is showing the error “su: Sorry” as shown below.
login as: dbappweb
Password:
Last successful login: Thu Aug 31 12:32:41 IST 2017 172.10.10.11
$
$ su - root
Password:
su: Sorry
Reason:
When we create a user using the command useradd command without using any parameter then the user is created with the sh shell which you can see in the password file /etc/passwd as shown below:
# useradd dbappweb $ cat /etc/passwd . . dbappweb:x:112:20::/home/dbappweb:/sbin/sh . .
Solution:
To resolve the above issue first I deleted the user dbappweb and created the same user again by using the command given below. Now we can see that in the password file /etc/passwd that user-created with ksh shell.
# userdel dbappweb # useradd -g users -m -k /etc/skel -s /usr/bin/ksh dbappweb $ cat /etc/passwd . . sonu:x:112:20::/home/dbappweb:/usr/bin/ksh . .
Now we can successfully switch from normal user dbappweb to root user as shown below.
login as: dbappweb Password: $ su - root Password: Value of TERM has been set to "xterm". WARNING: YOU ARE SUPERUSER !! #
Related Posts
- How to Find NIC (Network Interface Card) Details in HP-UX
- How to Install a .depot Package Using swinstall on HP-UX
- HP-UX: How to restrict NFS share access to a particular server?
- crontab: you are not authorized to use cron. Sorry. in HP-UX
- HP-UX: SSH taking too much time after adding the DNS Servers
- How to add DNS servers on an HP-UX server
- How to login to vPar console in HP-UX
- How to extend the size of Logical Volume (LV) in HP-UX
- How to determine file system type in HP-UX using command
- How to check vPar machines status in HP-UX
- How to find HBA cards/ports and WWN Number details in HP-UX (nPar)
- How to find HBA cards/ports and WWN Number details in HP-UX (vPar)
- HP-UX command to get Physical Memory Information
- HP-UX command to get Processor Information
- HP-UX command to get Hardware Serial Number
- su: Sorry in HP-UX while switching from normal user to root user
- SSH login taking too much time on HP-UX 11.31
- How to Disable Root SHH Login in HP-UX?
- hpvmstatus: HPVM currently not running.
- How to view/print routing table in HP-UX?
- Create a Logical Volume larger than 2TB and format it in HP-UX
- Protect SSH Logins with SSH and MOTD Banner Messages in HP-UX
- Remove welcome message after login in HP-UX 11.31
- Create a Logical Volume and format it in HP-UX
- How to rescan new LUNs added in HP-UX 11.31
- How to reboot a HP-UX machine?
- How to remove File System, LV and VG in HP-UX and Linux?
- How to remove NO_HW devices from ioscan in HP-UX without a reboot?
- Change root user password of vpar machine in HP-UX