Available in Classic
You can connect to the manager node of a Search Engine Service cluster via SSH.
NAVER Cloud Platform is not responsible for any issues or service disruptions caused by actions you perform after connecting to the cluster via SSH.
Follow these steps to connect via SSH.
1. Configure manager node ACG
2. Connect to manager node via SSH
1. Configure manager node ACG
Configure ACG rules to allow access to the manager node.
This section describes only the settings required for SSH access. For more information on ACG, see ACG user guide.
- In the Classic environment on the NAVER Cloud Platform console, navigate to
> Services > Big Data & Analytics > Search Engine Service. - Click the Cluster menu.
- Select the cluster for SSH access, check the manager node ACG, then click
. - Select the manager node ACG identified in the previous step, then click [Set ACG].
- In the [Inbound] tab, add the following ACG rules, then click [Add].
- Protocol: Select TCP.
- Access source: Click [myIp] and enter your public IP address.
- Allowed port: Enter 22.
- Click [Apply].
- Allowing access to the entire Internet (IP address: 0.0.0.0/0) can pose serious security risks and may affect cluster tasks.
- Automatically created rules are required for managing Search Engine Service. Deleting or modifying these rules may impact cluster operation.
2. Connect to manager node via SSH
You can access the manager node directly via SSH from outside the network.
- An cluster authentication key (
.pemfile) configured is required.- If you lose the authentication key, you can reset it from Search Engine Service > Cluster > Manage server access > Change authentication key for direct cluster access.
To connect to the manager node via SSH based on your operating system:
For MacOS or Linux
To connect to the manager node via SSH on macOS or Linux:
- Launch a terminal.
- For macOS: Application > Utilities > Terminal.
- For Linux: Application > Accessories > Terminal.
- Run the following command to move to the directory where the authentication key file is located (
/path).cd /path - Run the following command to restrict access to the authentication key file (
key.pem).chmod 400 key.pem - Run the following command.
ssh -i /path/key.pem sshuser@"manager node public IP address”- Manager node public IP address: From the Cluster menu in the console, view the manager node public IP address for the selected cluster.
- When a security prompt appears, enter
yesto connect to the manager node.
For Windows
PuTTY does not natively support the authentication key format (.pem) generated by Search Engine Service. You must convert the key to a PuTTY-compatible format (.ppk)before connecting to the server.
Convert authentication key
To convert a .pem file to a .ppk file using PuTTYgen, which is provided with PuTTY:
- Run PuTTYgen.
- Click [Load], select the authentication key file (
.pem), then click [Open].- To locate the
.pemfile, select the option to show all file types.

- To locate the
- In Type of key to generate, select RSA and click [Save private key].

- If a warning appears about saving the key without a password, click [Yes], then save the file with the same name as the original key.
- The
.ppkfile extension is added automatically.
- The
Connect to the server
To connect to the server using the converted authentication key:
- Run PuTTY.
- In Category, navigate to Connection > SSH > Auth.

- Click [Browse].
- Select the converted authentication key file (
.ppk), then click [Open]. - In Category, click Session.
- Enter the server access details.
- Host Name (or IP address): Enter 'sshuser@manager node public IP address'.
- Manager node public IP address: From the Cluster menu in the console, view the manager node public IP address for the selected cluster.
- Port: Enter 22.
- Connection type: Select SSH.
- Host Name (or IP address): Enter 'sshuser@manager node public IP address'.
- Click [Open] to connect to the manager server.