opemstack搭建后,saltstack 主机分组名变更,如何修改认证

自动化运维工具Saltstack学习笔记(一) - 软件工程 - 编程入门网
自动化运维工具Saltstack学习笔记(一)
1.Saltstack简介
Saltstack是一个具备puppet与func功能为一身的集中化,轻量级的自动化运维管理工具,使用python编写,功能非常强大,可以使用EPEL快速安装。相比较puppet,安装和配置更加容易和简单。下面是Saltstack安装和基础配置文档。(官方文档:/topics/installation/rhel.html)
2.物理环境
3.安装前准备
修改服务器的主机名和hosts,使其能相互解析和ping通,下面以saltmaster为例。
#修改主机名vim /etc/sysconfig/network
HOSTNAME=SaltMaster
#查看主机名
[root@saltmaster ~]# hostname
saltmaster
#修改/etc/hosts文件,添加如下内容
192.168.1.235 SaltMaster
192.168.1.248 WEB248
192.168.1.244 DB244
4.安装Saltstack
利用EPEL源安装saltstack。
#导入EPEL YUM源
rpm -Uvh http://mirror.pnl.gov/epel/5/i386/epel-release-5-4.noarch.rpm
#服务器master的安装
yum -y install salt-master
#客户端minon安装
yum -y install salt-minion
5.Saltstack配置
#服务器master的配置,vim /etc/salt/master添加master侦听的IP地址。
# The address of the interface to bind to
interface: 192.168.1.235
#客户端minion的配置,vim /etc/salt/minion,添加master IP地址和minion ID号。
# Set the location of the salt master server
master: 192.168.1.235
# clusters.
6.启动Saltstack服务
#saltstack master启动和设置开机自动启动
/etc/init.d/salt-master start
chkconfig salt-master on
#Saltstck minion启动和设置开机自动启动
/etc/init.d/salt-minion start
chkconfig salt-minion on
7.Saltstack master认证Minion KEY
Saltstack使用公共密钥加密来保证master和minions的安全通信。安装的时候Salt自动生成这些证书,但需要在master端验证minion的证书来确认master和minion之间是授信的。
#salt-key -L查看所有没有认证,通过认证,拒绝认证的证书。
[root@SaltMast ~]# salt-key list
Accepted Keys:
Unaccepted Keys:
Rejected Keys:
查看本栏目更多精彩内容:/Programming/project/
#证书认证用命令salt-key -a id
[root@SaltMast ~]# salt-key -a DB
The following keys are going to be accepted:
Unaccepted Keys:
Proceed? [n/Y] y
Key for minion DB accepted.
[root@SaltMast ~]# salt-key -a WEB
The following keys are going to be accepted:
Unaccepted Keys:
Proceed? [n/Y] y
Key for minion WEB accepted.
#查看认证通过的证书
[root@SaltMast ~]# salt-key list
Accepted Keys:
Unaccepted Keys:
Rejected Keys:salt批量配置hosts文件 – 运维生存时间
你可能喜欢
有回复时邮件通知我
关于本站 本站以分享运维技术为主,欢迎大家参与技术分享,同时也欢迎大家吐槽,本站提供以下交流圈:QQ群①:*****(满)QQ群②:6690706 QQ群③: QQ群④:(新) 微信公众号:ttlsacom 商务合作QQ:
记住我的登录信息
点击“立即注册”转到用户注册页面。
输入用户名或电子邮箱地址,您会收到一封新密码链接的电子邮件。
用户名或电子邮件地址用户名:shindousaijia
文章数:58
访问量:4055
注册日期:
阅读量:1297
阅读量:3317
阅读量:455676
阅读量:1140287
51CTO推荐博文
删除minion-id和pki目录cd /etc/saltrm -rf minion_id pki/修改/etc/sysconfig/network文件vim /etc/sysconfig/networkHOSTNAME=Admin2-保存退出登出系统重新进入重启salt-minion服务/etc/init.d/salt-minion restart.在master端把新的key加入进去salt-key -ya Admin2-.在master端把以前旧的key删除salt-key -yd Admin-&&& //这里假设以前的key是Admin2-如果出现minion服务端起不来的情况(在minion端用ps -ef | grep salt 来查看salt_minion服务是否起来),先查看/etc/salt/minion_id文件内容是否和minion端的hostname相符,如果不符则删除这个文件以及salt-master端和salt-minion端/etc/salt/pki目录删除,然后重启salt-minion端的salt-minion服务(用/etc/init.d/salt-minion restart命令)最后重启salt-master端的salt-master服务(用/etc/init.d/salt-master restart命令)再在minion端用ps -ef | grep salt查看服务是否起来,并在salt-master上看key是否收到(使用salt-key -L命令进行查看)本文出自 “” 博客,谢绝转载!
了这篇文章
类别:┆阅读(0)┆评论(0)2910人阅读
CloudStack(12)
默认值
account.cleanup.interval
清除用户账户所需要等待的时间(秒)
agent.lb.enabled
If agent load balancing enabled in cluster setup
true/false
agent.load.threshold
&Percentage (as a value between 0 and 1) of connected agents after which agent load balancing will start happening
小数(0~1)
alert.email.addresses
Alert发送到邮箱地址,以逗号分隔
alert.email.sender
发送Alert的邮箱地址
alert.purge.delay
Alert清理时间(秒),清理掉超过该时间的Alert
0(不清理Alert)
alert.purge.interval
Alert清理线程间隔时间(秒)
alert.smtp.connectiontimeout
Alert发送邮件smtp socket连接超时时间(毫秒)
30000(-1则不设定超时)
alert.smtp.host
Alert发送邮件SMTP主机地址
alert.smtp.password
Alert发送邮件SMTP密码,仅在alert.smpt.useAuth为true的时候需要
alert.smtp.port
Alert发送邮件SMTP服务端口
alert.smtp.timeout
Alert发送邮件smtp socket I/O超时时间(毫秒)
30000(-1则不超时)
alert.smtp.useAuth
Alert发送邮件SMTP服务是否加密
true/false
alert.smtp.username
Alert发送邮件SMTP账户,仅在alert.smtp.useAuth为true的时候有效
alert.wait
Seconds to wait before alerting on a disconnected agent
true/false
allow.public.user.templates
允许用户创建public属性的模板
true/false
allow.subdomain.network.access
允许sub domain使用parent domain的专有网络
true/false
allow.user.create.projects
允许用户创建project
true/false
api.throttling.cachesize&&&
Account based API count cache size
api.throttling.enabled&&&
Enable/Disable Api rate limit
api.throttling.interval
&Time interval (in seconds) to reset API count
api.throttling.max
Max allowed number of APIs within fixed interval
apply.allocation.algorithm.to.pods
If true, deployment planner applies the allocation heuristics at pods first in the given datacenter during VM resource allocation
backup.snapshot.wait
备份快照超时时间(秒
baremetal.ipmi.fail.retry
ipmi interface will be temporary out of order after power opertions(e.g. cycle, on), it leads following commands fail immediately. The value specifies retry times before accounting it as real failure
baremetal.ipmi.lan.interface
option specified in -I option of impitool. candidates are: open/bmc/lipmi/lan/lanplus/free/imb, see ipmitool man page for details. default valule &default& means using default option of ipmitool
default&&&
blacklisted.routes&&&
Routes that are blacklisted, can not be used for Static Routes creation for the VPC Private Gateway
capacity.check.period
检查配额时间间隔(毫秒)
capacity.skipcounting.hours
VM Stop和释放CPU内存资源之间的时间间隔(秒)
check.pod.cidrs
检查POD是否使用相同CIDR,true的话,不同的POD必须属于不同的CIDR
true/false
cloud.dns.name
为GSLB(全局负载均衡)服务提供的DNS名
cluster.cpu.allocated.capacity.disablethreshold
Cluster中CPU分配率上限,CPU分配量/CPU可用量不能超过该值
类型:小数(0~1)
cluster.cpu.allocated.capacity.notificationthreshold
Cluster中,CPU分配率报警值,CPU分配量/CPU可用量超过该值则发送Alert
类型:小数(0~1)
cluster.localStorage.capacity.notificationthreshold
Cluster中,localStorage分配率报警值,localStorage分配量/localStorage可用量超过该值则发送Alert
类型:小数(0~1)
cluster.memory.allocated.capacity.disablethreshold
Cluster中memory分配率上限,memory分配量/memory可用量不能超过该值
类型:小数(0~1)
cluster.memory.allocated.capacity.notificationthreshold
Cluster中,memory分配率报警值,memory分配量/memory可用量超过该值则发送Aler
类型:小数(0~1)
cluster.message.timeout.seconds
&Time (in seconds) to wait before a inter-management server message post times out.
cluster.storage.allocated.capacity.notificationthreshold
Cluster中,storage分配率报警值,storage分配量/storage可用量超过该值则发送Alert
类型:小数(0~1)
cluster.storage.capacity.notificationthreshold
Cluster中,storage使用率报警值,storage使用量/storage总量超过该值则发送Alert
类型:小数(0~1)
concurrent.snapshots.threshold.perhost
每台主机并发执行的Snapshot线程数
NULL(不限制)
consoleproxy.capacity.standby
Console proxy最小备用Session数,用来保证系统是否能及时提供服务
consoleproxy.capacityscan.interval
Console proxy定期检查时间间隔(秒),系统定期检查是否需要更多的Console proxy来保证最小备用量
consoleproxy.cmd.port
Console proxy和management Server通信端口
consoleproxy.disable.rpfilter
禁用Console proxy VM public IP的rp_filter
true/false
consoleproxy.launch.max
一个zone可以拥有的最大Console proxy实例数
consoleproxy.loadscan.interval
Console proxy负载检查时间间隔(毫秒)
consoleproxy.management.state&&&
console proxy service management state
consoleproxy.management.state.last
last console proxy service management state
consoleproxy.restart
Console proxy restart flag, defaulted to true
true/false
consoleproxy.service.offering
Console proxy计算服务类型
计算服务UUID
NULL(使用系统默认类型)
consoleproxy.session.max
每个Console proxy拥有的最大Session数
consoleproxy.session.timeout
Console proxy Session超时时间(毫秒)
consoleproxy.url.domain
Console proxy URL domain
domain name
<(必须可以访问到此域名)
control.cidr
用于control network通信,默认为link-local,每个POD必须唯一
169.254.0.0/16
control.gateway
control network 网关
169.254.0.1
copy.volume.wait
磁盘copy超时时间
cpu.overprovisioning.factor
CPU超配倍数,CPU可用量=CPU总量*超配倍数
1(不超配)
create.private.template.from.snapshot.wait
从快照创建模板超时时间(秒)
create.private.template.from.volume.wait
从卷创建模板超时时间(秒)
create.volume.from.snapshot.wait
从快照创建卷超时时间(秒)
custom.diskoffering.size.max
允许用户创建磁盘最大&#20540;(GB)
custom.diskoffering.size.min
允许用户创建磁盘最小&#20540;(GB)
default.page.size
list API默认一页大小
detail.batch.query.size&&&
Default entity detail batch query size for listing
开发者模式
true/false
direct.agent.load.size&&&
The number of direct agents to load each time
direct.agent.pool.size&&&
Default size for DirectAgentPool
direct.agent.scan.interval&&&
Time interval (in seconds) to run the direct agent scan task.
direct.attach.network.externalIpAllocator.enabled&&&
Direct-attach VMs using external DHCP server
true/false
direct.attach.network.externalIpAllocator.url&&&
Direct-attach VMs using external DHCP server (API url)
direct.network.no.default.route&&&
Direct Network Dhcp Server should not send a default route
true/false
direct.network.stats.interval
在Traffic Monitor采集数据间隔时间
disable.extraction
禁用模板/ISO下载
true/false
eip.use.multiple.netscalers&&&
Should be set to true, if there will be multiple NetScaler devices providing EIP service in a zone
true/false
enable.baremetal.securitygroup.agent.echo
After starting provision process, periodcially echo security agent installed in the template. Treat provisioning as success only if echo successfully
true/false
enable.dynamic.scale.vm
Enables/Diables dynamically scaling a vm
true/false
enable.ec2.api
启用EC2 API
true/false
enable.ha.storage.migration
启用HA过程中,对主存储动态迁移
true/false
enable.s3.api
启用S3 API
true/false
enable.usage.server
启用Usage Server
true/false
encode.api.response
对API请求进行URL转码
true/false
endpointe.url
Endpointe Url
&http://localhost:8080/client/api
event.purge.delay
Events older than specified number days will be purged. Set this value to 0 to never delete events
event.purge.interval
Event清理线程允许时间间隔(秒)
execute.in.mands
hyperviser执行command(StartCommand, StopCommand, CopyCommand)是否序列化,true则顺序执行,false则同时执行
true/false
execute.in.sequence.mands
执行网络节点command(DhcpEntryCommand, SavePasswordCommand, UserDataCommand, VmDataCommand)是否序列化,true则顺序执行,false则同时执行
true/false
expunge.delay
清理VM等待时间(秒),默认=expunge.interval
expunge.interval
清理VM线程允许时间间隔(秒)
expunge.workers
清理VM线程数
external.baremetal.resource.classname
class name for handling external baremetal resource
external.baremetal.system.url&&&
url of external baremetal system that CloudStack will talk to
external.firewall.default.capacity&&&
default number of networks permitted per external load firewall device
external.lb.default.capacity
default number of networks permitted per external load balancer device
external.network.stats.interval
Interval (in seconds) to report external network statistics.
extract.url.cleanup.interval&&&
The interval (in seconds) to wait before cleaning up the extract URL's
extract.url.expiration.interval&&&
The life of an extract URL after which it is deleted
guest.vlan.bits&&&
The number of bits to reserve for the VLAN identifier in the guest subnet.
HA tag,含有该tag的HOST,只能用于HA
ha.workers
healthcheck.update.interval&&&
Time Interval to fetch the LB health check states (in sec)
management Server IP(用于管理网段)
初始化DB的时候自动获取
host.capacityType.to.order.clusters
主机资源类型,用于deployment planner分配VM资源时为Cluster排序
host.reservation.release.period
主机预留资源检查时间间隔(毫秒)
host.retry
在某Host上创建卷的重试此时
host.stats.interval
Host stats获取时间间隔(毫秒)
hypervisor.list
该版本支持的Hyperviser List
KVM, XenServer, VMware, BareMetal, Ovm, LXC
KVM, XenServer, VMware, BareMetal, Ovm, LXC
incorrect.login.attempts.allowed
登陆错误尝试次数,超过则user会被禁用
instance.name
创建VM的名字后缀
integration.api.port
internallbvm.service.offering
Uuid of the service offering us if NULL - default system internal lb offering will be used
interval.baremetal.securitygroup.agent.echo&&&
Interval to echo baremetal security group agent, in seconds
investigate.retry.interval&&&
Time (in seconds) between VM pings when agent is disconnected
job.cancel.threshold.minutes
Time (in minutes) for async-jobs to be forcely cancelled if it has been in process for long
job.expire.minutes&&&
Time (in minutes) for async-jobs to be kept in system
json.content.type&&&&&
Http response content type for .js files (default is text/javascript)
text/javascript
kvm.snapshot.enabled
是否启用KVM 的VM快照功能
true/false
kvm.ssh.to.agent
是否允许Management Server以SSH方式登录KVM agent;类型:true/false
true/false
management.network.cidr
管理网段CIDR
自动获取当前host ip的cidr
max.account.cpus
一个用户所能分配的最大CPU数量
max.account.memory
一个用户所能分配的最大内存大小(MB)
max.account.networks
一个用户最多能创建的网络数量
max.account.primary.storage
一个用户所能分配的最大存储大小(GB)
max.account.public.ips
用户最多拥有的public IP数量
max.account.secondary.storage
一个用户所能分配的最大二级存储大小(GB)
max.account.snapshots
用户最多创建的Snapshot数量
max.account.templates
用户最多创建的模板数量
max.account.user.vms
用户最多创建的VM数量
max.account.volumes
用户最多创建的卷数量
max.account.vpcs
用户最多分配的VCPU数量
max.project.cpus
一个项目能分配的最大CPU数量
max.project.memory
一个项目能分配的最大内存大小(MB)
max.project.networks
一个项目能创建的最大Network数
max.project.primary.storage
一个项目能分配的最大存储大小(GB)
max.project.public.ips
一个项目能拥有的最大public ip数量
max.project.secondary.storage
一个项目能分配的最大二级存储大小(GB)
max.project.snapshots
一个project能创建的最大快照数
max.project.templates
一个project能创建的最大模板数
max.project.user.vms
一个project能创建的最大VM数
max.project.volumes
一个project能创建的最大卷数量
max.project.vpcs
一个project可以创建的最大VPC数
max.template.iso.size
最大模板/ISOsize(GB)
mem.overprovisioning.factor
内存超配倍数,内存可用量=内存总量*超配倍数
1(不超配)
midonet.apiserver.address
指定Midonet API Server(如果使用Midonet)
http://localhost:8081
midonet.providerrouter.id
使用Midonet的情况下,指定Modonet provider router的uuid
d7c5e6a3-e2f4-426b-b728-b7ce6a0448e5(未测试,此&#20540;来自DB)
migrate.retry.interval
migrate重试时间间隔(秒)
migratewait
migrate超时时间(秒)
mount.parent
二级存储在Management Server上的挂载点
Linux 路径
network.disable.rpfilter
Domain Router VM public网络禁用rp_filter
true/false
network.dns.basiczone.updates&&
This parameter can take 2 values: all (default) and pod. It defines if DHCP/DNS requests have to be send to all dhcp servers in cloudstack, or only to the one in the same pod
network.gc.interval&&&
Seconds to wait before checking for networks to shutdown
network.gc.wait
Time (in seconds) to wait before shutting down a network that's not in used
network.guest.cidr.limit
can't be less than this value
network.ipv6.search.retry.max&&&
The maximum number of retrying times to search for an available IPv6 address in the table
network.loadbalancer.basiczone.elb.enabled&&&
The maximum number of retrying times to search for an available IPv6 address in the table
true/false
network.loadbalancer.basiczone.elb.gc.interval.minutes&& &&
Garbage collection interval to destroy unused ELB vms in minutes. Minimum of 5
network.loadbalancer.basiczone.elb.network&&&
Whether the elastic load balancing service public ips are taken from the public or guest network
network.loadbalancer.basiczone.elb.vm.cpu.mhz&&&
CPU speed for the elastic load balancer vm
network.loadbalancer.basiczone.elb.vm.ram.size
Memory in MB for the elastic load balancer vm
network.loadbalancer.basiczone.elb.vm.vcpu.num
Number of VCPU& for the elastic load balancer vm
network.loadbalancer.haproxy.max.conn
LB(HAProxy)当前链接的最大数
network.loadbalancer.haproxy.stats.auth&&&
Load Balancer(haproxy) authetication string in the format username:password
admin1:AdMiN123&
network.loadbalancer.haproxy.stats.port&&&
Load Balancer(haproxy) stats port number.
network.loadbalancer.haproxy.stats.uri&& &&&&
Load Balancer(haproxy) uri.
/admin?stats
network.loadbalancer.haproxy.stats.visibility&&
Load Balancer(haproxy) stats visibilty, the value can be one of the following six parameters : global,guest-network,link-local,disabled,all,default
network.lock.timeout&&&
Lock wait timeout (seconds) while implementing network
network.securitygroups.work.cleanup.interval&&&
Time interval (seconds) in which finished work is cleaned up from the work table
network.securitygroups.work.lock.timeout&&
Lock wait timeout (seconds) while updating the security group work queue
network.securitygroups.work.per.agent.queue.size&& &&
The number of outstanding security group work items that can be queued to a host. If exceeded, work items will get dropped to conserve memory. Security Group Sync will take care of ensuring that the host gets updated eventually
network.securitygroups.workers.pool.size&&&
Number of worker threads processing the security group update work queue
network.throttling.rate&&&
Default data transfer rate in megabits per second allowed in network.
ping.interval&&
Ping interval in seconds
ping.timeout&& &&&
Multiplier to ping.interval before announcing an agent has timed out
pod.privateip.capacity.notificationthreshold
POD中私有IP分配率告警&#20540;,超过此&#20540;则发送Alert
小数(0~1)
pool.storage.allocated.capacity.disablethreshold
主存储已分配比率上限,超过此&#20540;则不能继续分配主存储
小数(0~1)
pool.storage.capacity.disablethreshold
主存储已使用比率上限,超过此&#20540;则不能继续分配主存储
小数(0~1)
Port to listen on for agent connection.
primary.storage.download.wait
在二级存储向主存储传输模板超时时间(秒);类型:整数;默认10800
project.email.sender&&&
Sender of project invitation email (will be in the From header of the email)
project.invite.required
添加一个用户到project的时候,是否发送请求
true/false
project.invite.timeout
添加用户邀请超时时间
project.smtp.host&&&
SMTP hostname used for sending out email project invitations
project.smtp.password
Password for SMTP authentication (applies only if project.smtp.useAuth is true)
project.smtp.port
Port the SMTP server is listening on
project.smtp.useAuth
If true, use SMTP authentication when sending emails
true/false
project.smtp.username
Username for SMTP authentication (applies only if project.smtp.useAuth is true)
recreate.systemvm.enabled
是否在启动系统虚拟机的时候,重建root卷
true/false
remote.access.vpn.client.iprange&& &&&&
The range of ips to be allocated to remote access vpn clients. The first ip in the range is used by the VPN server
10.1.2.1-10.1.2.8
remote.access.vpn.psk.length&&&
The length of the ipsec preshared key (minimum 8, maximum 256)
remote.access.vpn.user.limit
The maximum number of VPN users that can be created per account
resourcecount.check.interval&
Time (in seconds) to wait before retrying resource count check task. Default is 0 which is to never run the task
restart.retry.interval
VM重启超时时间(秒)
router.check.interval&&&
Interval (in seconds) to report redundant router status.
router.check.poolsize&&&
Numbers of threads using to check redundant router status.
router.cpu.mhz
vrouter默认CPU速度(MHz)
router.extra.public.nics&&
specify extra public nics used for virtual router(up to 5)
router.stats.interval&&
Interval (in seconds) to report router statistics.
router.template.hyperv
HyperV环境的vrouter模板名字
SystemVM Template (HyperV)
router.template.kvm
KVM环境的vrouter模板名字
SystemVM Template (KVM)
router.template.lxc
LXC环境的vrouter模板名字
SystemVM Template (LXC)
router.template.vmware
Vmware环境的vrouter模板
SystemVM Template (vSphere)
router.template.xen
XenServer环境的vrouter模板
SystemVM Template (XenServer)
s3.rrs.enabled
启用S3 RRS
true/false
s3.singleupload.max.size&&&
The maximum size limit for S3 single part upload API(in GB). If it is set to 0, then it means always use multi-part upload to upload object to S3. If it is set to -1, then it means always use single-part upload to upload object to S3.
sdn.ovs.controller
对L2-in-L3网络,启用Open vSwitch SDN controller
true/false
sdn.ovs.controller.default.label
对GRE endpoint使用网卡的默认Network label
Network Label
cloud-public
secstorage.allowed.internal.sites
环境中,private IP相同网段上传模板/ISO需要在此设置该网段的CIDR,以逗号分隔,0.0.0.0是非法字段
secstorage.capacity.standby&&&
The minimal number of command execution sessions that system is able to serve immediately(standby capacity)
secstorage.cmd.execution.time.max&&&
The max command execution time in minute
secstorage.encrypt.copy&&&
Use SSL method used to encrypt copy traffic between zones
true/false
secstorage.proxy
二级存储虚拟机代理
http://username:password@proxyserver:port
secstorage.service.offering
二级存储虚拟机计算服务类型
计算服务UUID
NULL(使用默认服务)
secstorage.session.max&&&
The max number of command execution sessions that a SSVM can handle
secstorage.ssl.cert.domain&& &
SSL certificate used to encrypt copy traffic between zones
secstorage.vm.mtu.size&&&
MTU size (in Byte) of storage network in secondary storage vms
security.singlesignon.key&& &&&&
A Single Sign-On key used for logging into the cloud
s3ZbaX1_Oc1scuMuT3MDsKYUIRtF1ob1e2AtTYFLjZp-NPQwJa4g_PYsQwodJxV8h5qXNnkGPaSmbUsnX7z_kQ
security.singlesignon.tolerance.millis&&&
The allowable clock difference in milliseconds between when an SSO login request is made and when it is received.
site2site.vpn.customergateway.subnets.limit&&&
The maximum number of subnets per customer gateway
site2site.vpn.vpngateway.connection.limit&&&
The maximum number of VPN connection per VPN gateway
snapshot.backup.rightafter
在Snapshot完成后,立刻进行备份
true/false
snapshot.delta.max
两次全量快照之间,最多的增量快照数
snapshot.max.daily
每天最多快照数
snapshot.max.hourly
每小时最多快照数
snapshot.max.monthly
每月最多快照数
snapshot.max.weekly
每周最多快照数
snapshot.poll.interval&&&
The time interval in seconds when the management server polls for snapshots to be scheduled.
sortkey.algorithm&&&
Sort algorithm for those who use sort key(template, disk offering, service offering, network offering), true means ascending sort while false means descending sort
true/false
start.retry
Create 和Start VM重试次数
stop.retry.interval
两次重试Stop或Destroy VM的间隔时间(秒)
storage.cache.replacement.enabled&&&
enable or disable cache storage replacement algorithm.
true/false
storage.cache.replacement.interval&&
time interval between cache replacement threads (in seconds).
storage.cache.replacement.lru.interval&&&
time interval for unused data on cache storage (in days).
storage.cleanup.enabled
启用清理存储线程
true/false
storage.cleanup.interval
清理存储线程运行时间间隔(秒)
storage.max.volume.size
volume最大size(GB)
storage.max.volume.upload.size
上传Volume最大size(GB)
storage.overprovisioning.factor
主存储超配倍数,主存储可用量=主存储总量*超配倍数
storage.pool.max.waitseconds&&&
Timeout (in seconds) to synchronize storage pool operations.
storage.stats.interval&&&
&The interval (in milliseconds) when storage stats (per host) are retrieved from agents.
storage.template.cleanup.enabled&&&
Enable/disable template cleanup activity, only take effect when overall storage cleanup is enabled
true/false
sync.interval
集群状态sync时间间隔(秒)
system.vm.auto.reserve.capacity
Indicates whether or not to automatically reserver system VM standby capacity.
true/false
system.vm.default.hypervisor
Hypervisor type used to create system vm
system.vm.random.password
系统虚拟机第一次启动时自动修改随机密码
true/false
system.vm.use.local.storage
系统虚拟机使用本地存储
true/false
task.cleanup.retry.interval
Time (in seconds) to wait before retrying cleanup of tasks if the cleanup failed previously.& 0 means to never retry.
timeout.baremetal.securitygroup.agent.echo&&&
Timeout to echo baremetal security group agent, in seconds, the provisioning process will be treated as a failure
total.retries
The number of times each command sent to a host should be retried in case of failure.
traffic.sentinel.exclude.zones&& &&&&
Traffic going into specified list of zones is not metered
traffic.sentinel.include.zones&&
Traffic going into specified list of zones is metered. For metering all traffic leave this parameter empty
EXTERNAL&&&
ucs.sync.blade.interval&&&
the interval cloudstack sync with UCS manager for available blades in case user remove blades from chassis without notifying CloudStack
update.wait&&&
Time to wait (in seconds) before alerting on a updating agent
usage.aggregation.timezone
The timezone to use for usage stats aggregation
usage.execution.timezone&&&
The timezone to use for usage job execution time
usage.sanity.check.interval
Interval (in days) to check sanity of usage data
usage.stats.job.aggregation.range&&
The range of time for aggregating the user statistics specified in minutes (e.g. 1440 for daily, 60 for hourly.
usage.stats.job.exec.time
The time at which the usage statistics aggregation job will run as an HH24:MM time, e.g. 00:30 to run at 12:30am.
use.external.dns
Bypass internal dns, use external dns1 and dns2
true/false
use.system.guest.vlans
If true, when account has dedicated guest vlan range(s), once the vlans dedicated to the account have been consumed vlans will be allocated from the system pool
true/false
use.system.public.ips&&
If true, when account has dedicated public ip range(s), once the ips dedicated to the account have been consumed ips will be acquired from the system pool
true/false
vm.allocation.algorithm
vm分配算法
'random', 'firstfit', 'userdispersing', 'userconcentratedpod_random', 'userconcentratedpod_firstfit'
vm.deployment.planner
vm部署策略
'FirstFitPlanner', 'UserDispersingPlanner', 'UserConcentratedPodPlanner'
FirstFitPlanner
vm.destroy.forcestop&&&
On destroy, force-stop takes this value
true/false
vm.disk.stats.interval
vm磁盘状态获取的时间间隔
0(不获取状态)
vm.disk.throttling.bytes_read_rate
vm磁盘读速度限制(bytes/second)
0(不限制)
vm.disk.throttling.bytes_write_rate
vm磁盘写速度限制(bytes/second)
0(不限制)
vm.disk.throttling.iops_read_rate
vm磁盘每秒读请求次数限制
0(不限制)
vm.disk.throttling.iops_write_rate
vm磁盘每秒写请求次数限制
0(不限制)
vm.instancename.flag&&&
If set to true, will set guest VM's name as it appears on the hypervisor, to its hostname
true/false
vm.network.throttling.rate&&&
Default data transfer rate in megabits per second allowed in User vm's default network.
vm.op.cancel.interval&&
Time (in seconds) to wait before cancelling a operation
vm.op.cleanup.interval&&&
Interval to run the thread that cleans up the vm operations (in seconds)
vm.op.cleanup.wait&&&
Time (in seconds) to wait before cleanuping up any vm work items
vm.op.lock.state.retry&&&
Times to retry locking the state of a VM for operations
vm.op.wait.interval&&&
Time (in seconds) to wait before checking if a previous operation has succeeded
vm.stats.interval
vm当前状态获取时间间隔(毫秒)
vm.tranisition.wait.interval&&&
Time (in seconds) to wait before taking over a VM in transition state
vm.user.dispersion.weight&&
Weight for user dispersion heuristic (as a value between 0 and 1) applied to resource allocation during vm deployment. Weight for capacity heuristic will be (1 - weight of user dispersion)
vmsnapshot.create.wait
Vmware虚拟机快照创建超时时间(秒)
vmsnapshot.max
一台Vmware虚拟机拥有的最大快照数量(虚拟机快照)
vmware.additional.vnc.portrange.size&&&
Start port number of additional VNC port range
vmware.additional.vnc.portrange.start&&&
Start port number of additional VNC port range
vmware.create.full.clone
Vmware虚拟机创建模式(full clone),如果true,则创建vm的时候,磁盘完整复制,如果false则以delta&#26684;式创建
true/false
vmware.hung.wokervm.timeout&&&
Worker VM timeout in seconds
vmware.management.portgroup&& &&&&
Specify the management network name(for ESXi hosts)
Management Network
vmware.nested.virtualization
启用Vmware嵌套虚拟化
true/false
vmware.ports.per.dvportgroup&&&
Default number of ports per Vmware dvPortGroup in VMware environment
vmware.recycle.hung.wokervm&&&
Specify whether or not to recycle hung worker VMs
true/false
vmware.reserve.cpu&&&
Specify whether or not to reserve CPU based on CPU overprovisioning factor
true/false
vmware.reserve.mem
Specify whether or not to reserve memory based on memory overprovisioning factor
true/false
vmware.root.disk.controller
Vmware环境中VM Root卷类型
vmware.service.console
Specify the service console network name(for ESX hosts)
Service Console&&&
vmware.systemvm.nic.device.type
Vmware环境中,system vm网卡类型
E1000, PCNet32, Vmxnet2, Vmxnet3
vmware.use.dvswitch
Vmware环境中,启动或禁用 Nexus/Vmware dvSwitch
true/false
vmware.use.nexus.vswitch
Vmware环境中,启动或禁用 Cisco Nexus 1000v vSwitch
true/false
vpc.cleanup.interval
The interval (in seconds) between cleanup for Inactive VPCs
vpc.max.networks
Maximum number of networks per vpc
control commands返回超时时间(秒)
Number of worker threads.
Xenserver API返回超时时间(秒)
xen.bond.storage.nics&&
Attempt to bond the two networks if found
xen.heartbeat.interval
XenServer自检间隔时间(秒)
xen.nics.max
XenServer VM 允许的最大网卡数
xen.pvdriver.version
XenServer环境中,pvdriver版本
xenserver56, xenserver61
xenserver61
xen.setup.multipath
Setup the host to do multipath
true/false
zone.directnetwork.publicip.capacity.notificationthreshold
Percentage (as a value between 0 and 1) of Direct Network Public Ip Utilization above which alerts will be sent about low number of direct network public ips.
小数(0~1)
zone.secstorage.capacity.notificationthreshold
Percentage (as a value between 0 and 1) of secondary storage utilization above which alerts will be sent about low storage available.
小数(0~1)
zone.virtualnetwork.publicip.capacity.notificationthreshold
Percentage (as a value between 0 and 1) of public IP address space utilization above which alerts will be sent.
小数(0~1)
zone.vlan.capacity.notificationthreshold&&
&Percentage (as a value between 0 and 1) of Zone Vlan utilization above which alerts will be sent about low number of Zone Vlans.
小数(0~1)
scale.retry
Number of times to retry scaling up the vm
guest.domain.suffix&& &&&&
Default domain name for vms inside virtualized networks fronted by router
cloud.internal
network.dhcp.nondefaultnetwork.setgateway.guestos&& &&&
The guest OS's name start with this fields would result in DHCP server response gateway information even when the network it's on is not default network. Names are separated by comma.
network.securitygroups.defaultadding&&
If true, the user VM would be added to the default security group by default
true/false
&&相关文章推荐
* 以上用户言论只代表其个人观点,不代表CSDN网站的观点或立场
访问:69849次
积分:1215
积分:1215
排名:千里之外
原创:48篇
转载:13篇
(3)(2)(1)(2)(1)(2)(4)(8)(1)(4)(6)(29)

我要回帖

更多关于 oneinstack 虚拟主机 的文章

 

随机推荐