to improve DB solid performance, solid.ini file need to edit
there are 4 parameters that can be edit to improve solid DB performance:
1. CacheSize
2. Threads
3. LogEnabled
4. ForceThreadToSystemScope
edit those for parameters accordingly:
CacheSize = 512MB
Threads = (2 * number of processor) + 1
LogEnabled = Yes
ForceThreadToSystemScope = Yes
Modifying the solid.ini File
To modify the solid.ini file, complete the following steps.
1. Stop all the processes by running the following command at a command prompt:
ovstop -c
2. Move to the directory where the solid.ini file is located:
cd $OV_DB/analysis/default
3. Create a backup copy of the solid.ini file:
cp solid.ini solid.ini.org
4. Open the solid.ini file for editing and make your changes.
5. Save your changes and close the file.
6. Start the ovdbcheck process:
ovstart -c ovdbcheck
7. Start the remaining processes:
ovstart –c
To check the discovery improvements that result from these solid configuration file changes, restart the
discovery by running the following command: etrestart.ovpl -disco
There are 2 ways to mount iso file in hp-ux 1) using LVM method (to copy ISO into a logical volume) is the same as for older HP-UX releases: 1. Find out the size of the ISO image: # du -k /data/myImage.iso NOTE: The size will be in Kb. 2. Create a logical volume for the ISO image: # lvcreate -L -n iso /dev/vg00 NOTE: The name of the logical volume will be /dev/vg00/iso 3. Copy the ISO file to the raw logical volume: # dd if=/data/myImage.iso of=/dev/vg00/riso bs=64k 4. Create a temporary directory and mount the /dev/vg00/iso volume # mkdir /iso_image # mount /dev/vg00/iso /iso_image NOTE: For HP-UX 11.11 you must install the latest CDFS patches: PHCO_25841 Add Rock Ridge extension to mount_cdfs(1M) PHKL_26269 Rock Ridge extension for ISO-9660 PHKL_34153 CDFS cumulative patch 2) Available in HP-UX 11.31 0909: ISOIMAGE-ENH. Provides a new DLKM module fspd. Required to mount, read and umount the ISO image file. The comm...
Comments