Login with <sid>adm
Cmd:
Saplikey -get
Output:
HARDWARE KEY = **************
Login with <sid>adm
Cmd:
Saplikey -get
Output:
HARDWARE KEY = **************
in this post, how much enqueue WP is filled info will be shown.
Practical steps:
1. Access the T-code SM12.
2.Resultant screen will looks like below:
3. Perform the below highlighted navigation.
More --> Extra --> Statistics.
4. Maximum no of lock entries supported by the server is 441075
Current filled level is 334519
Conclusion:
Almost 75%+ portion is filled.
Pre - requisites and check:
Mount the installation directory on all hosts.
• Depending on the desired
storage solution. shared storage
devices or separate storage
devices with failover reassignment,
different configurations apply:
o
In a shared
file system, the
data files and log files
are configured so that they are present
and mounted on all hosts, including the primary host.
o In a system that uses separate
storage devices, each host only has access to its own data files and log files.
The suggested locations for the
file systems are as follows:
o /hana/data/<SID›
o /hana/log/<SID>
•
(Optional) Additional storage is configured.
• Root user
name must be the same for all hosts in a
multiple-host system.
• If the root user name is not root,
it must be specified as a parameter during installation using the parameter root_user.
The following
procedure describes the installation of an SAP HANA system in interactive mode and entering
parameters interactively. This procedure may also be performed
in advanced interactive mode or batch mode,
with parameters entered
as call options
or from a configuration file. For more information about interaction modes and parameter
entry methods, see Using the SAP HANA Platform LCM Tools in Related Information.
As of SAP HANA 2.0 SPS 01, the multi-container database mode is the only database mode. By default, a single tenant database is created during installation. You can add additional tenant databases later using the SAP HANA cockpit. SAP HANA options hosts or host roles can be automatically provisioned to a system that is installed with a single tenant. If the SAP HANA system contains multiple tenant databases, the SAP HANA options host or host role must be manually provisioned to the tenant.
Note
Not all parameters are requested interactively. Some parameters have default values that do not require confirmation in
interactive mode. Those parameters must be specified as call options or from a configuration file. For more information
about changeable default values, see
Related Information.
Procedure:
Please log in as root user and create the following directories:
mkdir /hana
mkdir /hana/shared
mkdir /usr/sap
mkdir /hana/data
mkdir /hana/data/HDB
mkdir /hana/log
mkdir /hana/log/HDB
With the following command, we will format our 4 volumes with the ext3 file system (proceed with “y”):
mkfs -t ext3/dev/sdb
Proceed this way to format the remaining volumes:
mkfs -t ext3/dev/sdc
mkfs -t ext3/dev/sdd
mkfs -t ext3/dev/sde
Next, we will edit the file vi/etc/fstab and add the following values, so our volumes will be automatically mounted every time we restart our system. With this, we will achieve that they always will be available as soon as we log in.
/dev/sdb /usr/sap ext3 defaults 0 0
/dev/sdc /hana/data ext3 defaults 0 0
/dev/sdd /hana/log ext3 defaults 0 0
/dev/sde /hana/shared ext3 defaults 0 0
For the rest of the process, a Java package will be required. You can easily install it on your Linux machine using the following commands:
wget http://javadl.sun.com/webapps/download/AutoDL?BundleId=83375
mv “FILE_NAME” java-linux-x64.rpm
Next, type in the following command in order to start unpacking your Java package:
rpm -ivh java-linux-x64.rpm
It is up to you whether you would like to download and decompress the data on a Windows machine or a Linux machine. Keep in mind, though, that the decompressed data must be readily available on your Suse Linux machine.
Within the Marketplace, we download the 10 RAR files – for instance on a Windows machine – and decompress these. For this, you will need a decompression tool such as WinRAR or 7-Zip.
Switch to the directory *DATA_UNITS/HDB_SERVER_LINUX_X86_64 and make the data executable with the following commands:
find -name hdbinst -exec chmod 744 {} +
find -name hdbsetup -exec chmod 744 {} +
find -name hdbuninst -exec chmod 744 {} +
find -name sdbrun -exec chmod 744 {} +
In order to prevent the installation from aborting due to a hardware check, we must deactivate this functionality. Please note that the code below can only be deployed if you have the scripting language Python on your machine. I will just “guess” that you already have Python on your machine:
export IDSPISPOPD=”1″
python
>>> import os
>>> ‘IDSPISPOPD’ in os.environ.keys()
True
>>> quit()
Please make the file hdblcm within the subdirectory /HDB_LCM_LINUX_X86_64 executable: