设置核心行为在启动时填充caches
如果你想让你的shark在启动时将process和resource填充到cache中,你应该编辑下面的配置项:
#Cache.InitProcessCacheString=*
#Cache.InitResourceCacheString=*
如果你不注释这些行,所有的进程和资源将被在数据库数据中创建,并且将这些信息添加到cache中。(实际上,这个数量在cachez中是受限制的)
这个属性的值能够被设置成用逗点间隔的进程/资源ID列表,当引擎启动时,这个列表中的资源将被放进cache中。例如:
Cache.InitProcessCacheString=1_test_js_basic, 5_test_js_Game
设置再评估最后期限限制核心行为
如果你不想让你的shark每次都是用外部最后期限管理器检察最后期限,再评估最后期限,你应该设置下面的属性为false(默认值为true)
#Deadlines.reevaluateDeadlines=true
设置外部仓库文件夹
你可以设置仓库的位置,使得shark能够找到XPDL文件,通过改变一下的设置,能够使这些XPDL装载到shark的内存中:
######################## EXTERNAL REPOSITORY FOLDER SETTING
# Shark currently uses File system repository for holding XPDL definitions, and
# this is where you can specify location of this repository.
# If you want to specify it by relative path, you must know that this path must
# be relative to the Shark.conf file (in conf folder)
EXTERNAL_PACKAGES_REPOSITORY=repository/external
警告:在UNIX操作系统下,应用程序需要有些如这个文件夹的权限许可。
通过设置这个属性,你能够决定shark的仓库放在什么位置。
外部仓库能够被客户端admin应用管理,XPDL文件能够从这个仓库中添加和删除。只用那些被放置到仓库中的XPDL文件能够被引擎加载,并且使用在实例进程中。
设置浏览LDAP SERVER属性
如果你正在使用LDAP SERVER来存放你的组织结构,你能够配置shark让他使用我们自己的UserGroup和Authentication接口的LDAP实现。然后你必须定义一些LDAP属性。
同时UserGroup 和 Authentication接口的shark实现中,提供了两个LDAP结构的类型。第一个结构被打上标记为类型0,第二个为类型1。LDAP结构在shark的LDAP结构文档中被仔细地讲解。
你可以通过一下代码来设置shark的LDAP属性:
######################### LDAP SETTINGS
# Shark can use LDAP implementation of Authentication and UserGroup interfaces,
# and these are settings required by these implementations to access and
# browse the LDAP server
LDAPHost=localhost
LDAPPort=389
# possible values for LDAPStructureType parameter are 0 and 1
# 0 is simple structure, the possibility that one group or user belongs to more
# than one group is not supported
# 1 is more complex structure that supports the possibility that one group or
# user belongs to more than one group is not supported
LDAPStructureType=1
LDAPSearchBase=
LDAPGroupObjectClasses=organizationalUnit
LDAPUserObjectClasses=inetOrgPerson
# parameter LDAPRelationObjectClasses is only needed for LDAPStructureType=1
LDAPRelationObjectClasses=groupOfNames
LDAPGroupUniqueAttributeName=ou
LDAPGroupDescriptionAttributeName=description
LDAPUserUniqueAttributeName=userid
# parameter LDAPRelationUniqueAttributeName is only needed for LDAPStructureType=1
LDAPRelationUniqueAttributeName=cn
# parameter LDAPRelationMemberAttributeName is only needed for LDAPStructureType=1
LDAPRelationMemberAttributeName=member
LDAPUserPasswordAttributeName=userpassword
LDAPUserRealNameAttributeName=cn
LDAPUserFirstNameAttributeName=givenName
LDAPUserLastNameAttributeName=sn
LDAPUserEmailAttributeName=mail
LDAPUser=sasaboy
LDAPPassword=s
# parameter LDAPGroupGroupsName is only needed for LDAPStructureType=1
LDAPGroupGroupsName=Groups
# parameter LDAPGroupUsersName is only needed for LDAPStructureType=1
LDAPGroupUsersName=Users
# parameter LDAPGroupGroupRelationsName is only needed for LDAPStructureType=1
LDAPGroupGroupRelationsName=GroupRelations
# parameter LDAPGroupUserRelationsName is only needed for LDAPStructureType=1
LDAPGroupUserRelationsName=UserRelations
lLDAPHost:正在运行的LDAP服务器的地址
lLDAPPort: 通过这个端口能够存取LDAP服务器
lLDAPStructureType:如果设置为0,则一个简单的结构被使用,这个结构将不支持一个组或者一个用户属于多个组。如果设置为1,则一个复杂的结构被使用这个结构将支持一个组或者一个用户属于多个组的情况。
lLDAPSearchBase:上下文或者对象要查找的名称(这是LDAP的根节点,所有的查询操作都从这里开始)。
lLDAPGroupObjectClasses:逗点分开的LDAP对象类列表。依次来表现用户的组。
lLDAPUserObjectClasses: 逗点分开的LDAP对象类列表依次来表现组中的用户
lLDAPRelationObjectClasses:只能够在结构类型1中使用,用逗点分开的LDAP对象类列表,表现为shark用户与组之间的关系,或者shark组和组之间的关系。这一点很重要,这个类必须要有一个强制的属性,这个属性的值在LDAP树上的任何一个实体中必须是唯一的。
lLDAPGroupUniqueAttributeName:强制性的LDAP对象类属性名称,描述了用户的组,在LDAP树上的任何一个LDAP对象中,这个属性的值必须是unique的。
lLDAPGroupDescriptionAttributeName:一个LDAP对象类属性名称,描述了组和用户中对组的描述
lLDAPUserUniqueAttributeName:一个强制的LDAP对象类属性名称,描述了