clear orbit connectivity test
====================================
20:43:48 clr@aixqat:/QATtools/clr/RFUI5.6a
$ ./conntest.sh
clear orbit services status
=================================
$ clr status
clear orbit passwords maintenance
==============================
Schema passwords are maintained in 2 files
a) /home/clr/jboss-4.0.1sp1/server/default/deploy
clr-ds.xml
erp-ds.xml
b) /home/clr/RFUI5.6a/conf
persistence.properties
rfui.properties
password is encrypted and must be changed by running generator.sh
clear orbit startup
==============
first way : login with clr user and run >>>>>>>>> clr start
======
second way :
=========
a) Start Jboss:
--------------
cd to /home/clr/QAT/jboss-4.0.1sp1/bin
execute >>>>>> setsid ./run.sh &
b) Start RFUI server:
-------------------
cd to /home/clr/QAT/QATNOA2/RFUI5.6a
execute: ./rfuiServer.ksh start
clear orbit shutdown
=================
first way : login with clr user and run >>>>>>>>> clr stop
======
second way :
=========
Source the clearorbit.env file located at /home/clr/admin
a) Stop Jboss:
==========
cd to/home/clr/jboss-4.0.1sp1/bin
execute: ./shutdown.sh –S
ps –ef | grep run.sh
If you find if run.sh is still running kill the process with kill -9 <PID>. PID is process id of rfui process
b) Stop RFUI server:
================
cd to /home/clr/RFUI5.6a
execute: ./rfuiServer.ksh stop
execute: ./rfuiServer.ksh status to verify
IMPORTANT POINTS
=================
1) SUPERUSER ACCOUNT CAN BE DISABLED
superuser account has been disabled because it has not been logged into in more than a month.
If the time in between logins for the Connect Console for the superuser has been 30 days or more, the problem of not logging in to the console can appear
as a login failing or the password being incorrect.
SQL> select USER_NAME,DISABLED_FLAG,LAST_LOGIN_DATE,LAST_UPDATE_DATE from con_users WHERE USER_NAME='superuser';
USER_NAME D LAST_LOGIN_DATE LAST_UPDATE_DAT
---------------- - --------------- ---------------
superuser Y 08-DEC-11 15-MAR-12
SQL> UPDATE CON_USERS SET DISABLED_FLAG='N', LAST_LOGIN_DATE = SYSDATE WHERE USER_NAME='superuser';
1 row updated.
SQL> commit;
Commit complete.
SQL> select USER_NAME,DISABLED_FLAG,LAST_LOGIN_DATE,LAST_UPDATE_DATE from con_users WHERE USER_NAME='superuser';
USER_NAME D LAST_LOGIN_DATE LAST_UPDATE_DAT
---------------- - --------------- ---------------
superuser N 15-MAR-12 15-MAR-12