1、卸载旧版本 旧版本的docker叫做docker或者docker-engine。现在docker engine包叫做:docker-ce。调用下面的方法卸载旧版本docker: [java@localhost ~]$ sudo yum remove docker \ > docker-clien ...
分类:
其他好文 时间:
2021-02-01 11:47:13
阅读次数:
0
1、开启防火墙 systemctl start firewalld 2、开放指定端口 `` firewall-cmd --zone=public --add-port=1935/tcp --permanent `` 命令含义: --zone #作用域 --add-port=1935/tcp #添加端 ...
分类:
系统相关 时间:
2021-02-01 11:42:08
阅读次数:
0
systemctl start docker 启动 docker images #查看本地镜像 docker images -a #查看所有的镜像 docker images php #查看仓库名为php的镜像 docker rmi -f 镜像ID #强制删除镜像 docker rmi -f 镜像名 ...
分类:
其他好文 时间:
2021-01-22 12:18:14
阅读次数:
0
原文链接:https://www.jianshu.com/p/b9fab528dd6b 1、安装openssh-server sudo apt-get install openssh-server 2、开机自动启动ssh命令 sudo systemctl enable ssh 3、关闭ssh开机自动 ...
分类:
系统相关 时间:
2021-01-21 10:31:03
阅读次数:
0
原文链接 在多个 PHP 版本之间切换要查看 PHP 的默认安装版本,请运行:$ php -vPHP 7.2.7-0ubuntu0.18.04.2 (cli) (built: Jul 4 2018 16:55:24) ( NTS )Copyright (c) 1997-2018 The PHP Gr ...
分类:
Web程序 时间:
2021-01-20 12:16:01
阅读次数:
0
1.环境如下 主机名 IP 角色 2.部署前准备 1.环境准备,所有节点分别配置。 关闭防火墙: $ systemctl stop firewalld $ systemctl disable firewalld 关闭 selinux: $ sed -i 's/enforcing/disabled/' ...
分类:
其他好文 时间:
2021-01-20 12:03:09
阅读次数:
0
1.先将MySQL停止、 命令:systemctl stop mysqld #停掉MySQL 命令:systemctl status mysqld #查看状态 2.然后跳过授权表启动MySQL服务程序 这一步主要利用mysqld的 --skip-grant-tables选项 修改my.cnf配置,添 ...
分类:
数据库 时间:
2021-01-18 11:38:24
阅读次数:
0
ssh远程管理服务 1.1 ssh介绍 ssh远程管理服务 默认linux是安装了的,如果没有安装执行以下命令。 [root@linux-server ~]# yum install -y openssh* [root@linux-server ~]# systemctl start sshd op ...
分类:
其他好文 时间:
2021-01-18 11:03:05
阅读次数:
0
在centos6中的开机默认开机状态保存在/etc/inittab文件中,那centos7中会不会发生变化呢,我们不妨同样地查看centos7中的/etc/inittab文件: 1. systemctl get-default 2. systemctl set-default multi-user. ...
分类:
其他好文 时间:
2021-01-14 10:32:26
阅读次数:
0
edit config && add Port 2222 vi /etc/ssh/sshd_config 重启ssh服务 systemctl restart sshd.service 查看端口 sudo netstat -atlunp | grep sshd ...
分类:
系统相关 时间:
2021-01-13 10:51:14
阅读次数:
0