GoLand 2021.1 Help

Create SSH configurations

In GoLand, you can save the remote server SSH connection parameters as a dedicated SSH configuration. The created configuration can be then used for configuring remote interpreters, connecting to SFTP deployment servers, and launching SSH sessions.

  1. In the Settings/Preferences dialog Ctrl+Alt+S, go to Tools | SSH Configurations.

  2. In the left-hand pane that lists all the existing SSH configurations, click Add item.

  3. Use the Visible only for this project checkbox to configure the visibility of the server access configuration.

    • Select the checkbox to restrict the use of the SSH configuration to the current project. Such SSH configuration cannot be reused outside the current project. It does not appear in the list of available configurations in other projects.

      The SSH configurations are stored in the .idea directory together with the project, which allows sharing them between team members through a VCS.

    • When the checkbox is cleared, the SSH configuration is visible in all GoLand projects. Its settings can be reused across several projects.

  4. In the Host, User name, and Port fields, specify the connection parameters. If necessary, you can provide the outgoing port in the Local port field. Otherwise, the port is selected automatically.

  5. Choose the way to authenticate to the server. Do one of the following:

    • Password: to access the host with a password. To save the password in GoLand, select the Save password checkbox.

    • Key pair (OpenSSH or PuTTY): to use SSH authentication with a key pair. To apply this authentication method, you must have a private key on the client machine and a public key on the remote server. GoLand supports private keys that are generated with the OpenSSH utility.

      Specify the path to the file where your private key is stored and type the passphrase (if any) in the corresponding fields. To have GoLand remember the passphrase, select the Save passphrase checkbox.

    • OpenSSH config and authentication agent: to use SSH keys that are managed by a credentials helper application (for example, Pageant on Windows or ssh-agent on macOS and Linux).

    See the Generating a new SSH key and adding it to the ssh-agent tutorial for details on working with SSH keys.

  6. Click the Test connection button to make sure that the settings are correct and GoLand can connect to the target server.

Last modified: 13 April 2021