摘要:
systemctl start httpd.service 这会启动httpd服务,就我们而言,Apache HTTP服务器。 要停掉它,需要以root身份使用该命令: systemctl stop httpd.service 要重启,你可以使用restart选项,如果服务在运行中,它将重启服务;如 阅读全文
摘要:
停止服务 停止docker0网卡 Ip link set dev docker0 down 删除docker0 Brctl delbr docker0 进入到网卡的配置文件创建桥接网络br0 Brctl addbr br0 设置为启动状态 Ip link set dev br0 up 给br0配置i 阅读全文
摘要:
```
[root@localhost ~]# docker run \
> --name='gitlab' \
> -itd \
> --link gitlab_mysql:mysql \
> --link gitlab_redis:redisio \
> -e 'GITLAB_PORT=80' \
> -e 'GITLAB_SSH_PORT=22' \
> -p 1... 阅读全文
摘要:
1.初始状态网卡 2.首先,先编辑网卡的配置文件 vi /etc/sysconfig/network scripts/ifcfg eno16777736 将里面的NAME项修改为eth0 3.然后,禁用该可预测命名规则。对于这一点,你可以在启动时传递“net.ifnames=0 biosdevnam 阅读全文
摘要:
查看网络设置 主机名: hostname 网关: route n DNS: cat /etc/resolv.conf IP: ifconfig 激活网卡 ifup eth0 或 ifconfig eth0 up 禁用网卡 ifdown eth0 或 ifconfig eth0 down 利用命令临时 阅读全文