问题背景:在git bash中使用hexo g -d命令进行文章发布 详细错误信息: 错误原因是因为ssh key有问题,连接不上服务器。 于是我参考如下链接,一步一步操作,最终解决了这个问题:git遇到的问题之“Please make sure you have the correct acces ...
分类:
其他好文 时间:
2019-06-30 22:02:11
阅读次数:
1973
Docker 安装 Python 方法一、docker pull python:3.5 查找 Docker Hub 上的 python 镜像: 这里我们拉取官方的镜像,标签为3.5 : 等待下载完成后,我们就可以在本地镜像列表里查到 REPOSITORY 为 python ,标签为3.5的镜像: 方 ...
分类:
编程语言 时间:
2019-06-30 18:55:04
阅读次数:
95
Docker 安装 Redis 方法一、docker pull redis:3.2 查找 Docker Hub上的 redis 镜像: 这里我们拉取官方的镜像,标签为3.2: 等待下载完成后,我们就可以在本地镜像列表里查到 REPOSITORY 为 redis,标签为3.2的镜像: 方法二、通过 D ...
分类:
其他好文 时间:
2019-06-30 18:53:20
阅读次数:
94
Docker 安装 MongoDB 方法一、docker pull mongo 查找 Docker Hub 上的 mongo 镜像: 这里我们拉取官方的镜像 mongo:3.2: 等待下载完成后,我们就可以在本地镜像列表里查到 REPOSITORY 为 mongo,标签为 3.2 的镜像: 方法二、 ...
分类:
数据库 时间:
2019-06-30 10:04:55
阅读次数:
126
Docker 安装 Tomcat 方法一、docker pull tomcat 查找 Docker Hub 上的 tomcat 镜像: 这里我们拉取官方最新版本的 tomcat 镜像: 等待下载完成后,我们就可以在本地镜像列表里查到 REPOSITORY 为 tomcat 的镜像: 方法二、通过 D ...
分类:
其他好文 时间:
2019-06-30 09:58:51
阅读次数:
89
Docker 安装 MySQL 方法一、docker pull mysql 查找 Docker Hub 上的 mysql 镜像: 这里我们拉取官方的镜像,标签为 5.6: 等待下载完成后,我们就可以在本地镜像列表里查到REPOSITORY为mysql,标签为5.6的镜像: 方法二、通过 Docker ...
分类:
数据库 时间:
2019-06-30 09:38:31
阅读次数:
142
You have defined query method in the repository but you don‘t have any query lookup strategy defined. The infrastructure apparently does not support query methods!
分类:
其他好文 时间:
2019-06-29 23:44:29
阅读次数:
125
python升级 系统自带的Python2.7和3.5不要删除,系统可能依赖 安装3.6 sudo apt-get install software-properties-common sudo add-apt-repository ppa:jonathonf/python-3.6 sudo apt... ...
分类:
编程语言 时间:
2019-06-29 17:42:46
阅读次数:
115
在Ubuntu上安装docker,配置仓储库时第一次使用了阿里去的镜像,如下 ?1sudo add apt repository "deb [arch=amd64] http://mirrors.aliyun.com/docker ce/linux/ubuntu $(lsb_release cs) ...
分类:
其他好文 时间:
2019-06-29 14:55:21
阅读次数:
383
docker pull nginx 命令安装 查找 Docker Hub 上的 nginx 镜像: 这里我们拉取官方的镜像 等待下载完成后,我们就可以在本地镜像列表里查到 REPOSITORY 为 nginx 的镜像 以下命令使用 Nginx 默认的配置,来启动一个 Nginx 容器实例 nginx ...
分类:
其他好文 时间:
2019-06-29 09:23:18
阅读次数:
108