kylin v10+ arm64 + zabbix 6.0安装

环境:arm64

# hostnamectl
 
Static hostname: ecs-7kw0hn02xbd1m8
     Icon name: computer-vm
       Chassis: vm
    Machine ID: 3f0f3bc29f155997acf0f3a356a5531e
       Boot ID: ce9e7f873bed4f74bccc6eef37492db8
Virtualization: kvm
Operating System: Kylin Linux Advanced Server V10 (Lance)
        Kernel: Linux 4.19.90-52.42.v2207.ky10.aarch64
  Architecture: arm64

一、基础配置

1.配置yum源

# cd /etc/yum.repos.d/
# vi kylin.repo

[kylin]
name=Kylin Linux Advanced Server V10 - $basearch
baseurl=http://update.cs2c.com.cn:8080/NS/V10/V10SP2/os/adv/lic/base/$basearch/
gpgcheck=1
enabled=1
gpgkey=http://update.cs2c.com.cn:8080/NS/V10/V10SP2/os/adv/lic/RPM-GPG-KEY-kylin


# vi zabbix.repo

[zabbix]
name=Zabbix Official Repository - $basearch
baseurl=https://repo.zabbix.com/zabbix/6.0/rhel/8/$basearch
enabled=1
gpgcheck=0
gpgkey=https://repo.zabbix.com/zabbix-official-repo.key

[zabbix-non-supported]
name=Zabbix Official Repository non-supported - $basearch
baseurl=https://repo.zabbix.com/non-supported/rhel/8/$basearch
enabled=1
gpgkey=https://repo.zabbix.com/zabbix-official-repo.key
gpgcheck=0

2.安装mysql 8.0

2.1 下载docker

下载地址: https://mirrors.aliyun.com/docker-ce/linux/static/stable/aarch64/?spm=a2c6h.25603864.0.0.654c4ccaPxer04

2.2 安装docker
su - root
# tar -zxvf docker-27.4.0.tgz
docker/
docker/containerd
docker/docker-proxy
docker/dockerd
docker/docker-init
docker/runc
docker/docker
docker/ctr
docker/containerd-shim
docker/containerd-shim-runc-v2

# cp docker/* /usr/bin/
2.3配置
# vi /etc/systemd/system/docker.service

[Unit]
Description=Docker Application Container Engine
Documentation=https://docs.docker.com
After=network-online.target firewalld.service
Wants=network-online.target
[Service]
Type

你可能感兴趣的:(linux,zabbix,kylin,zabbix,arm,linux)