Location of Information Specified During Installation

This manual is in pilot operation.

The following information specified during the installation of fusion_place is recorded within the fusion_place installation folder:

1. Location and Name of the File Where Information is Recorded

The aforementioned information is recorded in the server.xml file located within the conf subfolder in the fusion_place installation folder.

The fusion_place installation folder is the folder specified in the "Installation Folder" field during the installation of fusion_place. The initial suggested value by the installer is C:\fusion_place-n.n…​ (n.n…​ represents the version number). For example, for version 8.0.0, it would be C:\fusion_place-8.0.0.

2. Contents of server.xml

The server.xml is a file formatted in XML. To check its contents, please open it with a text editor like Notepad or a web browser.

Below is an example. The boxed sections contain the installation-specified information.

<?xml version="1.0"?>
  <Server shutdown="SHUTDOWN" port="5001"> (1)
    <Service name="fusion_ware_server">
      <Executor name="fpThreadPool" minSpareThreads="4" maxThreads="200" namePrefix="fp-exec-" />
      <Connector port="50000" (2)
        connectionTimeout="60000"
        acceptCount="100" enableLookups="false" maxPostSize="-1" executor="fpThreadPool"
        protocol="org.apache.coyote.http11.Http11NioProtocol"
        server="fusion_ware" />
        <!-- Example SSL Connector configuration -->
        <!--
          <Connector protocol="org.apache.coyote.http11.Http11NioProtocol"
            server="fusion_ware" executor="fpThreadPool" maxPostSize="-1" enableLookups="false"
            acceptCount="100" connectionTimeout="600000" scheme="https" secure="true" SSLEnabled="true"
            keystoreFile="(path to a Java key store file)"
            keystorePass="(password for the keystore. Might be 'changeit')"
            keyAlias="(alias of the certificate to be used with this server)"
            clientAuth="false" sslProtocol="TLS" port="(port number)" />
        -->
      <Engine name="fpEngine" defaultHost="localhost" >
        <Realm className="org.apache.catalina.realm.MemoryRealm" />
        <Host name="localhost" appBase="webapps" unpackWARs="true">
          <Valve className="org.apache.catalina.valves.AccessLogValve" directory="logs" prefix="localhost_access_log." suffix=".txt" pattern="common" />
          <Context path="/fusionplace" docBase="fusionplace.war">
            <Environment name="fusionplace/dbms" type="java.lang.String" value="H2" />
            <Environment name="fusionplace/pivot_time_out" value="60000" type="java.lang.Integer" />
            <!--
              <Environment name="fusionplace/mail_smtp_host" type="java.lang.String" value="nowhere.com" />
              <Environment name="fusionplace/mail_smtp_port" type="java.lang.Integer" value="25" />
              <Environment name="fusionplace/mail_server_account" type="java.lang.String" value="fusionplace@nowhere.com" />
              <Environment name="fusionplace/mail_server_password" type="java.lang.String" value="hogehoge" />
              <Environment name="fusionplace/mail_sender_address" type="java.lang.String" value="fusionplace@nowhere.com" />
              <Environment name="fusionplace/mail_sender_name/ja" type="java.lang.String" value="System administrator's Japanese name" />
              <Environment name="fusionplace/mail_sender_name/en" type="java.lang.String" value="System administrator's English name" />
            -->
            <Resource name="fusionplace/datasource"
              auth="Container"
              type="javax.sql.DataSource"
              maxActive="100"
              maxIdle="30"
              maxWait="10000"
              driverClassName="org.h2.Driver"
              username="dbadmin" password="" (3)
              url="jdbc:h2:C:\FusionPlace_DB\db\fusionplace;CACHE_SIZE=65536" /> (4)
          </Context>
        </Host>
      </Engine>
    </Service>
  </Server>
1 Shutdown Port Number: In this example, 50001.
2 HTTP / 1.1 Connector Port Number: In this example, 50000.
3 Username and Password: In this example, the username is dbadmin, and the password is blank.
4 Folder for Database: In this example, C:\FusionPlace_DB (ignore the leading jdbc:h2: and the subsequent \db\fusionplace; backslashes are represented by \yen;).