CentOS has only one root user by default, but the root user has too many permissions and is not conducive to multi-person collaboration. For reasons of permission management and security, we create a new user for the system and enable its SSH login, while disabling the root user's login; Based on Create a new user In CentOS, there is no difference between [root@centos_7_6_1810 ~]# ll /usr/sbin/ | grep user lrwxrwxrwx 1 root root 7 Jun 24 10:14 adduser -> useradd -rwxr-xr-x. 1 root root 33104 Aug 3 2017 fuser -rwxr-xr-x. 1 root root 15832 Apr 13 2018 lnewusers -rwxr-xr-x. 1 root root 15752 Apr 13 2018 luseradd -rwxr-xr-x. 1 root root 11576 Apr 13 2018 luserdel -rwxr-xr-x. 1 root root 19896 Apr 13 2018 lusermod -rwxr-xr-x 1 root root 76232 Mar 14 2019 newusers -rwxr-xr-x 1 root root 33072 Mar 14 2019 runuser -rwxr-xr-x. 1 root root 19720 Apr 11 2018 sasldblistusers2 -rwxr-x--- 1 root root 118224 Mar 14 2019 useradd -rwxr-x--- 1 root root 80400 Mar 14 2019 userdel -rwxr-x--- 1 root root 113856 Mar 14 2019 usermod -rwsr-xr-x. 1 root root 11376 Oct 31 2018 usernetctl From the above command, we can see Regarding soft links, you can temporarily think of them as shortcuts in the Windows system; Use the [root@centos_7_6_1810 ~]# useradd luizyao [root@centos_7_6_1810 ~]# ls /home/ luizyao In most Linux distributions, the If we want to log in to the system with this username, we must set a password for it: [root@centos_7_6_1810 ~]# passwd luizyao Changing password for user luizyao. New password: Retype new password: passwd: all authentication tokens updated successfully. Then, we can log in to the system with this user: [luizyao@centos_7_6_1810 ~]$ whoami luizyao Authorize new users Normally, new users have full permissions in their own user directory (/home/luizyao/), and other directories require authorization from others. The most commonly used permissions are those of the root user, and The new user is not in the trusted list, so we cannot use the root user to execute commands: Note: At this point, log in to the system as a new user; [luizyao@centos_7_6_1810 /]$ sudo whoami [sudo] password for luizyao: luizyao is not in the sudoers file. This incident will be reported. In CentOS, we have two ways to add new users to the Sudoers list: Note: At this point, log in to the system as root; Method 1: Add the new user to the On RedHat distributions such as CentOS and Fedora, the user group [root@centos_7_6_1810 ~]# groups luizyao luizyao: luizyao [root@centos_7_6_1810 ~]# usermod -aG wheel luizyao [root@centos_7_6_1810 ~]# groups luizyao luizyao : luizyao wheel We use the At this point, the new user can execute commands with root privileges: [luizyao@centos_7_6_1810 root]$ sudo whoami [sudo] password for luizyao: root Notice: In this method, you need to enter the password of the new user to execute the # /etc/sudoers 106 ## Allows people in group wheel to run all commands 107 %wheel ALL=(ALL) ALL 108 109 ## Same thing without a password 110 # %wheel ALL=(ALL) NOPASSWD: ALL Remove a user from a group. You can use the following command: [root@centos_7_6_1810 ~]# gpasswd -d luizyao wheel Removing user luizyao from group wheel [root@centos_7_6_1810 ~]# groups luizyao luizyao: luizyao Method 2: Add a new user to the In the 1. You can configure the permissions of the new user directly in the Please use the 2. You can also add a dedicated configuration file for the new user in the bash [root@centos_7_6_1810 ~]# echo "luizyao ALL=(ALL) NOPASSWD:ALL" | tee /etc/sudoers.d/luizyao luizyao ALL=(ALL) NOPASSWD:ALL [root@centos_7_6_1810 ~]# ll /etc/sudoers.d/luizyao -rw-r--r-- 1 root root 32 Sep 17 17:51 /etc/sudoers.d/luizyao The above command means that luizyao can execute any command (the third ALL) on any host (the first ALL) as any user (the second ALL, which defaults to root) without a password: [luizyao@centos_7_6_1810 root]$ sudo whoami root Note: The name of the file can be anything, but we usually configure it to the username; Enable SSH key login for new usersAt this point, log in to the system as the new user; Create a key pair: [luizyao@centos_7_6_1810 ~]$ ssh-keygen -t ecdsa # Elliptic Curve Digital Signature Algorithm Generating public/private ecdsa key pair. Enter file in which to save the key (/home/luizyao/.ssh/id_ecdsa): # Select the folder where the key pair is stored. Created directory '/home/luizyao/.ssh'. Enter passphrase (empty for no passphrase): # Password for the private keyEnter same passphrase again: # Confirm the private key passwordYour identification has been saved in /home/luizyao/.ssh/id_ecdsa. Your public key has been saved in /home/luizyao/.ssh/id_ecdsa.pub. The key fingerprint is: SHA256:FljQN9JFxB/C83Mv7N3rFNLCxXICRxaKzKDb+Tzsgwo luizyao@centos_7_6_1810 The key's randomart image is: +---[ECDSA 256]---+ | .+.. B==. | | .o* = X o | | .. .* o B = | | o .. . X .| | . oS = =.| | .+ = o| | E .= . +.| | . .... oo| | .. .. .o.| +----[SHA256]-----+ Download the private key to your local computer: Based on Mac OS practice; Use the yaomengdeMacBook-Air:~ yaomeng$ scp luizyao@<ip address>:/home/luizyao/.ssh/id_ecdsa ~/.ssh/ At this point, we still need a password to log in: yaomengdeMacBook-Air:~ yaomeng$ ssh luizyao@<ip address> Enter passphrase for key "/Users/yaomeng/.ssh/id_ecdsa": # Enter the private key password, login failed [email protected] password: # luizyao's user password Last login: Tue Sep 17 22:50:22 2019 SSH password-free login Rename the public key to authorized_keys: [luizyao@centos_7_6_1810 ~]$ mv ~/.ssh/id_ecdsa.pub ~/.ssh/authorized_keys [luizyao@centos_7_6_1810 ~]$ ll ~/.ssh/ total 8 -rw-r--r-- 1 luizyao luizyao 185 Sep 17 22:58 authorized_keys -rw------- 1 luizyao luizyao 314 Sep 17 22:58 id_ecdsa Notice: Because I didn’t have an authorized_keys file before, I just renamed it here; if you already have an authorized_keys file, you can use the following command to add the public key to the end of the file: cat >> ~/.ssh/authorized_keys < ~/.ssh/id_ecdsa.pub Note that if the authorized_keys file, ~/.ssh/ directory, or the user's home directory (/home/luizyao/) is given write permission to other users, You can view the help documentation through the ~/.ssh/authorized_keys Lists the public keys (DSA, ECDSA, Ed25519, RSA) that can be used for logging in as this user. The format of this file is described above. The con tent of the file is not highly sensitive, but the recommended permissions are read/write for the user, and not accessible by others. If this file, the ~/.ssh directory, or the user's home directory are writable by other users, then the file could be modified or replaced by unauthorized users. rized users. In this case, sshd will not allow it to be used unless the StrictModes option has been set to “no”. At this point, we can use SSH to log in without a password: yaomengdeMacBook-Air:~ yaomeng$ ssh [email protected] Enter passphrase for key "/Users/yaomeng/.ssh/id_ecdsa": # Private key password Last login: Wed Sep 18 00:00:41 2019 from 49.65.108.161 Disable SSH password login Now, we can still log in with a password, which is still unsafe. Now we will prohibit the use of passwords to log in to the system; For CentOS systems, you only need to modify Restart the SSH service: [luizyao@centos_7_6_1810 ~]$ sudo systemctl restart sshd We have disabled password login for SSH and only allow login with keys; otherTo further improve the security of the system, we can do something else: Disable root user from logging in using SSH Just modify Using an unconventional SSH port The default SSH port is 22. We can change it to an uncommon port: modify We also need to modify the sshd configuration in the firewall. CentOS 7 uses firewalld by default. We configure it as follows: Copy the default configuration file of firewalld about ssh to the system configuration folder: [luizyao@centos_7_6_1810 ~]$ sudo cp /usr/lib/firewalld/services/ssh.xml /etc/firewalld/services/ Modify the port configuration in the configuration file: <!-- /etc/firewalld/services/ --> <?xml version="1.0" encoding="utf-8"?> <service> <short>SSH</short> <description>Secure Shell (SSH) is a protocol for logging into and executing commands on remote machines. It provides secure encrypted communications. If you plan on accessing your machine remotely via SSH over a firewalled interface, enable this option. You need the openssh-server package installed for this option to be useful.</description> <port protocol="tcp" port="10178"/> </service> Reload firewalld configuration: [luizyao@centos_7_6_1810 ~]$ sudo firewall-cmd --reload success Disable pingingAdd the following rules to the firewall and reload the configuration: [luizyao@centos_7_6_1810 ~]$ sudo firewall-cmd --permanent --add-icmp-block=echo-reply [luizyao@centos_7_6_1810 ~]$ sudo firewall-cmd --permanent --add-icmp-block=echo-request [luizyao@centos_7_6_1810 ~]$ sudo firewall-cmd --reload Summarize The above is the method that I introduced to you to create a new user and enable key login in CentOS. I hope it will be helpful to you. If you have any questions, please leave me a message and I will reply to you in time. I would also like to thank everyone for their support of the 123WORDPRESS.COM website! You may also be interested in:
|
<<: Using react-virtualized to implement a long list of images with dynamic height
>>: In-depth explanation of the principle of MySQL Innodb index
Table of contents front end According to the abov...
Detailed example of clearing tablespace fragmenta...
The relationship between Tomcat logs A picture is...
The code looks like this: // Line style of the pa...
The role of init_connect init_connect is usually ...
Table of contents A simple component example More...
The show processlist command is very useful. Some...
<br />Preface: Before reading this tutorial,...
This article example shares the specific code for...
After installing the MySQL database using the rpm...
Create a test table -- --------------------------...
When you send a network request, the following sa...
According to data analysis company Net Market Sha...
border-radius:10px; /* All corners are rounded wi...
Compared with ordinary programs, dynamic link lib...