Ubuntu Server系统基础配置
Posted Molson
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Ubuntu Server系统基础配置相关的知识,希望对你有一定的参考价值。
Ubuntu Server系统基础配置
1:更改主机名:
1 ~$ cat /etc/hostname 2 ubuntu-node.example.com
2:配置root远程登录
默认情况下,ubuntu不允许root用戶远程ssh,如果有实际场景需要允许root用戶远程ssh,则需要设置root密码,并且编辑/etc/ssh/sshd_config文件修改如下
~$ sudo vim /etc/ssh/sshd_config 32#PermitRootLogin prohibit-password #默认为禁止登录 33 PermitRootLogin yes#改为允许登录 57#PasswordAuthentication yes 58 PasswordAuthentication yes#打开密码认证,其实默认就是允许通过密码认证登录~ $ sudosu- root #切换到root用戶环境 ~# passwd #设置密码Enter new UNIX password:Retype new UNIX password: passwd: password updated successfully ~# systemctl restart sshd #重启ssh服务并测试root用戶远程ssh连接
以上是关于Ubuntu Server系统基础配置的主要内容,如果未能解决你的问题,请参考以下文章
Dell服务器配置与安装Ubuntu Server20.04操作系统,超详细!
Ubuntu18.04.4 TLS Server版本系统安装 and Ubuntu 18.04.4 Desktop版本安装