-- ********************************************************************
-- * Copyright Notice : (c)1998-2007 OraPub, Inc.
-- * Filename : readme.txt
-- * Author : Craig A. Shallahamer
-- * Original : 01-OCT-98
-- * Last Update : 20-nov-07
-- * Description : OSM-I installation instructions
-- * Usage : editor readme.txt
-- ********************************************************************
Use this software at your own risk!
There are no implied warrenties or guarentees.
Welcome to the OraPub System Monitor - Interactive or OSM-I.
Here's how to install:
- Just a note: OSM_BASE is currently not referenced anywhere in
the software. But this may change, so I'd recommend setting it.
- Consider creating an "osm" or "osmmon" Oracle user account.
- The "osm" user only needs to select from the v$ views
and create a few tables for interium storage. The role of OEM should do it
and of course granting DBA will also do it.
- So the sleep function can be called, insure the "osm" user can do:
SQL exec sys.dbms_lock.sleep(5);
If not, than grant execute on dbms_lock to "osm";
- Make sure the OSM interactive scripts are in your PATH and ORACLE_PATH. Here
is an example of how to set this in your login profile.
export OSM_BASE=$ORACLE_BASE/local/osm
export PATH=$OSM_BASE/historical:$OSM_BASE/interactive:$PATH
export ORACLE_PATH=$OSM_BASE/historical:$OSM_BASE/interactive:$ORACLE_PATH
- Run "prep" script. Login into SQL*Plus as the "osm" user and
run osmprep.sql.
- To see the OSM-I menu, from within SQL*Plus, run osmi.sql. That's it!
--end--