问题:zun不能创建docker容器,报错:datastore for scope "global" is not initialized 解决:修改docker 服务配置文件: [root@node-172-19-15-230 ~]# cat /usr/lib/systemd/system/doc ...
分类:
其他好文 时间:
2018-05-28 13:43:30
阅读次数:
368
豆子最近升级了一下Nimble的存储系统,创建了一个新的LUN,通过ISCSI添加新的datastore,然后在ESXi6.5上面执行了一个StorageVmotion的操作。整个过程都很顺畅,大概迁徙了10T的数据到这个新的LUN上。然后问题出现了。VSphereVCenter上显示原先的Datastore已经清空了,但是在我的LUN上,仍然显示占据了6.6T的存储空间!在ESXI6里面,这个问
分类:
其他好文 时间:
2018-04-24 11:08:07
阅读次数:
474
代码: public UpdateResults updateProductByChannel(String channelId, String channelName){ Query<PixelProductModel> query = datastore.createQuery(PixelPro ...
分类:
数据库 时间:
2018-04-02 20:05:30
阅读次数:
183
大早上我的一个墨尔本的同事就在折腾虚拟机,他试图把一个5T的虚拟机的磁盘文件扩建到10T,这个本来是个很容易的事情,但是他试图把datastore上的所有剩余空间都分配进去,然后造成的结果就是没法开机了!错误提示很明显,空间不足,没法创建swap文件。看看剩余空间,还剩11g比较尴尬的是这个datastore对应的LUN是在Nimble上面创建的,这个LUN上还开启了dedup和compress的
分类:
系统相关 时间:
2018-03-16 10:31:30
阅读次数:
1405
Part1. Introduction to DataCleaner 介绍DataCleaner |--What is data quality(DQ) 数据质量? |--What is data profiling? 数据分析? |--What is datastore? 数据存储? Compos ...
分类:
其他好文 时间:
2018-03-07 01:01:15
阅读次数:
274
最近需要用命令行操作VMWare,现将一些经常用的命令记录一下。安装VMWare命令很简单,不再像原来需要单独下载PowerCLI安装包,直接在Powershell Gallery里在线安装即可。 # 连接 Connect-VIServer -Server prod-corp-vc # 克隆虚拟机 ...
分类:
其他好文 时间:
2018-01-22 19:19:01
阅读次数:
202
字典的实现 // 字典类 function Dictionary () { this.add = add; this.dataStore = new Array(); this.find = find; this.remove = remove; this.showAll = showAll; th ...
分类:
编程语言 时间:
2018-01-21 01:11:41
阅读次数:
164
队列的实现 // 队列类 function Deque () { this.dataStore = []; this.enqueueFront = enqueueFront; this.enqueueBack = enqueueBack; this.dequeueFront = dequeueFro ...
分类:
编程语言 时间:
2018-01-21 01:11:17
阅读次数:
176
function Set() { this.dataStore = []; }; Set.prototype = { constructor: Set, add: function (data) { if (this.dataStore.indexOf(data) -1) { this.dataSt... ...
分类:
Web程序 时间:
2017-11-08 19:53:45
阅读次数:
162
function Dictionary() { this.datastore = new Array(); }; Dictionary.prototype = { constructor: Dictionary, add: function(key, value) { this.datastore[... ...
分类:
Web程序 时间:
2017-11-08 13:08:31
阅读次数:
176