This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div class="login-box"> | |
<h2>BBS 登录</h2> | |
<form method='post' action='/auth/ldap/callback' noValidate='noValidate'> | |
<div class="user-box"> | |
<input type='text' id='username' name='username'/> | |
<label for='username'>Username:</label> | |
</div> | |
<div class="user-box"> | |
<input type='password' id='password' name='password'/> | |
<label for='password'>Password:</label> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
链接: https://pan.baidu.com/s/1vohhazfYP2OYIBzl-D3HaA 提取码: 3hgd 复制这段内容后打开百度网盘手机App,操作更方便哦 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
bios开启虚拟化支持 | |
系统功能里面勾选hypervisor虚拟化程序 | |
开启虚拟化占用 | |
: bcdedit /set hypervisorlaunchtype auto 【或者在系统服务里面对其服务进行管理:Hyper-V 虚拟机管理服务】 | |
迅雷下载安装docker | |
: https://download.docker.com/win/stable/Docker%20for%20Windows%20Installer.exe | |
关闭占用 | |
: bcdedit /set hypervisorlaunchtype off | |
设置镜像{"registry-mirrors": ["https://registry.docker-cn.com"]} | |
测试docker运行程序【打开浏览器访问7681】 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
## 关于 | |
了解k8s [kubernets整体结构](https://www.kubernetes.org.cn/4047.html) | |
## 离线包地址 | |
使用前注意个版本的依赖 | |
搜索关键词查看:External Dependencies | |
``` | |
https://github.com/kubernetes/kubernetes/blob/master/CHANGELOG-1.11.md | |
https://github.com/kubernetes/kubernetes/blob/master/CHANGELOG-1.10.md | |
https://github.com/kubernetes/kubernetes/blob/master/CHANGELOG-1.9.md | |
https://github.com/kubernetes/kubernetes/blob/master/CHANGELOG-1.8.md |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
---- |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
**服务端安装**: | |
``` | |
yum -y install nfs-utils rpcbind | |
mkdir -p /data/nfs | |
chmod 666 /data/nfs/ | |
echo '/data/nfs 192.168.1.0/24(rw,no_root_squash,no_all_squash,sync)' > /etc/exports | |
exportfs -r | |
cat>>/etc/sysconfig/nfs<<EOF | |
RQUOTAD_PORT=30001 | |
LOCKD_TCPPORT=30002 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
查看dns服务器地址: | |
``` | |
[root@localhost ~]# kubectl exec -ti busybox -- cat /etc/resolv.conf | |
nameserver 172.18.0.250 | |
search default.svc.cluster.local svc.cluster.local cluster.local localdomain | |
options ndots:5 | |
``` | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
## web-linux | |
``` | |
docker run -itd -p 7681:7681 jingslunt/linux | |
``` | |
- use linux on web | |
> http://ip:7681/ | |
## docker使用电子书 | |
```bash |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
本地: | |
本地服务器安装docker服务,并使用国内镜像源【略】 | |
取官方镜像并启动 | |
docker run -it golang | |
进入镜像更新apt | |
apt-get update | |
安装 mysql及部署你的代码 | |
如果异常退出使用以下命令进入 | |
docker exec -it 容器id /bin/bash |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[在线文档一](https://docs.qq.com/doc/BqI21X2yZIht160ylF4ykVIo3tqew10YxTb51sV5ji3JWde20?opendocxfrom=admin) | |
[在线文档二](https://github.com/ameizi/ELK/issues/2) | |
``` | |
https://github.com/ameizi/ELK/issues/2 | |
``` | |
使用docker一键部署 | |
``` |
NewerOlder