Friday, April 8, 2011

Building Noetix Search instance on Linux / Solaris platform

This post if for people using Noetix Search on a Linux or Solaris platform. Installation guide supplied with the tool only has steps to install Noetix search on Linux not how to build a search instance for a databse.

Here is a quick guide we got from Noetix

On a computer running Linux or Solaris, at the command prompt, locate the folder where Noetix Search Builder is installed (/usr/local/noetixsearch/builder, by default). Type run.sh --action . Use the table below to view the syntax and description for the action, input, and flag that you provide in the command.



NOTE: If you have set any or all of the above flag inputs in the Noetix.Search.Builder.properties file, you do not need to specify them again while running a command. The command will automatically take the settings that you make in the Noetix.Search.Builder.properties file. Moreover, setting the Solr URL as default in this file will keep you from having to specify it every time you run a command.

Examples: The following are some examples that may help you understand the task of running commands and providing inputs better.

To build a new instance:
run.sh --action build --alias NoetixViews Prod -u noetix_sys -p pw -s http://localhost:80/solr/ --tns ohs

Where the value for action is "build", for alias is "NoetixViews Prod", for username is " noetix_sys", for password is " pw", for Solr URL is "http://localhost:80/solr/", and for TNS name is "ohs"

To rebuild an existing instance:
run.sh --action rebuild --alias NoetixViews Prod -s http://localhost:80/solr/ -p pw

Where the value for action is "rebuild", for alias is "NoetixViews Prod", for Solr URL is "http:// localhost:80/ solr/", and for password is " pw"

To delete an instance:
run.sh --action delete --alias NoetixViews Prod -s http://localhost:80/solr/

Where the value for action is "delete", for alias is "NoetixViews Prod", for Solr URL is "http://localhost:80/solr/"

No comments:

Post a Comment