Prima di iniziare
Installa AlloyDB Omni sul tuo sistema.
Aggiungi orafce all'installazione di AlloyDB Omni
Per aggiungere l'estensione orafce all'installazione di AlloyDB Omni, segui questi passaggi:
Trova le etichette della versione di AlloyDB Omni installata:
Docker
docker run --rm -it google/alloydbomni cat VERSION.txtPodman
podman run --rm -it google/alloydbomni cat VERSION.txtL'output è simile al seguente:
AlloyDB Omni version: 17.5.0Prendi nota del numero di versione di AlloyDB Omni perché ti servirà nel passaggio successivo.
Crea un nuovo contenitore AlloyDB Omni che includa orafce:
Linux
$ mkdir ~/alloydb-omni-orafce $ tee ~/alloydb-omni-orafce/Dockerfile << EOF ARG OMNI_VERSION FROM google/alloydbomni:${OMNI_VERSION} RUN apt-get update && \ apt-get install -y --no-install-recommends postgresql-17-orafce && \ apt-get purge -y --auto-remove && \ rm -rf /var/lib/apt/lists/* EOF $ cd ~/alloydb-omni-orafce $ sudo docker build --build-arg OMNI_VERSION=OMNI_VERSION --tag google/alloydbomni-with-orafce:OMNI_VERSION .MacOS
$ mkdir ~/alloydb-omni-orafce $ tee ~/alloydb-omni-orafce/Dockerfile << EOF ARG OMNI_VERSION FROM google/alloydbomni:OMNI_VERSION RUN apt-get update && \ apt-get install -y --no-install-recommends postgresql-17-orafce && \ apt-get purge -y --auto-remove && \ rm -rf /var/lib/apt/lists/* EOF $ cd ~/alloydb-omni-orafce $ sudo docker build --build-arg OMNI_VERSION=OMNI_VERSION --tag google/alloydbomni-with-orafce:OMNI_VERSION .Crea un nuovo container con AlloyDB Omni denominato
my-omni-orafce:docker build -t google/alloydbomni-with-orafce:latest docker run --name my-omni-orafce -e POSTGRES_PASSWORD=NEW_PASSWORD -d google/alloydbomni-with-orafce:OMNI_VERSIONConnettiti al tuo database con l'estensione orafce:
docker exec -it my-omni-orafce psql -h localhost -U postgresAttiva orafce:
CREATE EXTENSION IF NOT EXISTS ORAFCE;Verifica che orafce sia installato e abilitato:
SELECT oracle.sysdate();L'output è simile al seguente:
postgres=# SELECT oracle.sysdate(); sysdate --------------------- 2024-06-10 16:36:30 (1 row)