General
===================
After starting Golden Gate processes, Extract processes having this error:
Error in Golden gate after starting up golden gate extract processes
===================
Solution A
===================
application user is running the GG processes and lacks the permission to update ggserr.log file.
On both server A and server B:
ls -l ggserr.log
-rw-r-----. 1 root root 8305860 Aug 31 20:30 ggserr.log
===================
Solution B
===================
Remove the line in red, and restart GG processes.
This should be done on site A and on site B.
# Do not remove the following line, or various programs
# that require network functionality will fail.
::1 localhost6.localdomain6 localhost6
127.0.0.1 localhost.localdomain localhost
111.222.333.445 XXXDB00001 XXX7DB00001.mydomain.com
111.222.333.445 XXXDB00002 XXXDB00002.mydomain.com
111.222.333.447 xxx-2-ora-01 xxx-2-ora-01.mydomain.com
===================
Appendix
===================
::1 localhost6.localdomain6 localhost6
It is IPV6 address for localhost
(IPV4 would be simple 127.0.0.1 localhost)
-rw-r-----. 1 root root 8305860 Aug 31 20:30 ggserr.log
as root
chmod 666 ggserr.log
restart the GG processes
Solution B
===================
Remove the line in red, and restart GG processes.
This should be done on site A and on site B.
# Do not remove the following line, or various programs
# that require network functionality will fail.
::1 localhost6.localdomain6 localhost6
127.0.0.1 localhost.localdomain localhost
111.222.333.445 XXXDB00001 XXX7DB00001.mydomain.com
111.222.333.445 XXXDB00002 XXXDB00002.mydomain.com
111.222.333.447 xxx-2-ora-01 xxx-2-ora-01.mydomain.com
===================
Appendix
===================
Rollover the ggserr.log keeping existing permissions:
cp -pnv ggserr.log ggserr.log_20200831
-p : preserve permissions
-v : verbose, print informative messages
-n : no file overwrite
cat /dev/null > ggserr.log
===================
Reference
===================
Reference
===================
::1 localhost6.localdomain6 localhost6
It is IPV6 address for localhost
(IPV4 would be simple 127.0.0.1 localhost)