I hereby claim:
- I am darkangelstrike on github.
- I am sbeaulieu (https://keybase.io/sbeaulieu) on keybase.
- I have a public key ASClLXjNAyOA6ELphPBGx-NOE5zckjroViOLSvabRRNqnQo
To claim this, I am signing this object:
| 2017-04-28T08:34:05.210271-04:00 | |
| Errors in file /u01/app/oracle/diag/rdbms/cdb/CDB/trace/CDB_ora_4284.trc (incident=14692) (PDBNAME=CDB$ROOT): | |
| ORA-00600: internal error code, arguments: [kziaVrfyAcctStatInRootCbk: !user], [APEX_PUBLIC_USER], [], [], [], [], [], [], [], [], [], [] | |
| Incident details in: /u01/app/oracle/diag/rdbms/cdb/CDB/incident/incdir_14692/CDB_ora_4284_i14692.trc | |
| Use ADRCI or Support Workbench to package the incident. | |
| See Note 411.1 at My Oracle Support for error and packaging details. | |
| 2017-04-28T08:34:06.400212-04:00 | |
| Dumping diagnostic data in directory=[cdmp_20170428085203], requested by (instance=1, osid=4284), summary=[incident=14692]. |
| SYS@CDB> alter session set container = CDB$ROOT; | |
| Session altered. | |
| SYS@CDB> show con_name | |
| CON_NAME | |
| ------------------------------ | |
| CDB$ROOT |
| [oracle@server ~]$ sqlplus / as sysdba | |
| SQL*Plus: Release 12.2.0.1.0 Production on Wed May 3 12:44:46 2017 | |
| Copyright (c) 1982, 2016, Oracle. All rights reserved. | |
| Connected to: | |
| Oracle Database 12c Standard Edition Release 12.2.0.1.0 - 64bit Production |
| [oracle@server ~]$ sqlplus APEX_PUBLIC_USER/*****@127.0.0.1:1521/PDB | |
| SQL*Plus: Release 12.2.0.1.0 Production on Wed May 3 12:54:35 2017 | |
| Copyright (c) 1982, 2016, Oracle. All rights reserved. | |
| Last Successful login time: Thu Apr 27 2017 09:25:18 -04:00 | |
| Connected to: | |
| Oracle Database 12c Standard Edition Release 12.2.0.1.0 - 64bit Production |
| [oracle@server ~]$ sqlplus / as sysdba | |
| SQL*Plus: Release 12.2.0.1.0 Production on Thu Apr 27 13:40:56 2017 | |
| Copyright (c) 1982, 2016, Oracle. All rights reserved. | |
| Connected to: | |
| Oracle Database 12c Standard Edition Release 12.2.0.1.0 - 64bit Production |
I hereby claim:
To claim this, I am signing this object:
| #!/usr/bin/env bash | |
| [ -z "$PGDATA" ] && echo "PGDATA is not defined!" && exit 1 | |
| [ ! -e $PGDATA/postmaster.pid ] && echo "Cannot find $PGDATA/postmaster.pid is PostgreSQL server running?" && exit 1 | |
| PG_PID=$(head -1 $PGDATA/postmaster.pid) | |
| PG_MEM_U=$(grep ^VmPeak /proc/$PG_PID/status | awk '{print $3}') | |
| HP_MEM_U=$(grep ^Hugepagesize /proc/meminfo | awk '{print $3}') | |
| [ "$PG_MEM_U" != "$HP_MEM_U" ] && echo "The units differ please calculate the Huge Pages manually" && exit 1 | |
| PG_MEM=$(grep ^VmPeak /proc/$PG_PID/status | awk '{print $2}') | |
| HP_MEM=$(grep ^Hugepagesize /proc/meminfo | awk '{print $2}') |