解决无法ssh命令登录wsl问题

news2024/11/25 6:38:45

本地主机ssh登录wsl报错被拒绝访问

C:\Users\jiangcheng> ssh root@xxx.xx.xxx.xx -p 22 ssh: connect to host xxx.xx.xxx.xx port 22: Connection refused

解决步骤如下:

1,解决密码不对的问题

wsl默认用户名root的密码是随机的,需要重新修改

root@jiangcheng01:~# sudo passwd New password: Retype new password: passwd: password updated successfully

修改之后,密码可以使用了。

2、查看系统ip 使用命令 ifconfig 报错,根据提示安装 net-tools

root@jiangcheng01:~/common/remote/dev01# ifconfig Command 'ifconfig' not found, but can be installed with: apt install net-tools root@jiangcheng01:~/common/remote/dev01# apt install net-tools Reading package lists... Done Building dependency tree... Done Reading state information... Done The following NEW packages will be installed: net-tools 0 upgraded, 1 newly installed, 0 to remove and 0 not upgraded. Need to get 192 kB of archives. After this operation, 856 kB of additional disk space will be used. Get:1 http://mirrors.ustc.edu.cn/ubuntu-old-releases/ubuntu groovy/main amd64 net-tools amd64 1.60+git20180626.aebd88e-1ubuntu2 [192 kB] Fetched 192 kB in 0s (662 kB/s) Selecting previously unselected package net-tools. (Reading database ... 24148 files and directories currently installed.) Preparing to unpack .../net-tools_1.60+git20180626.aebd88e-1ubuntu2_amd64.deb ... Unpacking net-tools (1.60+git20180626.aebd88e-1ubuntu2) ... Setting up net-tools (1.60+git20180626.aebd88e-1ubuntu2) ... Processing triggers for man-db (2.10.2-1) ... root@jiangcheng01:~/common/remote/dev01# ifconfig eth0: flags=4163<UP,BROADCAST,RUNNING,MULTICAST> mtu 1500 inet xxx.xx.xxx.xxx netmask xxx.xx.xxx.xxx broadcast xxx.xx.xxx.xxx inet6 fe80::215:5dff:fe23:20ff prefixlen 64 scopeid 0x20<link> ether 00:15:5d:23:20:ff txqueuelen 1000 (Ethernet) RX packets 1585 bytes 379560 (379.5 KB) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 257 bytes 31076 (31.0 KB) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 lo: flags=73<UP,LOOPBACK,RUNNING> mtu 65536 inet 127.0.0.1 netmask 255.0.0.0 inet6 ::1 prefixlen 128 scopeid 0x10<host> loop txqueuelen 1000 (Local Loopback) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0

2,解决ssh无法连接的问题

先查看ssh服务是否启动

root@jiangcheng01:~# ps -ef|grep ssh root 836 14 0 09:52 pts/0 00:00:00 ssh -x -a -oClearAllForwardings=yes -oHostKeyAlgorithms=+ssh-dss -2 htrd@172.16.163.99 -s sftp root 837 14 0 09:52 ? 00:00:00 sshfs -oHostKeyAlgorithms=+ssh-dss htrd@172.16.163.99:/home/htrd /root/common/remote/dev01 root 987 962 0 10:39 pts/0 00:00:00 grep --color=auto ssh root@jiangcheng01:~# ssh -V OpenSSH_8.9p1 Ubuntu-3ubuntu0.1, OpenSSL 3.0.2 15 Mar 2022 root@jiangcheng01:~# service ssh start ssh: unrecognized service

3,解决 ssh:unrecognized service 问题

apt-get install openssh-server

报错如下:

root@jiangcheng01:~# apt-get install openssh-server Reading package lists... Done Building dependency tree... Done Reading state information... Done Some packages could not be installed. This may mean that you have requested an impossible situation or if you are using the unstable distribution that some required packages have not yet been created or been moved out of Incoming. The following information may help to resolve the situation: The following packages have unmet dependencies: openssh-server : Depends: openssh-client (= 1:8.3p1-1ubuntu0.1) but 1:8.9p1-3ubuntu0.1 is to be installed Depends: openssh-sftp-server but it is not going to be installed Recommends: ncurses-term but it is not going to be installed Recommends: ssh-import-id but it is not going to be installed E: Unable to correct problems, you have held broken packages.

4,解决 you have held broken packages. 问题先卸载后重新安装

a、 apt-get autoremove openssh-client openssh-server

root@jiangcheng01:~# apt-get autoremove openssh-client openssh-server Reading package lists... Done Building dependency tree... Done Reading state information... Done Package 'openssh-server' is not installed, so not removed The following packages will be REMOVED: libfuse2 liblzo2-2 libxext6 libxmuu1 openssh-client snapd squashfs-tools sshfs xauth 0 upgraded, 0 newly installed, 9 to remove and 0 not upgraded. After this operation, 107 MB disk space will be freed. Do you want to continue? [Y/n] y (Reading database ... 24197 files and directories currently installed.) Removing snapd (2.58+22.04) ... Stopping snap.ubuntu-desktop-installer.subiquity-server.service Stopping unit snap.ubuntu-desktop-installer.subiquity-server.service System has not been booted with systemd as init system (PID 1). Can't operate. Failed to connect to bus: Host is down Waiting until unit snap.ubuntu-desktop-installer.subiquity-server.service is stopped [attempt 1] System has not been booted with systemd as init system (PID 1). Can't operate. Failed to connect to bus: Host is down snap.ubuntu-desktop-installer.subiquity-server.service is stopped. Removing sshfs (3.6.0+repack+really2.10-0ubuntu1) ... Removing libfuse2:amd64 (2.9.9-3) ... Removing squashfs-tools (1:4.5-3build1) ... Removing liblzo2-2:amd64 (2.10-2build3) ... Removing xauth (1:1.1-1build2) ... Removing libxext6:amd64 (2:1.3.4-1build1) ... Removing libxmuu1:amd64 (2:1.1.3-3) ... Removing openssh-client (1:8.9p1-3ubuntu0.1) ... Processing triggers for man-db (2.10.2-1) ... Processing triggers for dbus (1.12.20-2ubuntu4.1) ... Processing triggers for libc-bin (2.35-0ubuntu3.1) ...

b、 apt-get install openssh-client openssh-server

root@jiangcheng01:~# apt-get install openssh-client openssh-server Reading package lists... Done Building dependency tree... Done Reading state information... Done The following additional packages will be installed: libssl1.1 libwrap0 libxext6 libxmuu1 ncurses-term openssh-sftp-server python3-certifi python3-chardet python3-idna python3-requests python3-urllib3 ssh-import-id xauth Suggested packages: keychain libpam-ssh monkeysphere ssh-askpass molly-guard python3-openssl python3-socks python-requests-doc The following NEW packages will be installed: libssl1.1 libwrap0 libxext6 libxmuu1 ncurses-term openssh-client openssh-server openssh-sftp-server python3-certifi python3-chardet python3-idna python3-requests python3-urllib3 ssh-import-id xauth 0 upgraded, 15 newly installed, 0 to remove and 0 not upgraded. Need to get 3214 kB of archives. After this operation, 16.5 MB of additional disk space will be used. Do you want to continue? [Y/n] y Get:1 http://mirrors.ustc.edu.cn/ubuntu-old-releases/ubuntu groovy-updates/main amd64 libssl1.1 amd64 1.1.1f-1ubuntu4.4 [1325 kB] Get:2 http://mirrors.ustc.edu.cn/ubuntu-old-releases/ubuntu groovy/main amd64 libxext6 amd64 2:1.3.4-0ubuntu1 [29.1 kB] Get:3 http://mirrors.ustc.edu.cn/ubuntu-old-releases/ubuntu groovy/main amd64 libxmuu1 amd64 2:1.1.3-0ubuntu1 [9728 B] Get:4 http://mirrors.ustc.edu.cn/ubuntu-old-releases/ubuntu groovy-security/main amd64 openssh-client amd64 1:8.3p1-1ubuntu0.1 [682 kB] Get:5 http://mirrors.ustc.edu.cn/ubuntu-old-releases/ubuntu groovy/main amd64 xauth amd64 1:1.1-0ubuntu1 [25.0 kB] Get:6 http://mirrors.ustc.edu.cn/ubuntu-old-releases/ubuntu groovy/main amd64 libwrap0 amd64 7.6.q-30 [46.3 kB] Get:7 http://mirrors.ustc.edu.cn/ubuntu-old-releases/ubuntu groovy/main amd64 ncurses-term all 6.2-1 [247 kB] Get:8 http://mirrors.ustc.edu.cn/ubuntu-old-releases/ubuntu groovy-security/main amd64 openssh-sftp-server amd64 1:8.3p1-1ubuntu0.1 [51.8 kB] Get:9 http://mirrors.ustc.edu.cn/ubuntu-old-releases/ubuntu groovy-security/main amd64 openssh-server amd64 1:8.3p1-1ubuntu0.1 [382 kB] Get:10 http://mirrors.ustc.edu.cn/ubuntu-old-releases/ubuntu groovy/main amd64 python3-certifi all 2020.4.5.1-1 [151 kB] Get:11 http://mirrors.ustc.edu.cn/ubuntu-old-releases/ubuntu groovy/main amd64 python3-chardet all 3.0.4-7 [80.2 kB] Get:12 http://mirrors.ustc.edu.cn/ubuntu-old-releases/ubuntu groovy/main amd64 python3-idna all 2.10-1 [35.2 kB] Get:13 http://mirrors.ustc.edu.cn/ubuntu-old-releases/ubuntu groovy/main amd64 python3-urllib3 all 1.25.9-1 [88.8 kB] Get:14 http://mirrors.ustc.edu.cn/ubuntu-old-releases/ubuntu groovy/main amd64 python3-requests all 2.23.0+dfsg-2 [50.9 kB] Get:15 http://mirrors.ustc.edu.cn/ubuntu-old-releases/ubuntu groovy/main amd64 ssh-import-id all 5.10-0ubuntu1 [10.0 kB] Fetched 3214 kB in 2s (2136 kB/s) Preconfiguring packages ... Selecting previously unselected package libssl1.1:amd64. (Reading database ... 24002 files and directories currently installed.) Preparing to unpack .../00-libssl1.1_1.1.1f-1ubuntu4.4_amd64.deb ... Unpacking libssl1.1:amd64 (1.1.1f-1ubuntu4.4) ... Selecting previously unselected package libxext6:amd64. Preparing to unpack .../01-libxext6_2%3a1.3.4-0ubuntu1_amd64.deb ... Unpacking libxext6:amd64 (2:1.3.4-0ubuntu1) ... Selecting previously unselected package libxmuu1:amd64. Preparing to unpack .../02-libxmuu1_2%3a1.1.3-0ubuntu1_amd64.deb ... Unpacking libxmuu1:amd64 (2:1.1.3-0ubuntu1) ... Selecting previously unselected package openssh-client. Preparing to unpack .../03-openssh-client_1%3a8.3p1-1ubuntu0.1_amd64.deb ... Unpacking openssh-client (1:8.3p1-1ubuntu0.1) ... Selecting previously unselected package xauth. Preparing to unpack .../04-xauth_1%3a1.1-0ubuntu1_amd64.deb ... Unpacking xauth (1:1.1-0ubuntu1) ... Selecting previously unselected package libwrap0:amd64. Preparing to unpack .../05-libwrap0_7.6.q-30_amd64.deb ... Unpacking libwrap0:amd64 (7.6.q-30) ... Selecting previously unselected package ncurses-term. Preparing to unpack .../06-ncurses-term_6.2-1_all.deb ... Unpacking ncurses-term (6.2-1) ... Selecting previously unselected package openssh-sftp-server. Preparing to unpack .../07-openssh-sftp-server_1%3a8.3p1-1ubuntu0.1_amd64.deb ... Unpacking openssh-sftp-server (1:8.3p1-1ubuntu0.1) ... Selecting previously unselected package openssh-server. Preparing to unpack .../08-openssh-server_1%3a8.3p1-1ubuntu0.1_amd64.deb ... Unpacking openssh-server (1:8.3p1-1ubuntu0.1) ... Selecting previously unselected package python3-certifi. Preparing to unpack .../09-python3-certifi_2020.4.5.1-1_all.deb ... Unpacking python3-certifi (2020.4.5.1-1) ... Selecting previously unselected package python3-chardet. Preparing to unpack .../10-python3-chardet_3.0.4-7_all.deb ... Unpacking python3-chardet (3.0.4-7) ... Selecting previously unselected package python3-idna. Preparing to unpack .../11-python3-idna_2.10-1_all.deb ... Unpacking python3-idna (2.10-1) ... Selecting previously unselected package python3-urllib3. Preparing to unpack .../12-python3-urllib3_1.25.9-1_all.deb ... Unpacking python3-urllib3 (1.25.9-1) ... Selecting previously unselected package python3-requests. Preparing to unpack .../13-python3-requests_2.23.0+dfsg-2_all.deb ... Unpacking python3-requests (2.23.0+dfsg-2) ... Selecting previously unselected package ssh-import-id. Preparing to unpack .../14-ssh-import-id_5.10-0ubuntu1_all.deb ... Unpacking ssh-import-id (5.10-0ubuntu1) ... Setting up libssl1.1:amd64 (1.1.1f-1ubuntu4.4) ... Setting up libxext6:amd64 (2:1.3.4-0ubuntu1) ... Setting up python3-chardet (3.0.4-7) ... Setting up libwrap0:amd64 (7.6.q-30) ... Setting up python3-certifi (2020.4.5.1-1) ... Setting up python3-idna (2.10-1) ... Setting up python3-urllib3 (1.25.9-1) ... Setting up libxmuu1:amd64 (2:1.1.3-0ubuntu1) ... Setting up ncurses-term (6.2-1) ... Setting up openssh-client (1:8.3p1-1ubuntu0.1) ... Installing new version of config file /etc/ssh/ssh_config ... Setting up python3-requests (2.23.0+dfsg-2) ... Setting up xauth (1:1.1-0ubuntu1) ... Setting up openssh-sftp-server (1:8.3p1-1ubuntu0.1) ... Setting up openssh-server (1:8.3p1-1ubuntu0.1) ... Creating config file /etc/ssh/sshd_config with new version Creating SSH2 RSA key; this may take some time ... 3072 SHA256:Nns2cut2wNaEpuJxx/D4NXlGOxIun3BJat1KCUZy+6c root@jiangcheng01 (RSA) Creating SSH2 ECDSA key; this may take some time ... 256 SHA256:QNuoQ3ZzT4RLKDI7Vf0tSbUuTzqtwhbzvC6U6E9I/qU root@jiangcheng01 (ECDSA) Creating SSH2 ED25519 key; this may take some time ... 256 SHA256:bfXoP7YzJ9XjFpSFMqZB3gkuL3Ufl6aJp8EgnVvfqc4 root@jiangcheng01 (ED25519) Created symlink /etc/systemd/system/sshd.service → /lib/systemd/system/ssh.service. Created symlink /etc/systemd/system/multi-user.target.wants/ssh.service → /lib/systemd/system/ssh.service. invoke-rc.d: could not determine current runlevel Setting up ssh-import-id (5.10-0ubuntu1) ... Attempting to convert /etc/ssh/ssh_import_id Processing triggers for ufw (0.36.1-4build1) ... Processing triggers for man-db (2.10.2-1) ... Processing triggers for libc-bin (2.35-0ubuntu3.1) ... root@jiangcheng01:~# root@jiangcheng01:~# service ssh restart * Restarting OpenBSD Secure Shell server sshd [ OK ]

5,再次验证本地ssh访问wsl2

C:\Users\jiangcheng> ssh root@xxx.xx.xxx.xx -p 22 The authenticity of host 'xxx.xx.xxx.xx (xxx.xx.xxx.xx)' can't be established. ED25519 key fingerprint is SHA256:bfXoP7YzJ9XjFpSFMqZB3gkuL3Ufl6aJp8EgnVvfqc4. This key is not known by any other names Are you sure you want to continue connecting (yes/no/[fingerprint])? yes Warning: Permanently added 'xxx.xx.xxx.xx' (ED25519) to the list of known hosts. root@xxx.xx.xxx.xx's password: Permission denied, please try again. root@xxx.xx.xxx.xx's password: Permission denied, please try again. root@xxx.xx.xxx.xx's password: root@xxx.xx.xxx.xx: Permission denied (publickey,password).

6,解决 Permission denied (publickey,password) 问题

问题解决了,可以访问,如下图所示:

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.coloradmin.cn/o/596428.html

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈,一经查实,立即删除!

相关文章

【深度学习】yolov7 pytorch模型转onnx,转ncnn模型和mnn模型使用细节

文章目录 前言1.前置1.1 安装必要的库1.2 .pt 权重转ncnn 和mnn所需要的权重 2、编码C项目1.ncnn2.mnn 总结 前言 yolov7 pytorch模型转onnx&#xff0c;转ncnn模型和mnn模型使用细节&#xff0c;记录一下 git仓库&#xff1a; yolov7 https://github.com/WongKinYiu/yolov7 n…

如何基于G6进行双树流转绘制? | 京东云技术团队

1. 背景 业务背景&#xff1a;CRM系统随着各业务条线对线索精细化分配的诉求逐渐增加&#xff0c;各个条线的流向规则会越来越复杂&#xff0c;各个条线甚至整个CRM的线索流转规则急需一种树形的可视化的图来表达。 技术背景&#xff1a;在开发之前考虑了三种方案&#xff0c;…

选什么样的软件平台开发能让办公效率得到提升?

在当今快节奏的时代中&#xff0c;办公自动化发展已成为趋势&#xff0c;采用什么样的软件平台开发能让办公效率得到大大提升&#xff1f;面对众多粉丝朋友提出的问题&#xff0c;作为低代码开发平台服务商&#xff0c;流辰信息有责任有义务与大家分享好产品。因为这是能提升办…

GPT现状终于有人讲清楚了!OpenAI大牛最新演讲爆火,还得是马斯克钦点的天才

量子位 | 公众号 QbitAI 继Windows Copilot发布后&#xff0c;微软Build大会热度又被一场演讲引爆。 前特斯拉AI总监Andrej Karpathy在演讲中认为思维树&#xff08;tree of thoughts&#xff09;与AlphaGo的蒙特卡洛树搜索&#xff08;MCTS&#xff09;有异曲同工之妙&#…

MySQL数据库 4.SQL通用语法及分类

目录 &#x1f914;SQL通用语法&#xff1a; &#x1f60a;语句&#xff1a; &#x1f60a;注释&#xff1a; &#x1f914;SQL语句分类&#xff1a; &#x1f60a;1.DDL语句&#xff1a; &#x1f60a;2.DML语句&#xff1a; &#x1f60a;3.DQL语言&#xff1a; &…

springboot+vue+element-ui在线招投标系统

本在线招投标系统管理员管理个人中心&#xff0c;投标人管理&#xff0c;招标人管理&#xff0c;评标人管理&#xff0c;招标信息管理&#xff0c;投标信息管理&#xff0c;评标信息管理&#xff0c;中标信息管理&#xff0c;系统管理。管理员负责所有的管理信息&#xff0c;招…

DAY06_Mybatis

目录 1 MyBatis1.1 快速入门1.1.1 创建user表&#xff0c;添加数据1.1.2 创建模块&#xff0c;导入坐标1.1.3 编写 MyBatis 核心配置文件1.1.4 编写 SQL 映射文件1.1.5 编码 1.2 解决SQL映射文件的警告提示1.3 Mapper代理开发1.3.1 定义与SQL映射文件同名的Mapper接口&#xff…

NFS网络文件挂载【虚拟机到开发板】

注意&#xff1a;首先要确保虚拟机和开发板之间可以互相访问&#xff0c;即配置桥接网卡&#xff0c;如果在同一个网段下但是无法ping通可能是防火墙的问题。可以查看博文解决&#xff1a;vmware虚拟机设置双网卡 注意&#xff1a;当前虚拟机版本为18.04&#xff0c;若虚拟机版…

焊接铁件的一些常识

焊接整体过程 简单来说就是通过各种方式将金属熔化后冷却结合。而焊接过程中一般会有保护气体&#xff0c;例如氩气&#xff0c;二氧化碳。就是常听到的氩弧焊和二保焊。而最常见的是药皮包裹着金属心的焊条&#xff0c;而焊条的药皮就是加热后产生了保护气。弧光是焊条和焊件…

UnaBiz与纵行科技签署战略合作协议 为海量物联共建“融合的LPWAN全球网络”

新加坡、法国、中国&#xff0c;2023年5月30日&#xff0c;UnaBiz和纵行科技签署了战略合作协议&#xff0c;致力于促进“融合的LPWAN全球网络”的发展以实现全球大规模物联网。根据协议&#xff0c;UnaBiz和纵行科技将充分利用各自的网络资源&#xff0c;其中ZETA网络覆盖中国…

走进Linux编程的大门

随着Linux的不断普及,使用Linux的人也越来越多了。然而在Linux中如何进行程序设计,用什么样的开发工具好呢?本文就以我初学Linux编程的一点心得体会,和大家共同探讨。 在Linux中进行程序设计&#xff0c;可以使用各种编程语言和开发工具&#xff0c;以下是一些常用的方法&…

eBay如何实现多账号登录以及防关联?

随着跨境电商的快速发展&#xff0c;亚马逊&#xff0c;eBay已成为人们熟知的电商平台。“不把鸡蛋放在同一个篮子里”&#xff0c;多账号运营店铺有许多显而易见的好处。 但由于亚马逊平台封号状况愈演愈烈&#xff0c;不少卖家把战线转移到了eBay平台。随着入驻人数的增加&a…

windows安装minio

官方下载地址&#xff1a; MinIO | Code and downloads to create high performance object storage 官方快速入门文档&#xff1a; MinIO Object Storage for Windows — MinIO Object Storage for Windows 概述 最近熟悉公司框架&#xff0c;有使用到MinIO,故学习并记录总…

软考A计划-网络规划设计师-核心考点解密

点击跳转专栏>Unity3D特效百例点击跳转专栏>案例项目实战源码点击跳转专栏>游戏脚本-辅助自动化点击跳转专栏>Android控件全解手册点击跳转专栏>Scratch编程案例 &#x1f449;关于作者 专注于Android/Unity和各种游戏开发技巧&#xff0c;以及各种资源分享&am…

性能测试设计阶段

性能测试设计阶段 性能测试是软件测试中的关键环节&#xff0c;它可以帮助我们评估软件系统在压力下的运行稳定性和性能表现。性能测试设计阶段是性能测试的基础&#xff0c;只有经过充分的设计&#xff0c;才能保证性能测试的有效性和准确性。 在性能测试设计阶段&#xff0c;…

C++STL之vector与list

文章目录 关于vector的用法关于List的用法vector和list的区别 关于vector的用法 #include<stdio.h> #include<iostream> #include<string.h> #include<vector> using namespace std;class PtrInt {int* ptr; public:PtrInt(int x 0) :ptr(new int[x]…

海外跨境电商商城源码-进出口电商平台网站-多语言多商户平台

欢迎探讨&#xff0c;名片交流 一、海外跨境电商系统源码包括以下几个部分&#xff1a; 前端&#xff1a;React框架、Bootstrap 后端&#xff1a;Node.js&#xff0c;Express框架、NoSQL数据库 支付系统&#xff1a;Stripe、PayPal等主流支付平台 物流系统&#xff1a;DHL…

idea 打开项目代码出错,但是编译没问题

一、说明 在使用idea的时候发现有时候编译没问题&#xff0c;代码没问题&#xff0c;但是就是项目报红&#xff1b;然后就找了一下解决方法&#xff0c;总结一下然后发一下博客给说明一下吧 二、问题和说明 1.问题 经常出现在pom的引入版本升级和版本依赖有修改 2.解决 2.…

Benewake(北醒) 单点TF系列雷达【通用指令串口助手】使用说明

目录 硬件准备1:连接设备2:串口连接以及读数 常见问题1 连接串口后无数据 硬件准备 1:连接设备 连接『TF系列产品』、『TTL - USB 转接板』和『USB 线』&#xff0c;确保无松动&#xff0c;再将『USB 线』与『电脑』连接。 2:串口连接以及读数 1.打开串口助手&#xff0c;选…

Zabbix 5.0如何升级至6.0?操作文档

Zabbix5.0升级至6.0的认证培训&#xff0c;仅需6小时&#xff08;无需5天&#xff09;点击报名。 感谢本文作者王会新&#xff0c;ZCP-Zabbix高级认证工程师 目录 1.方案说明 2.环境说明 3.Mysql环境部署 3.1 mysql安装 3.2 配置mysql 3.3 创建zabbix库 4.Zabbix Server升…