各位游戏大佬大家好,今天小编为大家分享关于gg 修改器root_gg修改器root下载的内容,轻松修改游戏数据,赶快来一起来看看吧。
安装oracle rac时候,有一步需要在节点上面执行root.sh脚本,有时误操作把图形界面关闭了,但是root.sh已经执行成功,如何继续部署呢?
mos上也给出了具体的步骤。执行完root.sh安装程序还会执行红色区域的步骤,大体是更新inventory,网络配置、asm配置、系统检查。细心的话执行完root.sh我们可以查看install的日志里面会记录对应的操作,installer也会自动执行一些命令,这些命令就是下文要讲的,因为installer已经abort,那么只能手动执行。
目标:
本说明提供了在Oracle Universal Installer会话不再可用时完成11gR2/12c网格基础设施配置助手(插件)的说明。OUI会话可能由于多种原因而消失,例如节点重新启动、会话因安全设置而超时等。
只有在11.2/12c网格基础设施根脚本(root.sh或rootupgrade.sh)在所有节点上成功完成后,才能执行如下步骤。要求是图形界面异常关闭,且root.sh在节点上已正常执行完毕。
场景1:12.2版本之前
1. Verify whether “$GRID_HOME/cfgtoollogs/configToolAllCommands” exists or not, if not, as grid user, create a script file named configToolAllCommands with the following contents, for example:
/ocw/b202/oui/bin/runConfig.sh ORACLE_HOME=/ocw/b202 MODE=perform ACTION=configure RERUN=true $*
Note: in this example new GRID home is /ocw/b202; when creating, replace /ocw/b202 with the real new GRID_HOME path in your environment
If any configuration assistant(Plug-in) finished successfully previously and you’d like to skip it, set RERUN to false before executes it.
2. configToolAllCommands script would require a response file cfgrsp.properties if the configuration involves installing ASM(new installation), or upgrading ASM from a release earlier than 11.2.0.1.0.
The content of the file should be as follows:
(1) If installing ASM: (assuming that the ASMPASSWORD and ASMMONITORPASSWORD will be set to oracle)
oracle.assistants.asm|S_ASMPASSWORD=oracle
oracle.assistants.asm|S_ASMMONITORPASSWORD=oracle
(2) If upgrading ASM from a release earlier than 11.2.0.1.0:(assuming that the ASMMONITORPASSWORD will be set to oracle)
oracle.assistants.asm|S_ASMPASSWORD= ==>>>>leave blank
oracle.assistants.asm|S_ASMMONITORPASSWORD=oracle
3. Execute configToolAllCommands as grid user on first node:
If a response file was created in Step 2, execute configToolAllCommands as follows:
$GRID_HOME/cfgtoollogs/configToolAllCommands RESPONSE_FILE=<grid-home>/cfgtoollogs/cfgrsp.properties
Otherwise, execute:
$GRID_HOME/cfgtoollogs/configToolAllCommands
The logfile will be $GRID_HOME/cfgtoollogs/oui/configActions{TIMESTAMP}.log, it should be reviewed to find out whether there’s any failures.
If on Windows platform, the syntax will be slightly different, i.e.:
<GI_HOME>ouiin
unconfig.bat ORACLE_HOME=<GI_HOME> ACTION=configure MODE=perform RERUN=true $*
具体步骤如下:(英文好的可以自己理解,下面内容为自己总结的)
检查$GRID_HOME/cfgtoollogs/configToolAllCommands命令是否存在,如果不存在使用grid用户创建一个脚本名称叫做configToolAllCommands。内容为
替换为gridhome目录/oui/bin/runConfig.sh ORACLE_HOME=gridhome目录 MODE=perform ACTION=configure RERUN=true $*
执行此脚本需要一个响应文件,文件内容如下:<grid-home>/cfgtoollogs/cfgrsp.properties
新安装的asm内容如下:
cfgrsp.properties:
oracle.assistants.asm|S_ASMPASSWORD=oracle(asm的密码)
oracle.assistants.asm|S_ASMMONITORPASSWORD=oracle(asm的密码)
如果是升级asm那么配置如下:
oracle.assistants.asm|S_ASMPASSWORD= ==>>>>leave blank
oracle.assistants.asm|S_ASMMONITORPASSWORD=oracle
执行脚本进行配置(在节点1)
$GRID_HOME/cfgtoollogs/configToolAllCommands RESPONSE_FILE=<grid-home>/cfgtoollogs/cfgrsp.properties
执行过程产生的日志会放到下面的目录,用于检查是否有错误。
The logfile will be $GRID_HOME/cfgtoollogs/oui/configActions{TIMESTAMP}.log, it should be reviewed to find out whether there’s any failures.
如下为针对12.2及以后版本的情况下如何执行:
For 12.2, use the following:
gridSetup.sh -executeConfigTools -responseFile <responsefile.rsp>
For details, refer to:
A.7.1 Using the Installation Response File for Postinstallation Configuration
12C响应文件例子如下:
Oracle strongly mends that you maintain security with a password response file:
Example A-1 Response File Passwords for Oracle Grid Infrastructure
oracle.install.crs.config.ipmi.bmcPassword=password
oracle.install.asm.SYSASMPassword=password
oracle.install.asm.monitorPassword=password
oracle.install.config.emAdminPassword=password
If you do not have a BMC card, or you do not want to enable IPMI, then leave the ipmi.bmcPassword input field blank.如果没有bmc卡或不使用ipmi则置为空
If you do not want to enable Oracle Enterprise Manager for management, then leave the emAdminPassword password field blank.如果不使用oem则置为空
For 18c, use the following:
gridSetup.sh -executeConfigTools -responseFile <responsefile.rsp>
(Use the response file created during installation to plete postinstallation configuration)
For details, refer to:
Using the Installation Response File for Postinstallation Configuration
18c响应文件例子如下:
Oracle strongly mends that you maintain security with a password response file:
Example A-1 Response File Passwords for Oracle Grid Infrastructure (grid user)
grid.install.crs.config.ipmi.bmcPassword=password
grid.install.asm.SYSASMPassword=password
grid.install.asm.monitorPassword=password
grid.install.config.emAdminPassword=password
If you do not have a BMC card, or you do not want to enable IPMI, then leave the ipmi.bmcPassword input field blank.
If you do not want to enable Oracle Enterprise Manager for management, then leave the emAdminPassword password field blank.
For 19c, use the following:
gridSetup.sh -executeConfigTools -responseFile <responsefile.rsp>
(Use the response file created during installation to plete postinstallation configuration)
For details, refer to:
Using the Installation Response File for Postinstallation Configuration
19C响应文件例子如下:
Oracle strongly mends that you maintain security with a password response file:
Example A-1 Response File Passwords for Oracle Grid Infrastructure (grid user)
grid.install.crs.config.ipmi.bmcPassword=password
grid.install.asm.SYSASMPassword=password
grid.install.asm.monitorPassword=password
grid.install.config.emAdminPassword=password
If you do not have a BMC card, or you do not want to enable IPMI, then leave the ipmi.bmcPassword input field blank.
If you do not want to enable Oracle Enterprise Manager for management, then leave the emAdminPassword password field blank.
以上便是当oui installer异常退出,但root.sh执行成功后如何继续安装的步骤。但是我遇到过按照上文执行后asm实例config 失败。后来没有查清楚具体原因。执行在两个节点执行的deinstall然后重新安装,顺利安装成功。如果不想那么麻烦切记oui界面不要关闭。
参考mos《How to Complete Grid Infrastructure Configuration Assistant(Plug-in) if OUI is not Available (Doc ID 1360798.1)》
以上就是关于gg 修改器root_gg修改器root下载的全部内容,游戏大佬们学会了吗?
gg修改器自带root权限_gg修改器root权限下载 分类:免root版 400人在玩 各位游戏大佬大家好,今天小编为大家分享关于gg修改器自带root权限_gg修改器root权限下载的内容,轻松修改游戏数据,赶快来一起来看看吧。 背景 How – 如何使用 atop atop 针……
下载王者荣耀gg修改器改金币,王者荣耀金币获取器下载 分类:免root版 1,466人在玩 王者荣耀gg修改器改金币是一款非常神器的金币获取修改器,修改金币数据是无数人都梦寐以求的功能了,金币在王者荣耀里面也是非常重要,金币很是稀奇,不是随随便便就能获取得到的……
下载gg修改器root过保护_gg修改器自带root 分类:免root版 375人在玩 各位游戏大佬大家好,今天小编为大家分享关于gg修改器root过保护_gg修改器自带root的内容,轻松修改游戏数据,赶快来一起来看看吧。 gcc是linux系统集成的编译器。在linux环境下编……
下载2020王者荣耀刷点券修改器不封号,王者免费领取9999999点卷 分类:免root版 1,510人在玩 2020王者荣耀刷点券修改器不封号工具是一款可以免费领取9999999点卷的软件,对于一般玩家来说这个9999999点卷已经是无限点卷一般的存在了,这么多点卷要用好久好久的,想购买什么……
下载gg修改器改王者荣耀无限钻石版,gg修改器安卓免费版 分类:免root版 1,473人在玩 gg修改器改王者荣耀无限钻石版是一款免费的王者荣耀钻石获取器,钻石在王者荣耀中算不上特别的重要但是也是有它的作用的,既然有钻石这种东西肯定就有它的作用,今天小编分享这款……
下载王者荣耀改模型工具,王者荣耀gg修改器改英雄模型 分类:免root版 1,480人在玩 各位游戏老司机们大家好!小编接下来带来的神器是这款王者荣耀gg修改器改模型软件是一款修改器改英雄模型客户端应用,王者荣耀gg修改器改模型软件中玩家可以把英雄任意改成自己喜欢……
下载gg修改器咋授权root_怎么给gg修改器授权 分类:免root版 436人在玩 各位游戏大佬大家好,今天小编为大家分享关于gg修改器咋授权root_怎么给gg修改器授权的内容,轻松修改游戏数据,赶快来一起来看看吧。 一加手机凭借着主流旗舰的硬件配置和不足2000……
下载gg修改器没root权限怎么开_gg修改器开启root权限 分类:免root版 1,038人在玩 各位游戏大佬大家好,今天小编为大家分享关于gg修改器没root权限怎么开_gg修改器开启root权限的内容,轻松修改游戏数据,赶快来一起来看看吧。 安卓是全球使用量最多的一个手机操作……
下载gg修改器怎么弄root的_gg修改器的root怎么下 分类:免root版 477人在玩 各位游戏大佬大家好,今天小编为大家分享关于gg修改器怎么弄root的_gg修改器的root怎么下的内容,轻松修改游戏数据,赶快来一起来看看吧。 原文链接:https://mp.weixin./s/MXemqdo……
下载gg修改器无需要root_GG修改器修改不了 分类:免root版 630人在玩 各位游戏大佬大家好,今天小编为大家分享关于gg修改器无需要root_GG修改器修改不了的内容,轻松修改游戏数据,赶快来一起来看看吧。 创作立场声明:从性价比来说,淘宝上便宜的200-……
下载