Skip to main content

Notice: This Wiki is now read only and edits are no longer possible. Please see: https://gitlab.eclipse.org/eclipsefdn/helpdesk/-/wikis/Wiki-shutdown-plan for the plan.

Jump to: navigation, search

Difference between revisions of "SMILA/5 Minutes Tutorial"

m (New page: === 1. Download and unpack EILF application. === Image:Save-and-extract.png === 2. Start EILF engine. === To start EILF engine open terminal, navigate to directory that contains ...)
 
m
Line 6: Line 6:
  
 
=== 2. Start EILF engine. ===
 
=== 2. Start EILF engine. ===
 
 
 
To start EILF engine open terminal, navigate to directory that contains extracted files and run EILF executable. Wait until the engine is fully started. You should see output similar to the screenshot below
 
To start EILF engine open terminal, navigate to directory that contains extracted files and run EILF executable. Wait until the engine is fully started. You should see output similar to the screenshot below
  
Line 14: Line 12:
  
 
=== 3.Log file. ===
 
=== 3.Log file. ===
 
 
 
You can check what's happening from the log file. Log file is placed into the same directory as EILF executable and is named EILF.log
 
You can check what's happening from the log file. Log file is placed into the same directory as EILF executable and is named EILF.log
  
 
[[Image:Log-file.png]]
 
[[Image:Log-file.png]]
 +
 +
 +
=== 4.Managing crawling jobs. ===
 +
Now when EILF engine is up and running we can start and manage crawling jobs. Crawling jobs are managed over JMX protocol, that means that we need to connect to EILF with some JMX client.
 +
Let's use JConsole that is available with Sun Java distribution.
 +
 +
[[Image:Jconsole-connect.png]]
 +
 +
 +
Next, open MBeans tab, expand the EILF node in the MBeans tree to the left and click on org.eclipse.eilf.connectivity.framework.CrawlerController node.
 +
It's the point from where all crawling activities are managed and monitored. You can see some crawling attributes at the right pane.
 +
 +
[[Image:Mbeans-overview.png]]
 +
 +
 +
=== 5.Starting filesystem crawler. ===
 +
To start a crawler, open Operations tab at the right pane, type 'file' in the inputbox next to the startCrawl button and press the startCrawl button.
 +
 +
[[Image:Start-file-crawl.png]]

Revision as of 05:49, 12 September 2008

1. Download and unpack EILF application.

Save-and-extract.png


2. Start EILF engine.

To start EILF engine open terminal, navigate to directory that contains extracted files and run EILF executable. Wait until the engine is fully started. You should see output similar to the screenshot below

Start-engine.png


3.Log file.

You can check what's happening from the log file. Log file is placed into the same directory as EILF executable and is named EILF.log

Log-file.png


4.Managing crawling jobs.

Now when EILF engine is up and running we can start and manage crawling jobs. Crawling jobs are managed over JMX protocol, that means that we need to connect to EILF with some JMX client. Let's use JConsole that is available with Sun Java distribution.

Jconsole-connect.png


Next, open MBeans tab, expand the EILF node in the MBeans tree to the left and click on org.eclipse.eilf.connectivity.framework.CrawlerController node. It's the point from where all crawling activities are managed and monitored. You can see some crawling attributes at the right pane.

Mbeans-overview.png


5.Starting filesystem crawler.

To start a crawler, open Operations tab at the right pane, type 'file' in the inputbox next to the startCrawl button and press the startCrawl button.

Start-file-crawl.png

Back to the top