历经大半年的实战后,终于有时间来总结一下。第一讲主要是指环境的搭建 软件环境: 1. 安装Homebrew brew是mac上的一个软件管理工具,通过它可以在终端输入命令安装各种软件包 在终端输入:/usr/bin/ruby -e "$(curl -fsSL https://raw.githubus ...
分类:
移动开发 时间:
2019-10-26 14:58:40
阅读次数:
139
原文 https://blog.csdn.net/zhaoyanjun6/article/details/79144175 非Unix操作系统(Windows) GitLab是专为Unix操作系统开发的。 GitLab 不可 运行在Windows操作系统上,而且我们近期也没有考虑支持Windows。 ...
分类:
其他好文 时间:
2019-10-24 15:25:00
阅读次数:
82
一,自定义yum源 mkdir -p /etc/yum.repos.d/repo_bak/ mv /etc/yum.repos.d/*.repo /etc/yum.repos.d/repo_bak/ curl -o /etc/yum.repos.d/CentOS-Base.repo http://m ...
分类:
其他好文 时间:
2019-10-23 11:35:06
阅读次数:
313
使用logback.xml进行配置(位置在项目resource下): 1、xml文件整体架构: <?xml version="1.0" encoding="UTF-8"?> <configuration > <contextName></contextName> <property name="" ...
分类:
编程语言 时间:
2019-10-22 18:07:02
阅读次数:
84
kubernetes service资源 kubectl get svc kubectl exec kubia-id -- curl -s http://service_ip 双横缸代表着kubectl 命令项的结束,下面的是容器内部执行的命令 apiVersion: v1 kind: Servic ...
分类:
其他好文 时间:
2019-10-22 14:59:38
阅读次数:
111
//下载文件 $url = 'http://xxx.com/99248982.mp3'; $ch = curl_init($url); curl_setopt($ch, CURLOPT_HEADER, 0); curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); ... ...
分类:
Web程序 时间:
2019-10-22 11:16:23
阅读次数:
260
curl: (23) Failed writing body (7818 != 16384)loop: module loadeddracut-initqueue[579]: mount: wrong fs type, bad option, bad superblock on /dev/loop0 ...
分类:
Web程序 时间:
2019-10-21 16:11:24
阅读次数:
115
GitLab Runner安装 需要添加gitlab官方库: # For Debian/Ubuntu/Mint curl -L https://packages.gitlab.com/install/repositories/runner/gitlab-runner/script.deb.sh | ...
分类:
其他好文 时间:
2019-10-20 20:18:42
阅读次数:
163
apt 用于debian 系列的linux 系统,代表是ubuntu (预装好的) yum用于redhat, 系列linux, 代表是centOS wget: 通过FTP或HTTP协议抓取的文件 curl: 对应 TP, FTPS, HTTP, HTTPS, GOPHER, TELNET等协议的li ...
分类:
Web程序 时间:
2019-10-20 11:10:07
阅读次数:
110
1.Ubuntu Docker 安装 这里我用Xshell连接我的Ubuntu,在Ubuntu上操作一样 Docker 要求 Ubuntu 系统的内核版本高于 3.10 ,查看本页面的前提条件来验证你的 Ubuntu 版本是否支持 Docker。 通过 uname -r 命令查看你当前的内核版本 2 ...
分类:
其他好文 时间:
2019-10-20 01:22:52
阅读次数:
87