Pentaho Connect to File Repository Setup

I am trying to connect to the Pentaho Data Integration (Spoon aka PDI) file repository.

Display Name: "testing"

URL: http://localhost:8080/Pentaho

When I click "Finish" it says this:

We couldn't connect.

Your connection was created, but we tested it and were not able to connect to your server. Please check that the server is running.

I'm not sure what I am doing wrong. Any suggestions?

Theories:

  1. What does http://localhost:8080/Pentaho point to? My spoon file is located in "pdi-..." folder. Maybe I need to call this that instead?
  2. My 8080 port is enabled, so it can't be that.
  3. I disabled my firewall on my private connections, so it can't be that.

Upvotes: 0

Views: 1952

Answers (1)

Tatchai S.
Tatchai S.

Reputation: 425

Pentaho Data Integration has three approaches to store transformation/jobs: Local File Repository, Database Repository (without Pentaho Server is already deprecated), and Pentaho Repository (Recommended) for more detail you can find them here.

From your question, you created a connection to connect to Pentaho Repository but Pentaho Repository didn't come along with PDI. You need to install Pentaho Server (the underly of Pentaho server also uses a database to store metadata about transformation/jobs by default it uses HSQLDB but you can change it to your desired database). After you've installed and started the server. You will be able to access the main page at http://localhost:8080/Pentaho and connect to it in Pentaho Data Integration for more detail about Pentaho Server you can find here

Upvotes: 1

Related Questions