Step 3: Set the location of the solutions directory
To deploy JBoss correctly, Pentaho recommends that you define the location of the pentaho-solutions
directory in the web.xml
file.
Perform the following steps to define the location.
If you have not done so already, use a ZIP extraction utility such as 7-Zip, WinZip, or Archive to view the contents of the
<your jboss installation directory>/standalone/deployments/pentaho.war
file. Do not unzip thepentaho.war
file; just view its contents.Navigate to the
WEB-INF
directory in thepentaho.war
file and open theweb.xml
file in a text editor.Locate the following <context-param> tags.
<context-param> <param-name>solution-path</param-name> <param-value></param-value> </context-param>
Set the parameter value of the solution-path to the pentaho-solutions path. An example of the code is below.
<context-param> <param-name>solution-path</param-name> <param-value>/home/pentaho/server/pentaho-server/pentaho-solutions</param-value> </context-param>
Save the changes and close the file
Last updated
Was this helpful?