-bash: ping: command not found 错误解决方法

Ubuntu 安装
sudo apt-get update
sudo apt-get install inetutils-ping -y


CentOS 安装
yum install iputils -y

查看本机ip

ip a
ifconfig -a

网络工具

yum install net-tools
apt-get install net-tools

#查看对外服务的网络端口
netstat -tlpn

#查看所有服务和运行状态
netstat -anp

#查看pid信息
systemctl status 22212

ps -aux | grep name #查看进程信息

find / -name 进程name #查找进程所在位置

ping容器

    image: alpine
    command:
      - "ping"
      - "www.baidu.com"