To enable JBoss to connect
to the SQL Server database that stores LiveCycle data, you must
create a SQL Server data source file and deploy it to the instance
of JBoss where you will deploy LiveCycle (for example, [appserver root]/server/lc_sqlserver/deploy).
5.4.3.1 Edit adobe-ds.xml fileOpen the [appserver root]/server/lc_sqlserver/deploy/adobe-ds.xml
file in a text editor and locate this line:
<connection-url>jdbc:sqlserver://localhost:1433;DatabaseName=adobe</connection-url>
<driver-class>com.microsoft.sqlserver.jdbc.SQLServerDriver</driver-class>
<security-domain>MSSQLDbRealm</security-domain>
Replace the following text from the above line with values
that are specific to your database:
localhost:
The name, IP address, or fully-qualified path of the computer that hosts
the database. The default is localhost.
1433: The port used to access the database. The default
port is 1433.
adobe: The name of the database that stores the LiveCycle
data. You will need to update the default value, adobe,
with your database name.
In the lines that follow the <connection-url> settings,
locate the user-name and password settings
and replace the default values with the user name and password that
the application server uses to access your database.
Ensure that the minimum and maximum values for the data source
connections are set as follows:
For IDP_DS:
<min-pool-size>1</min-pool-size>
<max-pool-size>30</max-pool-size>
For EDC_DS:
<min-pool-size>1</min-pool-size>
<max-pool-size>20</max-pool-size>
Note: If your LiveCycle server handles heavy load, increase
the number of maximum JDBC connections to ensure that all jobs are
processed. In such cases, increase <max-pool-size> to
50 or more for both IDP_DS and EDC_DS.
Save and close the file.
5.4.3.2 Edit mssql-ds.xml fileIf you are running LiveCycle with a MS SQL Server database,
you must set SQL Server as the default data source for JBoss. This
procedure assumes that the SQL Server JDBC driver is installed in
the [appserver root]/server/lc_sqlserver/lib directory.
Open the [appserver root]/server/lc_sqlserver/deploy/mssql-ds.xml
file in a text editor and modify the <local-tx-datasource> element
with your SQL Server connection settings:
<jndi-name>DefaultDS</jndi-name>
<connection-url>jdbc:sqlserver://localhost:1433;DatabaseName=adobe</connection-url>
<driver-class>com.microsoft.sqlserver.jdbc.SQLServerDriver</driver-class>
<security-domain>MSSQLDbRealm</security-domain>
Replace the bold text in the above lines with values that
are specific to your database:
localhost: Replace this
value with the host name of your SQL Server.
1433: If
SQL Server is not using the default port, replace this value with
the appropriate port number.
adobe: Replace this value
with your SQL Server database name.
In the lines that follow the <connection-url> settings,
locate the user-name and password settings
and replace the default values with the user name and password that
the application server uses to access your database.
Note: The JDBC driver for SQL Server does not parse
numeric IPv6 addresses. If you are employing the SQL Server in an
IPv6 environment, the server name must be specified in the following
format:
<connection-url>jdbc:sqlserver://;serverName=<IPv6 address>; portNumber=<port>;databaseName=<db_name></connection-url>
Note: When you specify the IPv6 address of the server
in this format, you must note that the string ;serverName is a keyword; it must not be replaced with the actual server name.
Save and close the file.
5.4.3.3 Edit login-config.xml fileOpen the [appserver root]/server/lc_sqlserver/conf/login-config.xml
file in a text editor and modify the following code within the <policy> element:
<application-policy name="MSSQLDbRealm">
<authentication>
<login-module
code="org.jboss.resource.security.SecureIdentityLoginModule" flag
= "required">
<module-option name="principal">adobe</module-option>
<module-option name="userName">adobe</module-option>
<module-option name="password">adobe</module-option>
<module-option
name="managedConnectionFactoryName">jboss.jca:service=LocalTxCM,
name=DefaultDS</module-option>
</login-module>
</authentication>
</application-policy>
Replace the bold text with values that are specific to your
database so that the application server can access your database.
Save and close the file.
Start JBoss.
5.4.3.4 Map the Windows login to the LiveCycle database userUsing Microsoft SQL Server Management Studio, connect
to the database server that hosts the LiveCycle database.
Set the Authentication mode to Windows authentication.
Under Security > Logins, create a new account for
the Windows domain user and select Windows authentication.
Click User Mapping on the Login - New screen and set
the database and default schema for the new user.
Select db_owner as the Database role and click OK.
To verify that you created the user, expand the LiveCycle database
in the tree and open Security > Users. The new user appears
in the list of users.
5.4.3.5 Install the SQL Server database driverNote: If you have not done so already, download
the SQL Server JDBC Driver 4.0 (for all platforms) from Microsoft
Download Center or copy the driver from [DVD root]/third_party/
to the [appserver root]/server/<profile_name>/lib directory.
Also, download and install JDK 1.7.
If you are installing from Microsoft Download Center, follow
the instructions on the website for downloading and installing the
driver. Make a note of the directory location where you install
the driver on your system.
Note: Use SQL Server JDBC Driver 4.0 for Microsoft
SQL Server 2008.
5.4.3.6 Configure integrated security on Windows
Modify the adobe-ds.xml and mssql-ds.xml files, located
in [appserver root]\server\lc_sqlserver\deploy, to add integratedSecurity=true to the
connection URL as shown in this example:
jdbc:sqlserver://<hostname>:<port>;databaseName=<db-name>;integratedSecurity=true.
Replace the values shown in bold in the above example with
values appropriate to your database server.
Add the sqljdbc_auth.dll file to the Windows systems path
(C:\Windows) on the computer that is running JBoss. The sqljdbc_auth.dll
file is located within the Microsoft SQL JDBC 3.0 driver installation
The default location is [SQL_root]/sqljdbc_3.0/enu/auth/x86 for
32-bit operating systems and [SQL_root]/sqljdbc_3.0/enu/auth/x64 for
64-bit operating systems.
Note: Use SQL Server
JDBC Driver 4.0 for Microsoft SQL Server 2008.
Open the properties for the JBoss for Adobe LiveCycle ES4
service or the JBoss service that you configured, and click the Log On tab.
Select ThisAccount and type the value of the
user account that you mapped in 5.4.3.4 Map the Windows login to the LiveCycle database user. If you
are running JBoss from the command line, you must be logged in as
this user.
|
|
|