查看: 2521|回复: 4
注册时间最后登录阅读权限10积分280精华0帖子
中级会员, 积分 280, 距离下一级还需 220 积分
本帖最后由 anglegz 于
14:07 编辑
用js生成的grid,可以正常显示表格,但出现两个问题:
1、表格的斑马纹和drawcell事件控制的某列背景无法显示,在表标题行拉动某列后(移动),格式才可以显示。
2、动态改变data后,调用reload事件也无法显示,移动列后就可以显示。
请问是什么原因?
我是设置好grid的参数(set),drawcell事件后,执行load,然后再render显示表格的,先render再load结果也是一样。
注册时间最后登录阅读权限200积分7601精华0帖子
你把示例代码贴一下。
注册时间最后登录阅读权限10积分280精华0帖子
中级会员, 积分 280, 距离下一级还需 220 积分
本帖最后由 anglegz 于
09:15 编辑
function createGoodsList(intID, arrGoods) {
var arrColumn = [
{&field&: &strGoodsCodeColorName&, &header&: lang_label_strGoodsCodeColorName, &align&: &left&, &headerAlign&: ¢er&, &allowSort&: true, &width&: 135},
{&field&: &strGoodsName&, &header&: lang_label_strGoodsName, &headerAlign&: ¢er&, &allowSort&: true, &width&: 90},
{&field&: &strSex&, &header&: lang_label_strSex, &headerAlign&: ¢er&, &allowSort&: true, &width&: 40},
{&field&: &strGoodsTitle&, &header&: lang_label_strGoodsTitle, &headerAlign&: ¢er&, &width&: 110},
{&field&: &flotPrice&, &header&: lang_label_flotPrice, &headerAlign&: ¢er&, &allowSort&: true, &width&: 60},
{&field&: &intQty&, &header&: lang_label_intInputQty, &headerAlign&: ¢er&, &width&: 50, &editor&: {&type&: &spinner&, &maxValue&: &100&, &style&: &width:100%&}},
{&field&: &intOrderQty&, &header&: lang_label_intOrderQty, &headerAlign&: ¢er&, &allowSort&: true, &width&: 50}
];
for(k = 1; k &= intSizeMaxC k++) {
arrColumn.push( { &field&: &S& + k, &header&: &S& + k, &headerAlign&: ¢er&, &width&: 35 } );
}
var arrConfig = {
'id': 'goodsGrid' + intID,
'columns': arrColumn,
'pageSize': 20,
'width': '100%',
'height': '100%',
'allowCellEdit': true,
'allowCellSelect': true,
'fitColumns': false,
'showPageSize': false,
&data&: arrGoods.data,
&totalCount&: arrGoods.total,
&onselectionchanged&: &selectGoods&,
&allowAlternating&: true
};
var objTabs = mini.get('goodslist');
var objGrid = new mini.DataGrid();
objGrid.set(arrConfig);
objGrid.on(&drawcell&, function (e) {
var record = e.record,
column = e.column,
field = e.field,
value = e.
if(field == 'intQty') {
e.cellStyle = 'background:#D5FFD5';
}
if(field == 'intOrderQty') {
if(record.msg) {
e.cellStyle = 'color:#FF0000;';
}
}
});
objGrid.pager.on('pagechanged', function(e) {
alert(e.pageIndex);
});
objGrid.load();
objGrid.render(objTabs.getTabBodyEl('cate_' + intID));
$(arrGoods.data).each( function(i, n) {
arrGoodsPic[n.strGoodsCode + n.strColorCode] = n.arrP
});
}复制代码这里是生成表格的代码,请帮忙看看哪里有问题。生成出来后,表格没渲染好背景。
表格只有在移动列以后,才会正常渲染好,改变列宽都不行。
注册时间最后登录阅读权限200积分7601精华0帖子
1.提供的代码无法直接运行
2.代码太乱
3.代码使用有问题,你不应该使用内部对象控件。比如:objGrid.pager.on('pagechanged', function(e) {
alert(e.pageIndex);
});复制代码4.你通过静态赋值数据,就不要使用load方法继续加载远程数据。
5.我提供一个简单的创建表格、静态数据赋值的示例代码:& & var grid = new mini.DataGrid();
& & grid.set({& && &
& && &&&style: &width:700height:280&,
& && &&&valueField: &id&,
& && &&&showFooter: false,
& && &&&columns: [
& && && && &{ type: &indexcolumn& },
& && && && &{ field: &loginname&, header: &帐号&, width: 120, headerAlign: ¢er&, allowSort: true },
& && && && &{ field: &name&, header: &姓名&, width: 120, headerAlign: ¢er&, allowSort: true }
& && &&&]
& & });
& & grid.render(document.body);
& & //静态数据
& & var data = [
& && &&&{ loginname: &&, name: &张三& },
& && &&&{ loginname: &&, name: &李四& }
& & ];
& & grid.setData(data);复制代码
注册时间最后登录阅读权限10积分280精华0帖子
中级会员, 积分 280, 距离下一级还需 220 积分
搞掂了,要用setData来设置grid的数据就可以了。数据改变后,重新setData就可以了。原来是我的用法有问题,呵呵。谢谢管理员!
Powered by请问grid问题 - VFP当前位置:& &&&请问grid问题请问grid问题&&网友分享于:&&浏览:9次请教grid有关问题我做了一个小程序,碰到了几个问题,请高手指点:1、在表单的init中初始代码如下:Flag=This.CaptionSelect tab_drugSelect 药品名称,药品类别,生产厂家,最高零售价,剂型,单位,药品编号 From tab_drug Into Cursor Temp_DrugThisform.Grid1.RecordSource=&Temp_Drug&& 运行本表单,可以显示,但从主页进入到本页时,却没显示。为什么?2、我在这个表单中做了一个查询功能,在Text中的interactivechange的代码如下:If !Used(&tab_drug&) Use Database\tab_drugElse Select tab_drugEndifMyValue=&'%&+Alltrim(This.Value)+&%'&Select 药品名称,药品类别,生产厂家,最高零售价,剂型,单位,药品编号 Where
药品名称 Like &MyValue.From tab_drug Into Cursor Temp_DrugGo TopThisform.Grid1.RecordSource=&Temp_Drug&& 但是查询后显示的表格中每个字段宽度跟原来的不一样?3、做了一个Grid的点击链接到下一页的AfterRowColChange事件LPARAMETERS nColIndexP_YPNO=tab_drug.药品编号Thisform.Release
&&释放表单Do Form Form\药品信息详细介绍上面这样写不知对不对?但是我点击Grid旁边的滚动条时,也会触发事件。问题多多,不好意思,望高手能耐心指教。谢谢!!------解决方案--------------------
1、看来与主页有关,或者与表单模式有关。就目前描述,找不到原因。3、是写到 Grid 每列的 Text1 的 Click 事件中。
12345678910
12345678910
12345678910 上一篇:下一篇:文章评论相关解决方案 12345678910 Copyright & &&版权所有现在位置:
升级打补丁是系统管理员重要的工作内容。 Grid Infrastructure是目前比较复杂的集群管理中间件,当出现各种奇怪问题的时候,寻求官方服务支持(MOS)和打补丁是最常见的做法。
同简单单实例文件系统数据库database补丁有所不同的是,GI(Grid Infrastructure)打补丁过程要涉及到其上ASM、Listener和Database Instance的各种关系。同时,一些关键骨架后台进程,如ohasd等还需要root权限的参与。
本篇笔者主要针对两种OPatch补丁策略,演示常见的两种给GI打补丁的方法,即Apply和Auto策略。
1、实验环境介绍
笔者选择Oracle 11gR2进行测试,GI版本为11.2.0.4。
[ ~]$ sqlplus /nolog
SQL*Plus: Release 11.2.0.4.0 Production on Wed May 27 09:32:18 2015
Copyright (c) , Oracle.& All rights reserved.
SQL& conn / as sysasm
Connected.
SQL& select * from v$
--------------------------------------------------------------------------------
Oracle Database 11g Enterprise Edition Release 11.2.0.4.0 - 64bit Production
PL/SQL Release 11.2.0.4.0 - Production
CORE& & 11.2.0.4.0& & & Production
TNS for Linux: Version 11.2.0.4.0 - Production
NLSRTL Version 11.2.0.4.0 & Production
注意:根据Oracle官方意见,OPatch是进行补丁的重要工具。每个补丁解决故障问题不同,***方式也有所差异。严格按照***步骤、做好备份工作和预定好回退措施是确保补丁***的重要步骤。另外,每次打补丁的时候,要从MOS上下载最新版本的OPatch程序包,替换$ORACLE_HOME下的程序包。
2、OPatch Apply策略补丁
和Oracle Instance不同,GI的工作机制更加复杂,基础进行ohasd等都是绑定在操作系统init级别的进程。使用OPatch Apply策略进行补丁的时候,要注意操作前提和步骤、确保相关进程服务关闭。
首先解压补丁文件包。
[ upload]# ls -l
total 282780
drwxr-xr-x 4 oracle oinstall& & & 4096 Oct 20& 0
-rw-r--r-- 1 oracle oinstall& & 407030 May 25 09:06 p040_Generic.zip
注意:要参考补丁***文档,确定使用哪个用户进行补丁执行操作。一般Apply方式进行GI补丁,使用grid用户比较常见。同时要注意权限问题,最好将补丁文件包权限&人为降低&,避免出现麻烦。
[ upload]# chown -R grid:oinstall /
[ upload]# ls -l&
total 282780
drwxr-xr-x 4 grid& oinstall& & & 4096 Oct 20& 0
进行补丁前,要通过opatch的prereq方法检查补丁兼容性,尽早发现问题,避免回退。
[ upload]$ cd /
[ ]$ opatch prereq CheckConflictAgainstOHWithDetail -ph ./
Oracle Interim Patch Installer version 11.2.0.3.10
Copyright (c) 2015, Oracle Corporation.& All rights reserved.
PREREQ session
Oracle Home& & & : /u01/app/grid/product/11.2.0/grid
Central Inventory : /u01/app/oraInventory
& from& & & & & : /u01/app/grid/product/11.2.0/grid/oraInst.loc
OPatch version& & : 11.2.0.3.10
OUI version& & & : 11.2.0.4.0
Log file location : /u01/app/grid/product/11.2.0/grid/cfgtoollogs/opatch/opatch_09-57-08AM_1.log
Invoking prereq "checkconflictagainstohwithdetail"
Prereq "checkConflictAgainstOHWithDetail" passed.
OPatch succeeded.
根据补丁要求,关闭***器、数据库服务器和一切与JDBC相关的组件。
[ ~]$ crsctl stat res -t -init
--------------------------------------------------------------------------------
NAME& TARGET& STATE& & & & SERVER& & & STATE_DETAILS& & & &
--------------------------------------------------------------------------------
Local Resources
--------------------------------------------------------------------------------
ora.DATA.dg
& & & & & & & ONLINE& OFFLINE& & & ncr-standby-asm& & & & & & & & & & & & & & &
ora.LISTENER.lsnr
& & & & & & & OFFLINE OFFLINE& & & ncr-standby-asm& & & & & & & & & & & & & & &
ora.RECO.dg
& & & & & & & ONLINE& OFFLINE& & & ncr-standby-asm& & & & & & & & & & & & & & &
& & & & & & & OFFLINE OFFLINE& & & ncr-standby-asm& & & & & Instance Shutdown& &
& & & & & & & OFFLINE OFFLINE& & & ncr-standby-asm& & & & & & & & & & & & & & &
--------------------------------------------------------------------------------
Cluster Resources
--------------------------------------------------------------------------------
& & & 1& & & & ONLINE& ONLINE& & & ncr-standby-asm& & & & & & & & & & & & & & &
ora.diskmon
& & & 1& & & & OFFLINE OFFLINE& & & & & & & & & & & & & & & & & & & & & & & & & &
& & & 1& & & & ONLINE& ONLINE& & & ncr-standby-asm& & & & & & & & & & & & & & &
ora.sicsstb.db
& & & 1& & & & OFFLINE OFFLINE& & & & & & & & & & & & & & & Instance Shutdown& &
执行锁定脚本,由于GI部分进程工作原理,所以进行apply补丁之前要执行特殊的root脚本,对进程继续锁定(RAC和Non-RAC GI架构下脚本有差异,请注意)。
[ ]$ env | grep ORACLE_HOME
ORACLE_HOME=/u01/app/grid/product/11.2.0/grid
[ ~]# cd /u01/app/grid/product/11.2.0/grid
[ grid]# cd crs/install/
[ install]# ./roothas.pl -unlock
Using configuration parameter file: ./crsconfig_params
Successfully unlock /u01/app/grid/product/11.2.0/grid
进行补丁动作。
[ ]$ opatch apply
Oracle Interim Patch Installer version 11.2.0.3.10
Copyright (c) 2015, Oracle Corporation.& All rights reserved.
Oracle Home& & & : /u01/app/grid/product/11.2.0/grid
Central Inventory : /u01/app/oraInventory
& from& & & & & : /u01/app/grid/product/11.2.0/grid/oraInst.loc
OPatch version& & : 11.2.0.3.10
OUI version& & & : 11.2.0.4.0
Log file location : /u01/app/grid/product/11.2.0/grid/cfgtoollogs/opatch/_May_25__26/apply_10-02-26AM_1.log
Applying interim patch '' to OH '/u01/app/grid/product/11.2.0/grid'
Verifying environment and performing prerequisite checks...
All checks passed.
Provide your email address to be informed of security issues, install and
initiate Oracle Configuration Manager. Easier for you if you use your My
Oracle Support Email address/User Name.
for details.
Email address/User Name:&
You have not provided an email address for notification of security issues.
Do you wish to remain uninformed of security issues ([Y]es, [N]o) [N]:& Y
Backing up files...
Patching component oracle.dbjava.jdbc, 11.2.0.4.0...
Patching component oracle.dbjava.ic, 11.2.0.4.0...
Verifying the update...
successfully applied
Log file location: /u01/app/grid/product/11.2.0/grid/cfgtoollogs/opatch/_May_25__26/apply_10-02-26AM_1.log
OPatch succeeded.
执行脚本锁定GI进程。
&[ install]# ./roothas.pl -patch
Using configuration parameter file: ./crsconfig_params
CRS-4123: Oracle High Availability Services has been started
使用opatch程序验证补丁操作成功。
[ ]$ opatch lsinventory
Oracle Interim Patch Installer version 11.2.0.3.10
Copyright (c) 2015, Oracle Corporation.& All rights reserved.
Oracle Home& & & : /u01/app/grid/product/11.2.0/grid
Central Inventory : /u01/app/oraInventory
& from& & & & & : /u01/app/grid/product/11.2.0/grid/oraInst.loc
OPatch version& & : 11.2.0.3.10
OUI version& & & : 11.2.0.4.0
Log file location : /u01/app/grid/product/11.2.0/grid/cfgtoollogs/opatch/opatch_10-03-07AM_1.log
Lsinventory Output file location : /u01/app/grid/product/11.2.0/grid/cfgtoollogs/opatch/lsinv/lsinventory_10-03-07AM.txt
--------------------------------------------------------------------------------
Local Machine Information::
Hostname: localhost
ARU platform id: 226
ARU platform description:: Linux x86-64
Installed Top-level Products (1):&
Oracle Grid Infrastructure 11g& & & & & & & & & & & & & & & & & & & 11.2.0.4.0
There are 1 products installed in this Oracle Home.
Interim patches (1) :
Patch& & & : applied on Mon May 25 10:02:48 CST 2015
Unique Patch ID:&
& Created on 20 Oct :43 hrs PST8PDT
& Bugs fixed:
--------------------------------------------------------------------------------
OPatch succeeded.
补丁***成功。
下面介绍opatch的auto补丁方法。11.2 RAC 上所有grid环境需要的目录的权限配置文件:crsconfig_dirs - 为程序员服务
11.2 RAC 上所有grid环境需要的目录的权限配置文件:crsconfig_dirs
在11.2的$GRID_HOME/crs/utl目录下有一个文件crsconfig_dirs,记录了所有grid目录下各个目录的权限定义,例如:
[root@lunardb01 utl]# cat crsconfig_dirs
# Copyright (c) , Oracle and/or its affiliates. All rights reserved.
# The values in each line use the following format:
# OSLIST DIRNAME OWNER GROUP CLOSED-PERMS OPEN-PERMS
# 1) OSLIST is a comma-separated list of platforms on which the directory
needs to be created.
'all' indicates that the directory needs to be
created on every platform.
OSLIST MUST NOT contain whitespace.
# 2) Permissions need to be specified AS OCTAL NUMBERS.
If permissions are
not specified, default (umask) values will be used.
# TBD: OPEN-PERMS need to be added for each dir
all /u01/app/11.2.0/grid/cdata grid oinstall 0775
all /u01/app/11.2.0/grid/cdata/lunardb-cluster grid oinstall 0775
all /u01/app/11.2.0/grid/cfgtoollogs grid oinstall 0775
all /u01/app/11.2.0/grid/cfgtoollogs/crsconfig grid oinstall 0775
all /u01/app/11.2.0/grid/log grid oinstall 0775
all /u01/app/11.2.0/grid/log/lunardb01 root oinstall 01755
all /u01/app/11.2.0/grid/log/lunardb01/crsd root oinstall 0750
all /u01/app/11.2.0/grid/log/lunardb01/ctssd root oinstall 0750
all /u01/app/11.2.0/grid/log/lunardb01/evmd grid oinstall 0750
all /u01/app/11.2.0/grid/log/lunardb01/cssd grid oinstall 0750
all /u01/app/11.2.0/grid/log/lunardb01/mdnsd grid oinstall 0750
all /u01/app/11.2.0/grid/log/lunardb01/gpnpd grid oinstall 0750
all /u01/app/11.2.0/grid/log/lunardb01/gnsd root oinstall 0750
all /u01/app/11.2.0/grid/log/lunardb01/srvm grid oinstall 0750
all /u01/app/11.2.0/grid/log/lunardb01/gipcd grid oinstall 0750
all /u01/app/11.2.0/grid/log/lunardb01/diskmon grid oinstall 0750
all /u01/app/11.2.0/grid/log/lunardb01/cvu grid oinstall 0750
all /u01/app/11.2.0/grid/log/lunardb01/cvu/cvulog grid oinstall 0750
all /u01/app/11.2.0/grid/log/lunardb01/cvu/cvutrc grid oinstall 0750
all /u01/app/11.2.0/grid/log/lunardb01/acfssec root oinstall 0755
all /u01/app/11.2.0/grid/log/lunardb01/acfsrepl grid oinstall 0750
all /u01/app/11.2.0/grid/log/lunardb01/acfslog grid oinstall 0750
all /u01/app/11.2.0/grid/cdata/localhost grid oinstall 0755
all /u01/app/11.2.0/grid/cdata/lunardb01 grid oinstall 0755
all /u01/app/11.2.0/grid/cv grid oinstall 0775
all /u01/app/11.2.0/grid/cv/log grid oinstall 0775
all /u01/app/11.2.0/grid/cv/init grid oinstall 0775
all /u01/app/11.2.0/grid/cv/report grid oinstall 0775
all /u01/app/11.2.0/grid/cv/report/html grid oinstall 0775
all /u01/app/11.2.0/grid/cv/report/text grid oinstall 0775
all /u01/app/11.2.0/grid/cv/report/xml grid oinstall 0775
# These dirs must be owned by crsuser in SIHA, and $SUPERUSER in cluster env.
# 'HAS_USER' is set appropriately in roothas.pl and rootcrs.pl for this
all /u01/app/11.2.0/grid/log/lunardb01/ohasd root oinstall 0750
all /u01/app/11.2.0/grid/lib root oinstall 0755
all /u01/app/11.2.0/grid/bin root oinstall 0755
all /u01/app/11.2.0/grid/log/lunardb01/agent root oinstall 01775
all /u01/app/11.2.0/grid/log/lunardb01/agent/crsd root oinstall 01777
all /u01/app/11.2.0/grid/log/lunardb01/agent/ohasd root oinstall 01775
all /u01/app/11.2.0/grid/log/lunardb01/client grid oinstall 0751
all /u01/app/11.2.0/grid/log/lunardb01/racg grid oinstall 01775
all /u01/app/11.2.0/grid/log/lunardb01/racg/racgmain grid oinstall 01777
all /u01/app/11.2.0/grid/log/lunardb01/racg/racgeut grid oinstall 01777
all /u01/app/11.2.0/grid/log/lunardb01/racg/racgevtf grid oinstall 01777
all /u01/app/11.2.0/grid/log/lunardb01/admin grid oinstall 0750
all /u01/app/11.2.0/grid/log/diag/clients grid asmadmin 01770
all /u01/app/11.2.0/grid/evm grid oinstall 0750
all /u01/app/11.2.0/grid/evm/init grid oinstall 0750
all /u01/app/11.2.0/grid/auth/evm/lunardb01 root oinstall 01777
all /u01/app/11.2.0/grid/evm/log grid oinstall 01770
all /u01/app/11.2.0/grid/eons/init grid oinstall 0750
all /u01/app/11.2.0/grid/auth/ohasd/lunardb01 root oinstall 01777
all /u01/app/11.2.0/grid/mdns grid oinstall 0750
all /u01/app/11.2.0/grid/mdns/init grid oinstall 0750
all /u01/app/11.2.0/grid/gipc grid oinstall 0750
all /u01/app/11.2.0/grid/gipc/init grid oinstall 0750
all /u01/app/11.2.0/grid/gns root oinstall 0750
all /u01/app/11.2.0/grid/gns/init root oinstall 0750
all /u01/app/11.2.0/grid/gpnp grid oinstall 0750
all /u01/app/11.2.0/grid/gpnp/init grid oinstall 0750
all /u01/app/11.2.0/grid/ohasd grid oinstall 0750
all /u01/app/11.2.0/grid/ohasd/init grid oinstall 0750
all /u01/app/11.2.0/grid/gpnp grid oinstall 0750
all /u01/app/11.2.0/grid/gpnp/profiles grid oinstall 0750
all /u01/app/11.2.0/grid/gpnp/profiles/peer grid oinstall 0750
all /u01/app/11.2.0/grid/gpnp/wallets grid oinstall 01750
all /u01/app/11.2.0/grid/gpnp/wallets/root grid oinstall 01700
all /u01/app/11.2.0/grid/gpnp/wallets/prdr grid oinstall 01750
all /u01/app/11.2.0/grid/gpnp/wallets/peer grid oinstall 01700
all /u01/app/11.2.0/grid/gpnp/wallets/pa grid oinstall 01700
all /u01/app/11.2.0/grid/mdns grid oinstall 0750
all /u01/app/11.2.0/grid/gpnp grid oinstall 0750
all /u01/app/11.2.0/grid/gpnp/lunardb01/profiles grid oinstall 0750
all /u01/app/11.2.0/grid/gpnp/lunardb01/profiles/peer grid oinstall 0750
all /u01/app/11.2.0/grid/gpnp/lunardb01/wallets grid oinstall 01750
all /u01/app/11.2.0/grid/gpnp/lunardb01/wallets/root grid oinstall 01700
all /u01/app/11.2.0/grid/gpnp/lunardb01/wallets/prdr grid oinstall 01750
all /u01/app/11.2.0/grid/gpnp/lunardb01/wallets/peer grid oinstall 01700
all /u01/app/11.2.0/grid/gpnp/lunardb01/wallets/pa grid oinstall 01700
all /u01/app/11.2.0/grid/css grid oinstall 0711
all /u01/app/11.2.0/grid/css/init grid oinstall 0711
all /u01/app/11.2.0/grid/css/log grid oinstall 0711
all /u01/app/11.2.0/grid/auth/css/lunardb01 root oinstall 01777
all /u01/app/11.2.0/grid/crs root oinstall 0755
all /u01/app/11.2.0/grid/crs/init root oinstall 0755
all /u01/app/11.2.0/grid/crs/profile root oinstall 0755
all /u01/app/11.2.0/grid/crs/script root oinstall 0755
all /u01/app/11.2.0/grid/crs/template root oinstall 0755
all /u01/app/11.2.0/grid/auth/crs/lunardb01 root oinstall 01777
all /u01/app/11.2.0/grid/crs/log grid oinstall 01750
all /u01/app/11.2.0/grid/crs/trace grid oinstall 01750
all /u01/app/11.2.0/grid/crs/public grid oinstall 01777
all /u01/app/11.2.0/grid/ctss root oinstall 0755
all /u01/app/11.2.0/grid/ctss/init root oinstall 0755
all /u01/app/11.2.0/grid/racg/usrco grid oinstall
all /u01/app/11.2.0/grid/racg/dump grid oinstall 0775
all /u01/app/11.2.0/grid/srvm/admin grid oinstall 0775
all /u01/app/11.2.0/grid/srvm/log grid oinstall 0775
all /u01/app/11.2.0/grid/evm/admin/conf grid oinstall 0750
all /u01/app/11.2.0/grid/evm/admin/logger grid oinstall 0750
all /u01/app/11.2.0/grid/crf root oinstall 0750
all /u01/app/11.2.0/grid/crf/admin root oinstall 0750
all /u01/app/11.2.0/grid/crf/admin/run grid oinstall 0750
all /u01/app/11.2.0/grid/crf/admin/run/crfmond root oinstall 0700
all /u01/app/11.2.0/grid/crf/admin/run/crflogd root oinstall 0700
all /u01/app/11.2.0/grid/crf/db root oinstall 0750
all /u01/app/11.2.0/grid/crf/db/lunardb01 root oinstall 0750
all /u01/app/11.2.0/grid/osysmond root oinstall 0755
all /u01/app/11.2.0/grid/osysmond/init root oinstall 0755
all /u01/app/11.2.0/grid/ologgerd root oinstall 0755
all /u01/app/11.2.0/grid/ologgerd/init root oinstall 0755
all /u01/app/11.2.0/grid/log/lunardb01/crfmond root oinstall 0750
all /u01/app/11.2.0/grid/log/lunardb01/crflogd root oinstall 0750
unix /etc/oracle/oprocd root oinstall 0775
unix /etc/oracle/oprocd/check root oinstall 0770
unix /etc/oracle/oprocd/stop root oinstall 0770
unix /etc/oracle/oprocd/fatal root oinstall 0770
unix /etc/oracle/scls_scr root oinstall 0755
unix /etc/oracle/scls_scr/lunardb01 root oinstall 0755
unix /var/tmp/.oracle root oinstall 01777
unix /tmp/.oracle root oinstall 01777
unix /u01/app/11.2.0/grid/log/lunardb01/acfsreplroot root oinstall 0750
# create $ID, if it doesn't exist (applicable only in dev env)
unix /etc/init.d root root 0755
unix /u01/app/11.2.0/grid root oinstall 0755
# Last Gasp files directory - change &unix& to &all&
# once Windows makes a directory decision.
unix /etc/oracle/lastgasp root oinstall 0770
[root@lunardb01 utl]#
世间所有相遇都是久别重逢
原文地址:, 感谢原作者分享。
您可能感兴趣的代码