Skip to Main Content

Analytics Software

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

Interested in getting your voice heard by members of the Developer Marketing team at Oracle? Check out this post for AppDev or this post for AI focus group information.

Failed single shot step: Start all Servers with: Execution of /run/media/oracle/u01/Middleware/Oracl

User_CGBX8Dec 19 2022

HI All,
While configurating OAS 6.4 on Linux I am getting below error , upon checking the logs i could see below failed msgs. Can someone help me on this.
Log Filed failed msg:
Failed single shot step: Start all Servers with: Execution of /run/media/oracle/u01/Middleware/Oracle_Home/user_projects/domains/bi/bitools/bin/start.sh failed with exit value 3
2022-12-16 11:14:27,680 SEVERE [49] oracle.bi.install.config.actions.BIConfigAction - Non-skipped failure during configuration action: Execution of /run/media/oracle/u01/Middleware/Oracle_Home/user_projects/domains/bi/bitools/bin/start.sh failed with exit value 3
oracle.bi.exec.ExecutionStatusException: Execution of /run/media/oracle/u01/Middleware/Oracle_Home/user_projects/domains/bi/bitools/bin/start.sh failed with exit value 3
at oracle.bi.exec.StdinProcess.runProcess(StdinProcess.java:106)
at oracle.bi.exec.ExecScript.executeScript(ExecScript.java:191)
at oracle.bi.exec.ExecScript.executeSynchronousScript(ExecScript.java:95)
at oracle.bi.install.config.steps.startup.StartAllServersStep.executeSingleShot(StartAllServersStep.java:63)
at oracle.bi.install.config.basesteps.SingleShotActionStep.execute(SingleShotActionStep.java:31)
at oracle.bi.install.config.basesteps.StepList.execute(StepList.java:85)
at oracle.bi.install.config.actions.BIConfigAction.doExecute(BIConfigAction.java:137)
at oracle.as.install.engine.modules.configuration.client.ConfigAction.execute(ConfigAction.java:412)
at oracle.as.install.engine.modules.configuration.action.TaskPerformer.run(TaskPerformer.java:99)
at oracle.as.install.engine.modules.configuration.action.TaskPerformer.startConfigAction(TaskPerformer.java:122)
at oracle.as.install.engine.modules.configuration.action.ActionRequest.perform(ActionRequest.java:15)
at oracle.as.install.engine.modules.configuration.action.RequestQueue.performSequentialExecution(RequestQueue.java:339)
at oracle.as.install.engine.modules.configuration.action.RequestQueue.perform(RequestQueue.java:315)
at oracle.as.install.engine.modules.configuration.standard.StandardConfigActionManager.start(StandardConfigActionManager.java:198)
at oracle.as.install.engine.modules.configuration.boot.ConfigurationExtension.kickstart(ConfigurationExtension.java:82)
at oracle.as.install.engine.modules.configuration.ConfigurationModule.run(ConfigurationModule.java:87)
at java.lang.Thread.run(Thread.java:750)
Suppressed: oracle.bi.exec.ExecutionStatusException: Execution of /run/media/oracle/u01/Middleware/Oracle_Home/user_projects/domains/bi/bitools/bin/status.sh failed with exit value 1

image.png

Comments

Babu Baskar
mohsin3 wrote:
Dear all
There was replication between 2 servers ,but about 6 months back a server on which the data was replicated was totally closed and obviously no need of replication now.but we came to know that when we change any replicated table we get error :
ORA-23474: definition of "WEAVING"."SALES_CONTRACT_MST" has changed since generation of replication support

Tried to remove group as :
EXECUTE Dbms_Repcat.Drop_Master_Repobject('WEAVING','SALES_CONTRACT_MST','TABLE');

but got error
ERROR at line 1:
ORA-06550: line 1, column 8:
PLS-00352: Unable to access another database 'ORCL.WEAVCDC.BTLWCDC.BTLPDC.COM'
ORA-06550: line 1, column 8:
PLS-00201: identifier 'SYS@ORCL.WEAVCDC.BTLWCDC.BTLPDC.COM' must be declared
ORA-06550: line 1, column 8:
PL/SQL: Statement ignored
ORA-06550: line 1, column 7:
PLS-00352: Unable to access another database 'ORCL.WEAVCDC.BTLWCDC.BTLPDC.COM'
ORA-06550: line 1, column 7:
PLS-00201: identifier 'SYS@ORCL.WEAVCDC.BTLWCDC.BTLPDC.COM' must be declared
ORA-06550: line 1, column 7:
PL/SQL: Statement ignored
ORA-06512: at "SYS.DBMS_REPCAT_UTL4", line 119
ORA-06512: at "SYS.DBMS_REPCAT_UTL4", line 554
ORA-06512: at "SYS.DBMS_REPCAT_UTL4", line 2723
ORA-06512: at "SYS.DBMS_REPCAT", line 643
ORA-06512: at line 1

plsease help....
Try from master site

1.

BEGIN
DBMS_REPCAT.SUSPEND_MASTER_ACTIVITY(
gname => '"<<your gname>>"');
END;

2.

EXECUTE Dbms_Repcat.Drop_Master_Repobject('WEAVING','SALES_CONTRACT_MST','TABLE');

3.

PROMPT *** Resuming Replication Activity of Group SAMIQC
BEGIN
DBMS_REPCAT.RESUME_MASTER_ACTIVITY(
gname => '"<<your gname>>"');
END;
/


Babu
1 - 1