Article Content
Article Number | 000028808 |
Applies To | Affected Versions: All Versions |
Issue | Aveksa Login screen says "no authentication source" If on a cluster clustat shows the server bouncing between started/restarting |
Resolution | 1. Check the startup log to see if we have the log file problem: cd $ORACLE_HOME tail startup.log The error is similar to: ORA-16038: log 2 sequence# 2502 cannot be archived ORA-19504: failed to create file "" ORA-00312: online log 2 thread 1: '+DG01/avdb/onlinelog/group_2.265.643730255' ORA-00312: online log 2 thread 1: '+DG01/avdb/onlinelog/group_2.266.643730295' Note the log file number - in this case its "online log 2" If there is a different message, this process is not required - contact Aveksa Customer Support 2A. Cluster Shutdown the cluster software (database and Aveksa Services) using: sudo AlterCluster.sh off 2B. Non clustered appliances Shutdown the database from the command line using: dbshut or sudo service dbora stop 3. Shutdown the AVDB instance through sqlplus: export ORACLE_SID=AVDB sqlplus / as sysdba SQL> shutdown; 4. Shutdown the +ASM instance export ORACLE_SID=+ASM sqlplus / as sysdba SQL> shutdown; 5. Run a ps-ef and ensure No AVDB or +ASM processes are running No scripts running "AVDB" or "ACM" start | stop | restart (kill the process if it's running) 6. From the command line start the database: dbstart or sudo service dbora start 7. Clear the log file using the commands: export ORACLE_SID=AVDB sqlplus / as sysdba SQL> alter database clear unarchived logfile group 2; ** Your logfile group may be different *** 8. Reboot the machine 10. After the machine restarts, ensure the database and Aveksa services or clustering has started. sudo AlterCluster.sh on 11. Verify you can access the dB correctly |