doc/pages/01.administrate/06.overview/04.commandline/ssh.md

180 lines
7.4 KiB
Markdown
Raw Normal View History

2020-11-11 11:47:10 +01:00
---
2021-02-06 23:27:51 +01:00
title: SSH and command line
2020-11-11 11:47:10 +01:00
template: docs
taxonomy:
category: docs
routes:
default: '/ssh'
2021-02-06 23:27:51 +01:00
aliases:
- '/commandline'
page-toc:
active: true
2020-11-11 11:47:10 +01:00
---
2014-06-17 19:53:15 +02:00
2017-01-31 08:00:30 +01:00
## What's SSH?
2014-06-17 19:53:15 +02:00
2021-03-18 14:41:34 +01:00
**SSH** stands for Secure Shell, and refers to a protocol that allows to remotely control and administer a machine using the command line interface (CLI). It is available by default in any terminal on GNU/Linux and macOS. On Windows, you may want to use [MobaXterm](https://mobaxterm.mobatek.net/download-home-edition.html) (after launching it, click on Session then SSH).
2021-02-06 23:27:51 +01:00
The command line interface (CLI) is, in the computer world, the original (and more technical) way of interacting with a computer compared to graphical interface. Command line interfaces are generally said to be more complete, powerful or efficient than a graphical interface, though also more difficult to learn.
## How to connect
### Login credentials
[ui-tabs position="top-left" active="0" theme="lite"]
[ui-tab title="Before running the initial configuration (post-installation)"]
2021-02-10 19:59:57 +01:00
- If you are **installing at home**, the default credentials are login: `root` and password: `yunohost` (or `1234` if you flashed an armbian image)
- If you are **installing a remote server (VPS)**, your provider should have communicated you the login and password (or allowed you to configure an SSH key)
[/ui-tab]
[ui-tab title="After"]
During the postinstall, you've been asked to choose an administration password. This password becomes the new password for the `root` and `admin` users. Additionally, **the `root` SSH login becomes disabled after the postinstall and you should log in using the `admin` user !**. The only exception is that you may still be able to login using `root` *from the local network - or from a direct console on the server* (this is to cover the event where the LDAP server is broken and the `admin` user is unusable).
!!! If you connected as `admin` and would like to become `root` for convenience (e.g. to avoid typing `sudo` in front of every command), you can become `root` using the command `sudo su` or `sudo -i`.
[/ui-tab]
[/ui-tabs]
### Address to use
If you are **installing at home** (e.g. on a Raspberry Pi or OLinuXino or old computer):
2021-09-25 17:45:37 +02:00
- you should be able to connect to your server using `yunohost.local` (or `yunohost-2.local`, depending on how many servers are on your network).
- if `yunohost.local` and the like do not work, your need to [find out the local IP of the server](/finding_the_local_ip).
- if you installed a server at home but are attempting to connect from outside your local network, make sure port 22 is correctly forwarded to your server.
If your server is a remote server (VPS), your provider should have communicated you the IP address of the machine
In any cases, if you already configured a domain name pointing to the appropriate IP, it's much better to use `yourdomain.tld` instead of the IP address.
### Connecting
The SSH command typically looks like:
```bash
# before the postinstall:
ssh root@11.22.33.44
2014-07-23 16:44:43 +02:00
# or after the postinstall:
ssh admin@11.22.33.44
2016-01-20 17:10:58 +01:00
2021-09-25 17:45:37 +02:00
# using the domain name instead of the IP (more convenient)
ssh admin@votre.domaine.tld
2021-09-25 17:45:37 +02:00
# using the local domain name instead of the IP (for local access)
ssh admin@yunohost.local
# if you changed the SSH port
ssh -p 2244 admin@votre.domaine.tld
```
N.B. : `fail2ban` will ban your IP for 10 minutes if you perform 10 failed login attempts. If you need to unban the IP, have a look at the page about [Fail2Ban](/fail2ban)
2019-01-07 15:46:58 +01:00
## Which other users may connect to the server?
2016-01-20 17:10:58 +01:00
2020-09-22 22:27:52 +02:00
By default, only the `admin` user can log in to YunoHost SSH server.
2016-01-20 17:10:58 +01:00
YunoHost's users created via the administration interface are managed by the LDAP directory. By default, they can't connect via SSH for security reasons. Via the permissions system it is possible to allow the connection in SFTP or if it is really necessary in SSH.
! Be careful who you give SSH access to. This increases even more the attack surface available to a malicious user.
[ui-tabs position="top-left" active="0" theme="lite"]
[ui-tab title="From the web interface"]
Go to `Users > Manage groups and permissions`.
From here, you can add SFTP or SSH permissions to any user or group.
If you want to add an SSH public key to the user, you have to do it from the command line, as the web interface does not yet offer this feature.
[/ui-tab]
[ui-tab title="From the command line"]
To allow a user or group to access via SFTP or SSH:
2021-07-15 18:51:42 +02:00
```bash
# SFTP
yunohost user permission add sftp <username>
# SSH
yunohost user permission add ssh <username>
```
To remove permission:
```bash
# SFTP
yunohost user permission remove sftp <username>
# SSH
yunohost user permission remove ssh <username>
```
2020-09-22 22:27:52 +02:00
Finally, it is possible to add, delete and list SSH keys, to improve SSH access security, using the commands:
2021-07-15 18:51:42 +02:00
```bash
yunohost user ssh add-key <username> <key>
yunohost user ssh remove-key <username> <key>
2018-07-04 22:37:02 +02:00
yunohost user ssh list-keys <username>
```
[/ui-tab]
[/ui-tabs]
2016-01-20 17:10:58 +01:00
## Security and SSH
2020-03-28 06:54:10 +01:00
A more extensive discussion about security & SSH can be found on the [dedicated page](/security).
2021-02-06 23:27:51 +01:00
## The command line
2021-02-06 23:27:51 +01:00
!!! Providing a full tutorial about the command line is quite beyond the scope of the YunoHost documentation : for this, consider reading a dedicated tutorial such as [this one](https://ryanstutorials.net/linuxtutorial/) or [this one](http://linuxcommand.org/). But be reassured that you don't need to be a CLI expert to start using it !
### The `yunohost` command
2021-03-18 14:41:34 +01:00
The `yunohost` command can be used to administer your server and perform the various actions similarly to what you do on the webadmin. The command must be launched either from the `root` user or from the `admin` user by preceeding them with `sudo`. (ProTip™ : you can become `root` with the command `sudo su` as `admin`).
2021-02-06 23:27:51 +01:00
YunoHost commands usually have this kind of structure :
```bash
yunohost app install wordpress --label Webmail
^ ^ ^ ^
| | | |
category action argument options
```
Don't hesitate to browse and ask for more information about a given category or action using the the `--help` option. For instance, those commands :
```bash
yunohost --help
yunohost user --help
yunohost user create --help
```
will successively list all the categories available, then the actions available in the `user` category, then the usage of the action `user create`. You might notice that the YunoHost command tree is built with a structure similar to the YunoHost admin pages.
### The `yunopaste` command
This command allow you to share with an other person the output of a command.
Example:
```bash
yunohost tools diagnosis | yunopaste
```
### The `ynh-vpnclient-loadcubefile.sh` command
This command is only available if you have the `VPN Client` application installed. You can use it to load a new .cube in case you can't get to the VPN Client interface to do so.
```bash
ynh-vpnclient-loadcubefile.sh -u <username> -p <password> -c <path>.cube
```
### Some useful commands
If your administration web interface indicates that the API is unreachable, try starting `yunohost-api`:
```bash
systemctl start yunohost-api
```
If you can no longer connect with the user `admin` via SSH and via the web interface, the `slapd` service may be down, try restarting it:
```bash
systemctl restart slapd
```
If you have manually modified configurations and want to know the changes:
```bash
yunohost tools regen-conf --with-diff --dry-run
```