随笔分类 -  CloudStack

Apache CloudStack Features
摘要:As a mature and turnkey Infrastructure-as-a-Service (IaaS) platform, Apache CloudStack has a comprehensive set of features. This is an extensive, but ... 阅读全文
posted @ 2014-09-15 22:10 heidsoft 阅读(349) 评论(0) 推荐(0) 编辑
Cloudstack动态修改CPU、内存
摘要:环境:CentOS6.4+Cloudstack4.2+xenserver 6.2动态修改Cloudstack guest 内存、CPU 准备工作:1.安装 xenserver tools工具包2.修改Cloudstack全局配置 enable.dynamic.scale.vm 为truemem.ov... 阅读全文
posted @ 2014-08-18 15:15 heidsoft 阅读(774) 评论(0) 推荐(0) 编辑
cloudstack 修改显示名称
摘要:http://192.168.153.245:8900/client/api?command=updateVirtualMachineid=922d15e1-9be0-44ac-9494-ce5afc4e1a0cdisplayname=testme 阅读全文
posted @ 2014-02-24 17:27 heidsoft 阅读(270) 评论(0) 推荐(0) 编辑
CloudStack 使用生态统计
摘要:http://shapeblue.com/ 阅读全文
posted @ 2014-01-26 15:18 heidsoft 阅读(207) 评论(0) 推荐(0) 编辑
heidsoft logo
摘要: 阅读全文
posted @ 2014-01-21 00:05 heidsoft 阅读(168) 评论(0) 推荐(0) 编辑
CloudSTack4.2 查看所有虚拟机API测试
摘要:http://192.168.153.34:8080/client/api?command=listVirtualMachines&response=json&sessionkey=FB%2B3F1syxkVJwscNPbvsxAWyKqA%3D&listAll=true&page=1&pagesize=20&_=1389944916476查看所有的虚拟机 阅读全文
posted @ 2014-01-17 17:25 heidsoft 阅读(366) 评论(0) 推荐(0) 编辑
实现业务系统中的用户权限管理--实现篇
摘要:在设计篇中,我们已经为大家阐述了有关权限管理系统的数据库设计,在本篇中,我们将重点放在其实现代码部分。为了让你能够更直接更有效的看到全部动作的代码,我们使用“动作分解列表”的方式来陈述每个动作以及相关资源。实现权限管理功能的动作动作分解动作名相关表名操作集类型(S,U,I,D,SQL)表单模组字符资源是否分页?返回提示?权限检测权限初始化安装setup无无无setupsetupok否否否显示添加管理组界面addnewgroup无无addgroupcheckuserpurview无否否是执行添加管理员动作addnewgroup_exgorupmanager、gorupmanager、mast.. 阅读全文
posted @ 2014-01-17 16:10 heidsoft 阅读(241) 评论(0) 推荐(0) 编辑
实现业务系统中的用户权限管理--设计篇
摘要:B/S系统中的权限比C/S中的更显的重要,C/S系统因为具有特殊的客户端,所以访问用户的权限检测可以通过客户端实现或通过客户端+服务器检测实现,而B/S中,浏览器是每一台计算机都已具备的,如果不建立一个完整的权限检测,那么一个“非法用户”很可能就能通过浏览器轻易访问到B/S系统中的所有功能。因此B/S业务系统都需要有一个或多个权限系统来实现访问权限检测,让经过授权的用户可以正常合法的使用已授权功能,而对那些未经授权的“非法用户”将会将他们彻底的“拒之门外”。下面就让我们一起了解一下如何设计可以满足大部分B/S系统中对用户功能权限控制的权限系统。需求陈述不同职责的人员,对于系统操作的权限应该是不 阅读全文
posted @ 2014-01-17 16:08 heidsoft 阅读(298) 评论(0) 推荐(0) 编辑
CloudStack4.2 更新全局参数
摘要:{ "updateconfigurationresponse": { "configuration": { "category": "Advanced", "name": "cpu.overprovisioning.factor", "value": "4", "description": "Used for CPU overprovisioning calculation; available CPU w 阅读全文
posted @ 2014-01-17 15:21 heidsoft 阅读(315) 评论(0) 推荐(0) 编辑
CloudStack4.2 更新全局参数API
摘要:测试更新全局参数APIhttp://192.168.153.34:8080/client/api?command=updateConfiguration&response=json&sessionkey=714hdNQXgGEKldRFagC%2FEp9l3lg%3D&name=cpu.overprovisioning.factor&value=2&_=1389938283946 阅读全文
posted @ 2014-01-17 14:02 heidsoft 阅读(190) 评论(0) 推荐(0) 编辑
CloudStack4.2 二级镜像存储测试
摘要://添加二级存储{ "addimagestoreresponse": { "imagestore": { "id": "2dda4328-57b5-4901-a5d3-2430361fc90a", "zoneid": "0589a7b6-29ea-489a-9331-7f7462bd5716", "zonename": "zone", "name": "testAdd", "url&qu 阅读全文
posted @ 2014-01-17 11:51 heidsoft 阅读(386) 评论(0) 推荐(0) 编辑
Using Eclipse With CloudStack
摘要:As part of switching toApache Mavenfor building CloudStack, the .classpath and .project files used by Eclipse were removed. This page describes how to get CloudStack loaded into an Eclipse workspace. For more details on the actual build process with maven seeHow to build CloudStackUse a Recent Eclip 阅读全文
posted @ 2014-01-16 18:09 heidsoft 阅读(431) 评论(0) 推荐(0) 编辑
CXF 与Spring整合配置
摘要:contextConfigLocation WEB-INF/beans.xml org.springframework.web.context.ContextLoaderListener org.springframework.web.util.Log4jConfigListener CXF Servlet CXFServlet org.apache.cxf.transport.servlet.CXFServlet 1 CXFServlet /rest/* ... 阅读全文
posted @ 2014-01-16 17:42 heidsoft 阅读(285) 评论(0) 推荐(0) 编辑
CloudStack采用spring加载bean(cloud-framework-spring-module模块)
摘要:CloudStackContextLoaderListener/* * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you under the Apache.. 阅读全文
posted @ 2014-01-16 17:29 heidsoft 阅读(634) 评论(0) 推荐(0) 编辑
CloudStack服务引擎配置(cloud-engine-service模块)
摘要:org.apache.cloudstack.framework 阅读全文
posted @ 2014-01-16 17:13 heidsoft 阅读(460) 评论(0) 推荐(0) 编辑
CloudStack 4.2 与CloudStack 4.1二级存储API发生变化
摘要:CloudStack 4.1查看二级存储 http://192.168.150.16:8080/client/api?command=listHosts&response=json&sessionkey=yB2SE84Z6Qgo%2FOG0uh9LEFjXduo%3D&type=SecondaryStorage&page=1&pageSize=20&listAll=true&_=13897797... 阅读全文
posted @ 2014-01-15 17:58 heidsoft 阅读(325) 评论(0) 推荐(0) 编辑
CloudStack全局参数
摘要:{ "listconfigurationsresponse": { "count": 305, "configuration": [{ "category": "Advanced", "name": "account.cleanup.interval", ... 阅读全文
posted @ 2014-01-15 16:26 heidsoft 阅读(1360) 评论(0) 推荐(0) 编辑
Cloudstack4.2之改变数据卷容量的大小(Resize Data Volumes)
摘要:下图标注了这个功能在cloudstack4.2 UI中的位置 在cloudstack中是通过磁盘服务来设定卷的大小的。管理员可以设置相应的磁盘服务以供用户来使用。为了增强系统的灵活性,方便最终用户的使用以及为那些按照磁盘容量计费的功能多一些支持,在cloudstack中应该可以动态改变这些已经创建出的数据卷的大小。 目前为止在cloudstack中支持两种方式改变数据卷的大小,第一种方式是通过... 阅读全文
posted @ 2014-01-15 11:58 heidsoft 阅读(359) 评论(0) 推荐(0) 编辑
CloudPlatform和CloudStack的关系
摘要:The Scalr team is at the CloudStack Collab Conf, and this post summarizes a few things we learned. CloudStack has undergone many name changes since Sheng and his team created it, and I’ve been confus... 阅读全文
posted @ 2014-01-14 18:29 heidsoft 阅读(280) 评论(0) 推荐(0) 编辑
CloudStack 虚拟机控制台报错
摘要:Access denied. Invalid web session or API key in request 解决此问题的方法是: 修改cloudstac.core.callback.js 使其能单点登录。 阅读全文
posted @ 2014-01-14 14:54 heidsoft 阅读(451) 评论(0) 推荐(0) 编辑




点击右上角即可分享
微信分享提示