随记-阿里云服务器 Ubuntu20.04

文章目录

禁止root 远程登录

先创建一个用户

sudo adduser username

赋予用户sudo

sudo usermod -a -G adm username

sudo usermod -a -G sudo username

禁用 root 远程登录

修改config

vim /etc/ssh/sshd_config

将 PermitRootLogin yes 改为 PermitRootLogin no

PermitRootLogin no

重启 ssh

sudo service ssh restart

修改默认22 端口

修改config

vim /etc/ssh/sshd_config

搜索并复制 Port,修改 22 为其他可用端口

Port 55

重启 ssh

sudo service ssh restart

免密登录

生成密钥

ssh-keygen -t rsa -b 4096 -f file_name

上传公钥到服务器

ssh-copy-id -i .ssh/id_rsa.pub 用户名@192.168.x.xxx

安装Docker

更新软件包索引

sudo apt update

sudo apt install -y apt-transport-https ca-certificates curl gnupg-agent software-properties-common

curl 导入源仓库的 GPG key

curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add -

添加 Docker APT 软件源

sudo add-apt-repository "deb [arch=amd64] https://download.docker.com/linux/ubuntu $(lsb_release -cs) stable"

安装 Docker

安装 Docker 最新版本

sudo apt update

sudo apt install docker-ce docker-ce-cli containerd.io

安装指定版本

查看可用版本

sudo apt update

apt list -a docker-ce

示例

docker-ce/focal 5:20.10.24~3-0~ubuntu-focal amd64

docker-ce/focal 5:20.10.23~3-0~ubuntu-focal amd64

如上,VERSION 在第二列

5:20.10.24~3-0~ubuntu-focal

5:20.10.23~3-0~ubuntu-focal

安装指定版本

sudo apt install -y docker-ce=<VERSION> docker-ce-cli=<VERSION> containerd.io

阻止 Docker 自动更新

sudo apt-mark hold docker-ce

以非 Root 用户身份执行 Docker

sudo usermod -aG docker $USER

安装 Git

sudo apt update

sudo apt install -y git

安装 GitLab Runner

gitlab link:安装 GitLab Runner

添加源

curl -L "https://packages.gitlab.com/install/repositories/runner/gitlab-runner/script.deb.sh" | sudo bash

安装

最新版本

sudo apt-get install -y gitlab-runner

安装指定版本

apt-cache madison gitlab-runner

sudo apt-get install -y gitlab-runner=15.11.0

注册

sudo gitlab-runner register \

--non-interactive \

--url "https://jihulab.com" \

--registration-token "<token>" \

--executor "docker" \

--docker-image <image> \

--description "docker-runner"


到此结 DragonFangQy  2023.8.10

相关推荐
道路与代码之旅19 分钟前
Delphi - IndyHttpServer接收上传文件
运维·服务器
烦躁的大鼻嘎1 小时前
【Linux】深入Linux多线程架构与高性能编程
linux·运维·服务器·开发语言·c++·ubuntu
羚羊角uou1 小时前
【Linux】system V共享内存
linux·运维·服务器
破烂儿1 小时前
Ubuntu Server 安装图形界面和通过Window远程桌面连接服务器(Xrdp)
linux·服务器·ubuntu
存储服务专家StorageExpert2 小时前
手搓一个 DELL EMC Unity存储系统健康检查清单
linux·运维·服务器·存储维护·emc存储
小虾米vivian2 小时前
达梦:将sql通过shell脚本的方式放在后台执行
服务器·数据库·sql
代码的余温3 小时前
Web服务器VS应用服务器:核心差异解析
运维·服务器·前端
NiKo_W4 小时前
Linux 开发工具(1)
linux·运维·服务器
风_峰4 小时前
PuTTY软件访问ZYNQ板卡的Linux系统
linux·服务器·嵌入式硬件·fpga开发
会开花的二叉树4 小时前
UDP Socket 进阶:从 Echo 到字典服务器,学会 “解耦” 网络与业务
服务器·网络·udp