Hi everybody, I'm trying to execute an xaction containing a data integration step.
I set my settings.xml file located at pentaho-solutions/system/kettle as follows:
and my repository located at /ROOT/.kettle/ as follows
And starting my xaction from Design Studio I have the following error without any useful information: ERROR_0004 - [it_260] The repository specified was not found (x)
What I'm wrong?
THANKS.
I set my settings.xml file located at pentaho-solutions/system/kettle as follows:
Code:
<kettle-repository>
<!-- The values within <properties> are passed directly to the Kettle Pentaho components. -->
<!-- This is the location of the Kettle repositories.xml file, leave empty if the default is used: $HOME/.kettle/repositories.xml -->
<repositories.xml.file></repositories.xml.file>
<repository.type>rdbms</repository.type>
<!-- The name of the repository to use -->
<repository.name>1</repository.name>
<!-- The name of the repository user -->
<repository.userid>admin</repository.userid>
<!-- The password -->
<repository.password>admin</repository.password>
</kettle-repository>
Code:
<?xml version="1.0" encoding="UTF-8"?>
<repositories>
<connection>
<name>MY_CONN</name>
<server>localhost</server>
<type>POSTGRESQL</type>
<access>Native</access>
<database>pdi</database>
<port>5432</port>
<username>postgres</username>
<password>Encrypted </password>
<servername/>
<data_tablespace/>
<index_tablespace/>
<attributes>
<attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
<attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
<attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
<attribute><code>PORT_NUMBER</code><attribute>5432</attribute></attribute>
<attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
<attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>N</attribute></attribute>
<attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
</attributes>
</connection>
<repository>
<id>KettleDatabaseRepository</id>
<name>1</name>
<description>PRIMO</description>
<connection>MY_CONN</connection>
</repository> </repositories>
What I'm wrong?
THANKS.