Differences
This shows you the differences between two versions of the page.
| Both sides previous revisionPrevious revisionNext revision | Previous revision |
| informatica:weblogic:wlst:comandos [2017/08/29 14:04] – jose | informatica:weblogic:wlst:comandos [2017/09/18 15:46] (current) – jose |
|---|
| /u01/mid12212/oracle_common/bin/rcu -silent -dropRepository -connectString 172.17.0.1:1521:DEV -dbUser sys -dbRole SYSDBA -schemaPrefix BPEL12C -selectDependentsForComponents true -component IAU -component MDS -component IAU_APPEND -component IAU_VIEWER -component OPSS -component STB -component WLS -component UCSUMS -component SOAINFRA -component ESS < /u01/pogramas/passwordfile.txt | /u01/mid12212/oracle_common/bin/rcu -silent -dropRepository -connectString 172.17.0.1:1521:DEV -dbUser sys -dbRole SYSDBA -schemaPrefix BPEL12C -selectDependentsForComponents true -component IAU -component MDS -component IAU_APPEND -component IAU_VIEWER -component OPSS -component STB -component WLS -component UCSUMS -component SOAINFRA -component ESS < /u01/pogramas/passwordfile.txt |
| |
| | |
| | ===== Bucle ===== |
| | <code> |
| | v_estat="desconnectat" |
| | while v_estat != "connectat": |
| | try: |
| | nmConnect(username='weblogic', password='weblogic01',domainName='osb', host='127.0.0.1',port='5556', nmType='plain') |
| | v_estat = "connectat" |
| | except: |
| | print "No esta connectat" |
| | time.sleep(10) |
| | </code> |
| | |
| | ===== Borrar cluster Coherence ===== |
| | Sin target: |
| | cd('/') |
| | delete('defaultCoherenceCluster','CoherenceClusterSystemResource') |
| | |