Help Center> Data Encryption Workshop> FAQs> KPS Related> How Do I Enable the Password Login Mode for an ECS?
Updated on 2023-02-03 GMT+08:00

How Do I Enable the Password Login Mode for an ECS?

If you disable the password login mode when binding a key pair to an ECS, you can enable the password login mode again later when you need to.

Procedure

The following example describes how to log in to the ECS using PuTTY and enable the password login mode.

  1. Double-click PuTTY.EXE. The PuTTY Configuration page is displayed.
  2. Choose Connection > Data. Enter the image username in Auto-login username.

    • If the public image of the CoreOS is used, the username of the image is core.
    • For a non-CoreOS public image, the username of the image is root.

  3. Choose Connection > SSH > Auth. In Private key file for authentication, click Browse and select a private key file (in the .ppk format).

    If the file is in the .pem format, convert it by referring to Converting the Private Key File in the .pem Format to the .ppk Format.

  4. Click Session and enter the EIP of the ECS under Host Name (or IP address).

    Figure 1 Configuring the EIP

  5. Click Open to log in to the ECS.
  1. Run the following command to open the /etc/ssh/sshd_config file:

    vi /etc/ssh/sshd_config

  2. Press i to enter the editing mode and enable the password login mode.

    • For a non-SUSE operating system, change the value of PasswordAuthentication to yes.
      PasswordAuthentication yes
    • For a SUSE operating system, change the values of PasswordAuthentication and UsePAM to yes.
      PasswordAuthentication yes
      UsePAM yes
    • Non-SUSE OS

      To disable password login, change the value of PasswordAuthentication to no. If the PasswordAuthentication parameter is not contained in the /etc/ssh/sshd_config file, add it and set it to no.

    • SUSE OS

      To disable password login, change the values of PasswordAuthentication and UsePAM to no. If the file does not contain the PasswordAuthentication and UsePAM parameters, add the parameters and set the values to no.

  3. Press Esc to exit the editing mode.
  4. Enter :wq and press Enter to save and exit.
  5. Run the following command to restart the SSH service for the configuration to take effect:

    • Non-Ubuntu14.xx OS

      service sshd restart

    • Ubuntu14.xx OS

      service ssh restart

KPS Related FAQs

more