1、安装环境 此处在Centos7进行安装,可以使用以下命令查看CentOS版本 lsb_release -a 在 CentOS 7安装docker要求系统为64位、系统内核版本为 3.10 以上,可以使用以下命令查看 uname -r 2、用yum源安装 2.1 查看是否已安装docker列表 y ...
分类:
其他好文 时间:
2020-06-21 11:30:28
阅读次数:
46
一、查看Centos版本号: 命令:cat /etc/centos-release 二、查看Centos内核: 命令:uname -r 三、查看Centos系统位数: 命令:getconf LONG_BIT ...
分类:
系统相关 时间:
2020-06-21 11:24:33
阅读次数:
148
一、操作系统环境 可通过以下命令来查看操作系统的具体版本,本例中采用的是CentOS 7.6。一般来说,CentOS中默认已经安装有python2.x,因为有一些系统命令可能会需要用到python2,所以不能卸载。我们只需再安装python3.x即可。 # cat /etc/redhat-relea ...
分类:
编程语言 时间:
2020-06-21 09:58:19
阅读次数:
63
下面跟着我一起花三分钟搭建一个超实用的文件服务器 – MinIO 一、下载安装中文官网地址: https://docs.min.io/cn/1下载地址: GNU/Linux https://dl.min.io/server/minio/release/linux-amd64/minio1Window ...
分类:
编程语言 时间:
2020-06-21 00:35:44
阅读次数:
90
Java 中的 Semaphore 是一种新的同步类,它是一个计数信号。从概念上讲,从 概念上讲,信号量维护了一个许可集合。如有必要,在许可可用前会阻塞每一个 acquire(),然后再获取该许可。每个 release()添加一个许可,从而可能释放一个 正在阻塞的获取者。但是,不使用实际的许可对象, ...
分类:
编程语言 时间:
2020-06-20 19:21:10
阅读次数:
68
安装 更新系统 sudo yum update 下载mysql 8.0的repo sudo wget https://dev.mysql.com/get/mysql80-community-release-el7-3.noarch.rpm 预处理刚下载的repo sudo rpm -Uvh mysq ...
分类:
数据库 时间:
2020-06-20 13:22:52
阅读次数:
58
yum安装epel-release后yum安装软件报错 Cannot retrieve metalink for repository: epel/x86_64. Please verify its path and try again 原因是epel仓库默认使用https 解决方法: 改epel文 ...
分类:
Web程序 时间:
2020-06-19 21:13:42
阅读次数:
58
由于spingcloud 版本更新比较快,此处重新整理一版: 版本: Java 8 spring boot <version> 2.1.15.RELEASE </version> <spring-cloud.version>Greenwich.SR6</spring-cloud.version> 1 ...
分类:
其他好文 时间:
2020-06-19 19:19:32
阅读次数:
59
https://liuzhichao.com/2016/jadx-decompiler.html 在jadx出现之前,我一般是使用apktool和dex2jar这两个Android反编译工具。这两个工具也有不同的侧重点,如果只是想拿到apk里的一些图片或其他资源或是查看一下布局的layout文件,直 ...
分类:
移动开发 时间:
2020-06-19 15:54:58
阅读次数:
466
springBoot整合JPA JPA官网: https://docs.spring.io/spring-data/jpa/docs/2.3.1.RELEASE/reference/html/#jpa.repositories maven 依赖: <!--spring-data-jpa--> <de ...
分类:
编程语言 时间:
2020-06-19 14:06:15
阅读次数:
67