Section
1, Task 1: Start IT Service Vision Action 1: Invoke the IT Service Vision server interface. |
|
You can start IT Service Vision in one step or two. Use whichever method works best for you.
The command is:
itsv -sasroot sasroot
where itsv is the name of a shell script in your IT Service Vision misc directory and sasroot is the location at which SAS is installed.
For example:
cd !cproot/misc
./itsv -sasroot sasroot
or
!cproot/misc/itsv -sasroot sasroot
To start SAS and then start IT Service Vision, issue these commands:
Invoke SAS by issuing this command at your shell prompt
sas -dms &
(or the appropriate site command if your site customized the command for starting SAS)
Globals -> Options -> Command -> type CPE -> OK
%cpstart();
and then follow this path
Locals -> Submit
From the IT Service Vision main window, select
Administration -> Site Options -> General -> select the down arrow on the Sitelib Access field -> WRITE -> OK
Note: Both the CPE command and the %cpstart macro invoke IT Service Vision.
If, in other tasks, you want to invoke IT Service Vision with parameters, create a file containing the %CPSTART macro with the desired parameters and start SAS by pointing to the file as follows (see SAS System documentation for more information on using the -autoexec option):
sas -autoexec mypgm.sas
or start SAS and type the statements at the PROGRAM EDITOR. Examples of these statements are:
%CPSTART( pdb='/tmp/pdb-test', siteacc=write );
%CPSTART( pdb='/tmp/pdb-test', access=write );
%CPSTART( pdb='/tmp/pdb-test', access=write, siteacc=write );
Then, from your PROGRAM EDITOR window, select Locals and Submit.