What Is SSFS
What Is SSFS
As of kernel release 7.20, SAP has therefore introduced a new method of securely
storing the database password and for connecting to the database: "Secure
Storage in File System" (SSFS). The encrypted password for the SAP
database user is then no longer stored in the database, but in the file
system.
Prior to SSFS, the connection between the SAP system (AS ABAP) and the SAP tools
that use the ABAP database interface (R3trans, R3load etc.) to the database via
SQLNet (using the database alias name, for like configured in TNS) worked in such a
way that an OPS$ connection (with the database user OPS$<SID>ADM) that was
authorized by the operating system user sidadm was created first ( via "connect
/@TNS"). With this approach access to the table OPS$<SID>ADM.SAPUSER, and to
this table was only allowed. It contains the encrypted password for the actual
database connection of the SAP database user (default name Schema User).
SW pre-requisites:
setenv rsdb_ssfs_connect 0
setenv RSEC_SSFS_DATAPATH /sapmnt/<SID>/global/security/rsecssfs/data
setenv RSEC_SSFS_KEYPATH /sapmnt/<SID>/global/security/rsecssfs/key
NOTE: Make sure you are updating these env variable for app server also
else app server will not come up after this activity.
Note: For doing bounce come out from sidadm and do again sudo su
sidadm and then perform system bounce.
6. Setting up the SSFS data storage and checking the access rights
and perform check:
Note: For doing bounce come out from sidadm and do again sudo su
sidadm and then perform system bounce.
Check below entries in SM50 work process log --- B read_con_info_ssfs(): DBSL
supports extended connect protocol
B ==> connect info for default DB will be read from ssfs
download BRTOOLS DBA per note 1764043, require version execution - uptime
7.20 patch 28 is required (10 minutes)
From SAP perspective, the following are the 6 most important background processes of
oracle database.
The database writer writes dirty blocks from the database buffer to the datafiles.
Dirty blocks need to be flushed out to disk to make room for new blocks in the cache. When
a buffer in the database buffer cache is modified it is marked as dirty buffer. A cold
buffer is a buffer that has not been recently used according to the least recently used
(LRU) algorithm. The database writer writes cold, dirty buffers to disk so that new blocks
can be read into the cache.
The database writer writes the dirty buffers to disk under the following conditions :
The log writer process writes data from the redolog buffers to the redolog files on disk.
The redolog buffer is a circular buffer. When LGWR writes redo entries from the redolog
buffer to the redolog file, server processes can overwrite the entries that are already copied
with new entries in redolog buffer. LGWR writes at a faster pace so that space is always
available in the buffer for new entries.
The log writer gets activated under the following conditions :
Checkpoint (CKPT) :
Checkpoint signals the synchronization of all database files with the check point information.
It ensures data consistency and faster database recovery in case of a crash.
The checkpoint process regularly initiates a checkpoint. Whenever a check point occurs
following things are carried out :
1. Updating the file headers of the data files with information about the last checkpoint
performed
2. Update control files about the last checkpoint
3. Initiates LGWR to flush the redolog buffer entries to redolog files.
4. Writes the checkpoint record to the redolog file
5. Initiates DBWR to write all dirty blocks to disk and thus synchronizes database
Archiver Process(ARCH) :
The archiver process copies online redolog files to the designation archive log location after
the occurrence of a log switch. It is an optional process. Archiver is present only when
database is running in archive log mode and automatic archiving is enabled.
However it is not recommended for us to change this value, as Log writer starts a new
archiver process automatically when the current archive processes are insufficient to handle
the workload
PMON checks the running status of dispatcher and server processes periodically and restarts
in case any have stopped. Please note that this wont start processes that are intentionally
stopped by Oracle.
PMON also registers information about the instance and dispatcher processes with the
network listener.
PMON wakes up every 3 seconds to perform house keeping activities and should be running
always for an instance.
The system monitor performs instance recovery, if necessary, at instance startup. SMON is
also responsible for cleaning up temporary segments that are no longer in use and for
coalescing contiguous free extents within dictionary managed tablespaces.
SMON can be called by other processes in cases of need. SMON wakes up every 5 seconds
to perform house keeping activities. SMON must always be running for an instance.
Goto SQL prompt of oracle database system and provide following command to view
background processes.
SQL>