Configuration
Suggest editsPrerequisites
Implementing Chemaxon JChem PostgreSQL Cartridge with EDB Postgres Advanced Server requires the following components:
- A running EDB Postgres Advanced Server instance
- Java11 runtime environment
Note
The client should request an EDB-compatible version of JChem PostgreSQL Cartridge from Chemaxon, as EDB requires separate installation packaging.
Configure Chemaxon JChem PostgreSQL Cartridge for EDB Postgres Advanced Server
The following steps below will help you install and configure Chemaxon JChem PostgreSQL Cartridge:
Download the latest version of Chemaxon JChem PostgreSQL Cartridge.
Install Chemaxon JChem Postgres Cartridge using the following command on CentOS7:
yum localinstall jchem-psql-edb-x.y.x86_64.rpm
Copy a valid Chemaxon license to
/etc/chemaxon/license.cxl
.
mv /home/edb/Desktop/license.cxl /etc/chemaxon/ [root@localhost ~]# ls -lrt /etc/chemaxon/ total 12 -rw-rw-r--. 1 root root 1041 Jun 21 2021 jpc-log4j.xml -rw-rw-r--. 1 root root 2533 Jun 21 2021 jchem-psql.conf drwxr-xr-x. 2 root root 25 Feb 1 04:27 types -rw-r--r--. 1 edb edb 805 Feb 1 04:34 license.cxl [root@localhost ~]#
Initialize the index directory using the following command:
service jchem-psql init
Start the service using the following command:
service jchem-psql manual-start
Login into your EDB Postgres Advanced Server instance and create the following extensions:
CREATE EXTENSION chemaxon_type; CREATE EXTENSION hstore; CREATE EXTENSION chemaxon_framework;
- Execute the following command on your EDB Postgres Advanced Server instance to verify that the jchem-psql service is running:
edb=# SELECT 'C'::Molecule('sample') |<| 'CC'::Molecule; ?column? ---------- t (1 row) edb=#
Could this page be better? Report a problem or suggest an addition!