Good link for patching databases in Oracle OCI - will update this as we go along.
Linux port creating / testing
The "nc" command can run the port and you can test without having the app running -
[root@test ~]# nc -l 8080 -v
Ncat: Version 7.50 ( https://nmap.org/ncat )
Ncat: Listening on :::8080
Ncat: Listening on 0.0.0.0:8080
This is particularly handy as the Oracle cloud servers have no web browser graphical output (OCI Linux ones anway - as far as I know) so not like you can fire up a web browser and connect that way.
Example of port testing -
[root@tst01]# ncat -z -v tst02.oci.nwl.co.uk 3872
Ncat: Version 7.50 ( https://nmap.org/ncat )
Ncat: Connection timed out.
[root@tst01]# ncat -z -v tst03.oci.nwl.co.uk 3872
Ncat: Version 7.50 ( https://nmap.org/ncat )
Ncat: Connected to 10.157.249.4:3872.
Ncat: 0 bytes sent, 0 bytes received in 0.02 seconds.
Autonomous Database - comments
Changing time zone
Default Autonomous Database Time Zone
Default Autonomous Database Time Zone
The default Autonomous Database time zone is Coordinated Universal Time (UTC) and by default calls to SYSDATE and SYSTIMESTAMP return the date and time in UTC.
In order to change database time zone, you can run the following statement.
This example sets the database time zone to UTC-5.
ALTER DATABASE SET TIME_ZONE='-05:00';
Note:
ALTER DATABASE SET TIME_ZONE='-05:00';
Note:
You must restart the Autonomous Database instance for the change to take effect.
After you set the database time zone, by default SYSDATE and SYSTIMESTAMP continue to return date and time in UTC (SYSDATE_AT_DBTIMEZONE is FALSE by default). If you set SYSDATE_AT_DBTIMEZONE to TRUE in a session, SYSDATE and SYSTIMESTAMP return the database time zone.
After you set the database time zone, by default SYSDATE and SYSTIMESTAMP continue to return date and time in UTC (SYSDATE_AT_DBTIMEZONE is FALSE by default). If you set SYSDATE_AT_DBTIMEZONE to TRUE in a session, SYSDATE and SYSTIMESTAMP return the database time zone.
https://docs.oracle.com/en/cloud/paas/autonomous-database/serverless/adbsb/autonomous-initialization-parameters.html#GUID-1D5E830F-[…]F-899AC3C85D07
Immutable backups
All backups taken and managed by Oracle in Autonomous Database are immutable.
Immutable backups
All backups taken and managed by Oracle in Autonomous Database are immutable.
Immutable backups cannot be deleted or modified.
Backups are documented here
https://docs.oracle.com/en/cloud/paas/autonomous-database/adbsa/backup-intro.html#GUID-3BF27FDE-F847-4A86-9C8B-4ED9B0C1D1B2
Backups are documented here
https://docs.oracle.com/en/cloud/paas/autonomous-database/adbsa/backup-intro.html#GUID-3BF27FDE-F847-4A86-9C8B-4ED9B0C1D1B2
Subscribe to:
Posts (Atom)