wget https://nodejs.org/dist/v8.9.1/node-v8.9.1-linux-x64.tar.xz 创建一个文件夹node mkdir node 解压: tar xvf node-v8.9.1-linux-x64.tar.xz --strip-components=1 ...
分类:
Web程序 时间:
2021-01-13 10:47:17
阅读次数:
0
一、引言 最近看到一篇用js代码实现表白的文章,深有感触。 然后发现自己也可以用java代码实现,然后就开始写代码了,发现还挺有意思的,话不多说开搞 实现思路: 使用HttpClient远程获取彩虹屁生成器网站中的内容 网站:https://chp.shadiao.app/ java Mail 实现 ...
分类:
编程语言 时间:
2021-01-13 10:35:46
阅读次数:
0
1、下载 wget https://mirrors.tuna.tsinghua.edu.cn/apache/maven/maven-3/3.6.3/binaries/apache-maven-3.6.3-bin.tar.gz 也可以在浏览器去maven官网http://maven.apache.or ...
分类:
系统相关 时间:
2021-01-12 11:26:32
阅读次数:
0
yum install -y yum-utils device-mapper-persistent-data lvm2 yum-config-manager --add-repo https://download.docker.com/linux/centos/docker-ce.repo --RH ...
分类:
其他好文 时间:
2021-01-12 11:22:07
阅读次数:
0
1. Bad magic number in super-block 当尝试打开 /dev/sda3 时 找不到有效的文件系统超级块. https://blog.csdn.net/dn98201/article/details/78670278 ___________________________ ...
分类:
系统相关 时间:
2021-01-12 11:18:24
阅读次数:
0
备份原镜像 sudo mv /etc/yum.repos.d/CentOS-Base.repo /etc/yum.repos.d/CentOS-Base.repo.backup sudo mv /etc/yum.repos.d/epel.repo /etc/yum.repos.d/epel.repo ...
分类:
其他好文 时间:
2021-01-12 10:29:17
阅读次数:
0
搭建在单一服务器 基于官方文档 http://hadoop.apache.org/docs/r2.7.2/hadoop-project-dist/hadoop-common/SingleCluster.html#Pseudo-Distributed_Operation 1、配置:hadoop-env ...
分类:
其他好文 时间:
2021-01-11 11:23:14
阅读次数:
0
Linux用户组和权限管理 1、linux安全模型 1、用户 Linux中每个用户是通过UID(User Id)来标识的 ? 管理员: root, 0 ? 普通用户: 1-60000自动分配 ? 系统用户:1-499 (centos 6以前),1-999(centos 7以后) ? 对守护进程获取资 ...
分类:
系统相关 时间:
2021-01-11 11:14:53
阅读次数:
0
一、镜像操作 1)构建镜像 docker build -t REPOSITORY:TAG . 注意最后一个点[.]不能缺少,生成完:runoob/centos为REPOSITORY,6.7为TAG 2)获取镜像 sudo docker pull REPOSITORY[:TAG] 3)为镜像打个标签 ...
分类:
其他好文 时间:
2021-01-11 11:04:35
阅读次数:
0
tomcat9.0配置跨域 在web.xml添加: <filter> <filter-name>ExpiresFilter</filter-name> <filter-class>org.apache.catalina.filters.ExpiresFilter</filter-class> <in ...
分类:
其他好文 时间:
2021-01-11 11:02:02
阅读次数:
0