1、先停用CentOS7自带的防火墙 //关闭防火墙 systemctl stop firewalld.service //永久关闭防火墙 systemctl disable firewalld.service 2、安装iptables yum install -y iptables-service ...
分类:
其他好文 时间:
2021-06-02 20:03:37
阅读次数:
0
docker-compose.yaml version: "3" services: redis: image: redis:5.0.8 container_name: redis restart: always command: redis-server /etc/redis/redis.conf ...
分类:
其他好文 时间:
2021-06-02 19:51:51
阅读次数:
0
1、进入mysql官网,下载并安装mysql8的yum源 访问https://dev.mysql.com/downloads/repo/yum/ ,下载centos7对应的mysql yum源包并上传到centos7服务器 2. 安装mysql yum源包 # rpm -ivh mysql80-co ...
分类:
数据库 时间:
2021-06-02 18:58:59
阅读次数:
0
经过前六章的学习,我们对docker有了比较深入的认识 这章主要从一下几方面讲: 总体步骤: 搜索镜像 拉取镜像 查看镜像 启动镜像 停止容器 移除容器 安装tomcat: docker hub 上面查找tomcat镜像: docker search tomcat 从docker hub上拉取tom ...
分类:
其他好文 时间:
2021-06-02 18:53:15
阅读次数:
0
1. 拉取镜像 docker pull tomcat 2.查看镜像 docker images 3.Docker运行tomcat镜像首先创建挂载目录 mkdir /usr/local/gep/tomcat/ 运行tomcat镜像 docker run --name='gep_tomcat' \ -i ...
分类:
其他好文 时间:
2021-06-02 18:48:15
阅读次数:
0
https://github.com/Q24/vagrant-box-centos7-minikube vagrant init ilionx/centos7-minikube vagrant up ...
分类:
其他好文 时间:
2021-06-02 18:29:10
阅读次数:
0
###本博客非原创,来源于https://www.cnblogs.com/k98091518/p/6991614.html ### 在CentOS 6版本,时间设置有date、hwclock命令, 硬件时钟和系统时钟 (1) 硬件时钟 RTC(Real-Time Clock)或CMOS时钟,一般在主 ...
分类:
其他好文 时间:
2021-06-02 18:25:11
阅读次数:
0
发布到DockerHub 发布到阿里云镜像 ...
分类:
其他好文 时间:
2021-06-02 18:10:53
阅读次数:
0
我用ssh连上了ubuntu虚拟机, 尝试xclip命令时, 输入ls | xclip -sel c, 得到报错: Error: Can't open display: (null). 搜索后, 发现好像和X11和DISPLAY有关. 还说ssh应该打开-X选项. 可用ssh -X连接, 还是不行. ...
分类:
其他好文 时间:
2021-06-02 17:07:02
阅读次数:
0