Search : in
By :

Change root user name

Last answer on Sep 30, 2009 9:11:55 am BST Diaa, on Jul 7, 2008 11:05:49 am BST 
 Report this message to moderators

Hi all
My question is:
Is there a way to change the user account name as a way for more security.
(i.e, I am a root on RedHat system and want to change my username <root> to another name say <diaa>)
Is that possible.
Waiting for a response!

Best answers for « change root user name » in :
Reinitializing the root password of MySQL ShowReinitializing the root password of MySQL The root password is lost! Reinitializing the password: It's important that you are able to access and modify the admin (root) password of MYSQL, either when installing MySQL for the first...
Displaying your name on the taskbar near the clock ShowDisplaying your name on the taskbar near the clock The registry The values to be changed Logos Restart the process: explorer Despite the many personalization solutions for windows, sometimes heavy and demanding resources for less...
Change the size of start menu ShowChange the size of start menu Here is how to change at will the size of your Start Menu. Right-click on the Start menu, then choose properties. Click Customize in the new window, increase or decrease the number of recent programs to...
Download Ant Renamer ShowANT Renamer allows to reappoint a big number of files and files in some clicks. It is only changing the names of files / files: Change of extension Replacement of character strings by others Insertion of a character string Displacement of...
Download Caledos Automatic Wallpaper Changer ShowCaledos Automatic Wallpaper Changer, as its name indicates, is a screen background administrator. The main features of Caledos : - it supports the image formats BMP, GIF, JPG, TIF, - easy selection of files or folders, - the possibility of...
The USB (Universal Serial Bus) ShowIntroduction to the USB USB (Universal Serial Bus) is as its name suggests, based on serial type architecture. However, it is an input-output interface much quicker than standard serial ports. Serial architecture was used for this type of port for...
Linux - User management ShowFirst step for the administrator When several people have access to a system, the administrator must manage the users. To do so, he must know the common commands and files to be configured. The important files are: the /etc/passwd file the...
IP address spoofing ShowIP address spoofing "IP address spoofing" is a technique that involves replacing the IP address of an IP packet's sender with another machine's IP address. This technique lets a pirate send packets anonymously. It is not a question of changing the...

1

Skewkus, on Jul 7, 2008 3:51:50 pm BST

Yes it is possible,

Linux can be customize as you wish





Find below tips

The usermod command modifies the system account files to reflect the changes that are specified on the command line.

Options
The options which apply to the usermod command are:

-a, --append
Add the user to the supplemental group(s). Use only with -G option.
-c, --comment COMMENT
The new value of the user's password file comment field. It is normally modified using the chfn(1) utility.
-d, --home HOME_DIR
The user's new login directory. If the -m option is given the contents of the current home directory will be moved to the new home directory, which is created if it does not already exist.
-e, --expiredate EXPIRE_DATE
The date on which the user account will be disabled. The date is specified in the format YYYY-MM-DD.
-f, --inactive INACTIVE
The number of days after a password expires until the account is permanently disabled. A value of 0 disables the account as soon as the password has expired, and a value of -1 disables the feature. The default value is -1.
-g, --gid GROUP
The group name or number of the user's new initial login group. The group name must exist. A group number must refer to an already existing group. The default group number is 1.
-G, --groups GROUP1[,GROUP2,...[,GROUPN]]]
A list of supplementary groups which the user is also a member of. Each group is separated from the next by a comma, with no intervening whitespace. The groups are subject to the same restrictions as the group given with the -g option. If the user is currently a member of a group which is not listed, the user will be removed from the group. This behaviour can be changed via -a option, which appends user to the current supplementary group list.
-l, --login NEW_LOGIN
The name of the user will be changed from LOGIN to NEW_LOGIN. Nothing else is changed. In particular, the user's home directory name should probably be changed to reflect the new login name.
-L, --lock
Lock a user's password. This puts a '!' in front of the encrypted password, effectively disabling the password. You can't use this option with -p or -U.
-o, --non-unique
When used with the -u option, this option allows to change the user ID to a non-unique value.
-p, --password PASSWORD
The encrypted password, as returned by crypt(3).
-s, --shell SHELL
The name of the user's new login shell. Setting this field to blank causes the system to select the default login shell.
-u, --uid UID
The numerical value of the user's ID. This value must be unique, unless the -o option is used. The value must be non-negative. Values between 0 and 999 are typically reserved for system accounts. Any files which the user owns and which are located in the directory tree rooted at the user's home directory will have the file user ID changed automatically. Files outside of the user's home directory must be altered manually.
-U, --unlock
Unlock a user's password. This removes the '!' in front of the encrypted password. You can't use this option with -p or -L.
-Z, --selinux-user SEUSER
The SELinux user for the user's login. The default is to leave this field blank, which causes the system to select the default SELinux user.

Reply to Skewkus

2

diaa, on Jul 7, 2008 10:12:14 pm BST
  • +1

THANKS
I appreciate your help
but I face error message as following:

~] #usermod -l newname root
usermod: can not lock password file
~] #

I'm working on RedHat 9, but I'm sure it's not the reason of this error message.
rather than the BIG trouble,that is this command will not be executed <as I read it online>
if the user named ( oldname ) is currently logged in.
I have to say that, I tried to change /etc/passwd permissions, but nothing changed, the error message still displayed.
waiting for reply.

Reply to diaa

3

agabaga, on Jan 18, 2009 2:00:12 pm GMT
  • +1

Sudo passwd root

Reply to agabaga

4

diaa, on Jan 18, 2009 2:27:40 pm GMT
  • +1

I don' want to change the root password !!
actually, this is the right answer:
~] #usermod -l <newname> <oldname>
in my case: I want to change the (system administrator account) from <root> to <diaa>, Thus:
~]#usermod -l diaa root
although it doesn't work on RedHat9, It works on RHEL4 !!
CLOSED.. and Thanks for all participant.

Reply to diaa

5

sac, on Jan 26, 2009 9:27:08 am GMT

Hello diaa,
I think i have the solution of your problem.
you just give the following command to change your root user name
sudo usermod -l <new name> root
i have just insert sudo before your last command .check it may be it will help you.

Reply to sac

6

chatters, on Mar 9, 2009 3:45:44 am GMT

Hi. just dropped by this thread. I think if you are using a webserver, its a really good idea to change the root username to protect further from brute force attacks, if you have brute force protection switched on, then you will be less likely to be locked out using a non generic username.

Reply to chatters

7

leancode, on Apr 30, 2009 7:11:54 pm BST
  • +1

I can only advice not to change the root username. It can get you into many troubles if you don't know EXACTLY what you are doing. The fact that you are asking the question on how to do it means you don't. For one it will pretty much invalidate your crontab and vital scheduled system functions won't get executed. Many other config files explicitly mention 'root' let alone some scripts will have hardcoded references to 'root'. Yes all the answers above are correct. You CAN do it. But I advice you not to unless (I am repeating myself).

Reply to leancode

8

jesse, on Aug 7, 2009 5:10:55 am BST

Don't change the root username on SUSE, you will lock yourself out of root: root will not take the new name and will be set to '0', and you will not be able to authenticate the user.

Reply to jesse

9

phani510, on Aug 19, 2009 11:01:02 am BST

Hi every body i install the linux fedora in my system . by mistake the username root is changed in to the sroot . now i unable to login as a root . wat 2 do please help me out .

thanking u.

Reply to phani510

10

 paliwalmonu, on Sep 30, 2009 9:11:55 am BST

Yes u can change

first of all system login by root
vim /etc/passwd
in this file first word root pls replace root in ur name or new root name
:wq
save the file
exit

Reply to paliwalmonu