This page contains answers to some frequently asked questions about the Deployment Package.
The isview tool is a helpful debugging/trouble-shooting aid, but it is currently not possible to directly access it using the deployment agent client. Follow the next steps to make it accessible:
- Connect to the machine using ssh/remote desktop
- Determine the directory of the instance you want to look at
$ bin/deployment-agent-client describe-instance INSTANCE_NAME ... directory=/somewhere/instances/INSTANCE_NAME ...
The output of this will contain a line that starts with "directory=", and contains the actual directory.
- Determine the installation of this instance
$ bin/deployment-agent-client describe-instance INSTANCE_NAME ... installation=INSTALLATION_NAME ...
- Determine the directory of the installation of this instance
$ bin/deployment-agent-client describe-installation INSTALLATION_NAME ... directory=/somewhere/installations/INSTALLATION_NAME ...
- Link the required files
$ cd /somewhere/instances/INSTANCE_NAME $ cp -lr /somewhere/installations/INSTALLATION_NAME/bin . $ cp -lr /somewhere/installations/INSTALLATION_NAME/lib . $ cp -lr /somewhere/installations/INSTALLATION_NAME/etc . $ chmod +x bin/*

Do not softlink the directories, as this may destroy your setup when the instance is removed later. - Run bin/isview
$ bin/isview
Comments
0 comments
Article is closed for comments.