DCFM Migration and Transition Guide v10.0.1 (53-1001074-01, December 2008)
Table Of Contents
- Contents
- About This Document
- Installation
- In this chapter
- Requirements
- Professional edition installation
- Installing Professional edition on Windows systems
- Professional edition pre-installation requirements on UNIX systems
- Installing Professional edition on UNIX systems
- Professional edition pre-installation requirements (headless)
- Installing Professional edition on UNIX systems (headless)
- Troubleshooting the Linux installation
- Enterprise trial installation
- Enterprise trial requirements
- Installing Enterprise trial on Windows systems
- Enterprise trial pre-installation requirements on UNIX systems
- Installing Enterprise trial on UNIX systems
- Enterprise trial pre-installation requirements on UNIX systems (headless)
- Installing Enterprise trial on UNIX systems (headless)
- Enterprise edition installation
- Installing enterprise edition on Windows systems
- Enterprise edition pre-installation requirements on UNIX systems
- Installing Enterprise edition on UNIX systems
- Enterprise edition pre-installation requirements on UNIX systems (headless)
- Installing Enterprise edition on UNIX systems (headless)
- Installing the ODBC driver
- Smart Card driver installation (Linux and Solaris only)
- Configuring an explicit server IP address
- Uninstall
- Migration
- In this chapter
- Headless installation information
- Professional edition migration
- Professional edition pre-migration requirements on Windows systems
- Migrating from Professional edition to Enterprise edition on Windows systems
- Professional edition pre-migration requirements on UNIX systems
- Migrating from Professional edition to Enterprise edition on UNIX systems
- Professional edition pre-migration requirements on UNIX systems (headless)
- Migrating from Professional edition to Enterprise edition on UNIX systems (headless)
- Troubleshooting Linux installation
- Enterprise trial migration
- Enterprise trial requirements
- Enterprise trial pre-migration requirements on Windows systems
- Migrating from Enterprise trial to Enterprise edition on Windows systems
- Enterprise trial pre-migration requirements on UNIX systems
- Migrating from Enterprise trial to Enterprise edition on UNIX systems
- Enterprise trial pre-migration requirements on UNIX systems (headless)
- Migrating from Enterprise trial to Enterprise edition on UNIX systems (headless)
- EFCM migration
- Importing names
- Fabric Manager migration
- Transition
- Index
DCFM Migration and Transition Guide 35
53-1001074-01
1
3. If there is an existing pcscd script in this directory, you can move and rename this file before
you overwrite it.
> mv /etc/init.d/pcscd /etc/init.d/pcscd.org
4. Create a soft link using the following command.
> ln –s /opt/pcsc/pcscctl /etc/init.d/pcscd
The existing pcscd.org script in this directory implies that a different driver version exists. You
can compare the existing one with the one under /opt/pcsc/pcscd/sbin. If the size is different
and the existing pcscd script contains the following information, you will need to clean up the
driver configuration. The example below shows a different pscsd.org script and how to do the
configuration cleanup. The configuration level is 2345, the start priority is 25 and the stop
priority is 88.
> more /etc/init.d/pcscd
#!/bin/sh
#
# pcscd Starts the pcscd Daemon
#
# chkconfig: 2345 25 88
5. To remove the existing pcscd start priority file, you need to delete the file as SNNpcscd, where
NN is the start priority. For example, from the preceding step, the file name is S25pcscd.
> find /etc/. –name “S25pcscd” –exec rm {} \; -print
> sync;sync;sync
> reboot
After the reboot, the new configuration from the /opt/pcsc/pcscctl file should be under
/etc/rc2.d, /etc/rc3.d, /etc/rc4.d and /etc/rc5.d directories.
lrwxrwxrwx 1 root root 15 Jul 28 01:50 S94pcscd -> ../init.d/pcscd
6. For the remote client, ensure that the smart card native library is linked to the one under
/opt/pcsc/lib.
> cd /
> find . –name libpcsclite.so* -print
If the library libpcsclite.so* exists in multiple locations, you must ensure that there is only one
library under /lib or /usr/lib, and that it is linked to the library on /opt/pcsc/lib correctly. For
example, to find a copy of the library on /lib use the following commands.
> cd /lib
> ls –al libpcsclite.so
If it exists, either remove it or save it as a backup.
to find a copy of the library on /usr/lib use the following commands.
> cd /usr/lib
> ls –al libpcsclite.so
Use this copy for the soft link.
> ln –s /opt/pcsc/lib/libpcsclite.so /usr/lib/.