上一页 1 ··· 14 15 16 17 18 19 20 21 22 ··· 25 下一页
摘要: 1、安装 yum install samba samba-client samba-common -y 2、配置 备份已有配置 mv /etc/samba/smb.conf /etc/samba/smb.conf.bkp 添加新的配置 vim /etc/samba/smb.conf 输入以下内容 [ 阅读全文
posted @ 2017-02-22 09:47 思凡念真 阅读(2730) 评论(0) 推荐(0)
摘要: 1、node安装 参考:http://blog.csdn.net/haidaochen/article/details/7257655 下载,你需要在https://nodejs.org/en/download/下载最新的Nodejs版本,一般选择编译好的二进制包 配置NODE_HOME,进入pro 阅读全文
posted @ 2017-01-24 16:34 思凡念真 阅读(14691) 评论(1) 推荐(0)
摘要: def info(object,spacing=10,collapse=1): """Print methods and doc strings. Takes modules,class,list,dictionary,or string.""" methodList = [method for m 阅读全文
posted @ 2016-10-21 11:01 思凡念真 阅读(202) 评论(0) 推荐(0)
摘要: def buildConnectionString(params): """Build a connection string from a dictionary Returns string. """ return ";".join(["%s=%s" % (k, v) for k, v in pa 阅读全文
posted @ 2016-10-21 10:59 思凡念真 阅读(145) 评论(0) 推荐(0)
摘要: #!/bin/bash#author:zhongyulin#crteate-time:2016-10-20 netstat -lnpt|grep -v grep>/tmp/script/netstat_status.txtsed -i '1,2d' /tmp/script/netstat_statu 阅读全文
posted @ 2016-10-20 14:59 思凡念真 阅读(2298) 评论(0) 推荐(0)
摘要: 写法一: #!/bin/bashwhile read linedo echo $linedone < file(待读取的文件) 写法二: #!/bin/bashcat file(待读取的文件) | while read linedo echo $linedone 写法三: for line in ` 阅读全文
posted @ 2016-10-20 14:58 思凡念真 阅读(5246) 评论(0) 推荐(0)
摘要: 1.漏洞测试 在您的zabbix的地址后面加上如下url: 我的地址如下: 输出结果,如下表示漏洞存在: 2.修复方案 1).升级包链接地址[https://support.zabbix.com/browse/ZBX-11023](https://support.zabbix.com/browse/ 阅读全文
posted @ 2016-08-22 16:25 思凡念真 阅读(1707) 评论(0) 推荐(0)
摘要: 1.启动docker remote API的方式如下: 2.但是为了伴随开机启动需要修改响应的配置,修改如下: 3.验证配置 4. 通过加 -v参数来获取更详细的信息 5.查看镜像的信息 阅读全文
posted @ 2016-07-14 14:55 思凡念真 阅读(5568) 评论(0) 推荐(0)
摘要: 从容器运行一个Registry 查看yelinyuntest/static_web镜像 为镜像打Tag 把镜像推送到本地Registry中 然后可以用docker run 命令构建新容器 阅读全文
posted @ 2016-07-14 14:47 思凡念真 阅读(582) 评论(0) 推荐(0)
摘要: Docker 包括三个基本概念 镜像(Image)容器(Container)仓库(Repository)理解了这三个概念,就理解了 Docker 的整个生命周期。 Docker 镜像 Docker 镜像就是一个只读的模板。例如:一个镜像可以包含一个完整的 ubuntu 操作系统环境,里面仅安装了 A 阅读全文
posted @ 2016-07-07 16:27 思凡念真 阅读(564) 评论(0) 推荐(0)
上一页 1 ··· 14 15 16 17 18 19 20 21 22 ··· 25 下一页