Add swacl for client and server:
client:
swacl -l root -M other:@ignite.server.fqdn:rt
Ignite server:
swacl -l root -M other:@client.hostname.fqdn:rt
My random tech problems and chicken scratching for notes on what I did to solve them.
Add swacl for client and server:
client:
swacl -l root -M other:@ignite.server.fqdn:rt
Ignite server:
swacl -l root -M other:@client.hostname.fqdn:rt
From an HPUX box, if you can't connect to an ilo / ilo2 and you get this: Received disconnect from XXXX: 11: Client Disconnect
The fix is to either use putty or a linux host to ssh from, or use the following options:
ssh -o HostKeyAlgorithms=ssh-rsa,ssh-
For a big NFS server:
grep -e ^NFSD_SERVERS -e ^MAX_STATD_THREADS /etc/default/nfs
ch_rc -a -p NFSD_SERVERS=400 /etc/default/nfs
ch_rc -a -p MAX_STATD_THREADS=1600 /etc/default/nfs
New IGNITE server install. Make_net_recovery on client fails with this: ERROR: Retrieving Ignite-UX version on the server
Fix by:
swacl -l host -M 'any_other:-r--t'
swacl -l root -M 'any_other:-r--t'
then run make_recovery again.
remember hex must be in uppercase for BC command on most linux / unix distros
echo "ibase=16;obase=2;000000004B817EFB" | bc
results:
1001011100000010111111011111011space it out to make it easier to read:alias spc=" sed 's/./& /g'"
echo "ibase=16;obase=2;000000004B817EFB" | bc | spc1 0 0 1 0 1 1 1 0 0 0 0 0 0 1 0 1 1 1 1 1 1 0 1 1 1 1 1 0 1 1
ERROR: The fileset XXXXX will not fit on the tape
"/tmp/XXX.depot". The fileset requires 4249089 Kbytes of
tape space, but the tape provides only 1298828 Kbytes. The
fileset requires a larger tape.
Fix by:
swpackage -s /source/dir -x allow_large_serial_depot=true -x media_capacity=50000 -x target_type=tape @ /ignite/r11.depot bundle/package/etc
media_capacity=larger than depot file
HKLM\SOFTWARE\Policies\Microsoft\Windows NT\Terminal Services\Client\
Create a dword and assign a value of 1 to: tofClientDisableUDP dword:00000001
If a server is not properly configured for long host names, the kernel tunable expanded_node_host_names needs to be set to1 and the server may need to be rebooted (even though the kernel tunable parameter is dynamic).
I believe this only works if you have certain patches installed or at 11.31 or something, not sure.Use dbprofile and lanboot on an Itanium server but get this:
PXE-E18: Server response timeout.
and this shows up in the ignite server's syslog:
tftp: client does not accept options
receive: RRQ /opt/ignite/boot/hpux.efi octet blksize 16384
send: OACK blksize 16384
send_file: recv: Can't assign requested address
receive: RRQ /opt/ignite/boot/hpux.efi octet blksize 16384
send: OACK blksize 16384
send_file: recv: Can't assign requested address
receive: RRQ /opt/ignite/boot/hpux.efi octet blksize 16384
send: OACK blksize 16384
Transfer timed out
Then add the following option to the tftpd entry in inetd.conf:
-s -r blksize
so something like this:
tftp dgram udp wait root /usr/lbin/tftpd tftpd -s -r blksize /opt/ignite /var/opt/ignite
See this for full instructions:
http://h20000.www2.hp.com/bizsupport/TechSupport/Document.jsp?lang=en&cc=us&taskId=110&prodSeriesId=4077173&prodTypeId=18964&objectID=c03083630
fsadm command to extend a file system online wasn't working – got this error:
UX:vxfs fsadm: ERROR: V-3-25255: fsadm: You don't have a license to run this program
I then checked and did not see the OnlineJFS product, so I did the following steps to fix it and was able to then extend the file system:
swinstall -x autoreboot=true -x mount_all_filesystems=false -s DEPOTSERVER:/depot/11.31 B3929EA
then you should b able to extend.
http://h30499.www3.hp.com/t5/System-Administration/HP-UX-v3-agile-view/td-p/4605137
symmaskdb list database -sid SymmSerialNum -v | grep SPC
This is for the BL860c i2 blades (and other i2 models):
Replace a failed LVM mirror disk that is attached to a SmartArray SAS controller.
Notes: For this example /dev/disk/disk2 is the failed disk and /dev/disk/disk4 is the new device that was created because the SAS controller identified a new disk.
Notes: For this example the SAS controller device is /dev/ciss0
Notes: The failed disk is in volume group vg00
Identify the disk by serial number. Give the Bay number to the HP CE so they know which disk to replace:
sautil /dev/ciss0 -s
scsimgr get_info -D /dev/rdisk/disk2
Deactivate the PV:
pvchange -a n /dev/disk/disk2
Replace the failed disk.
Activate the WWID of the new disk. The Error can be ignored. A new disk device should be created:
scsimgr -f replace_wwid -D /dev/rdisk/disk2 dsf
scsimgr: ERROR: Cannot convert hardware path to an IO tree node
Find the new disk device that was created:
ioscan -fNnC disk
Create a description file to create the EFI partitions:
# cat >> /tmp/idf << EOF
3
EFI 500MB
HPUX 100%
HPSP 400MB
Use idisk to setup the disk partitioning on the new disk device:
idisk -wf /tmp/idf /dev/rdisk/disk4
insf -e –C disk
Assign the old instance number to the replacement disk:
io_redirect_dsf -d /dev/disk/disk2 -n /dev/disk/disk4
Verify that /dev/disk/disk2 is in a claimed state:
ioscan –fnNC disk
Use mkboot to format and populate the newly created EFI partition:
mkboot -e -l /dev/disk/disk2
Change the AUTO file contents to the proper mode:
mkboot -a "boot vmunix -lq" /dev/rdisk/disk2
Restore the LVM reserved areas (PVRA/VGRA):
vgcfgrestore –n vg00 /dev/rdisk/disk2_p2
Reattach the new disk:
pvchange -a y /dev/disk/disk2_p2
Sync volume group:
vgsync vg00
Use lvlnboot to ensure that the LVM logical volumes are prepared:
lvlnboot -R
lvlnboot -v
OR:
One suggestion I've seen on the HP forums is to try setting
"LIST_MODE=1" in /etc/rc.config.d/list_mode, rather than the default
value of zero. This forces the startup to use the same line-oriented
mode regardless of the terminal type. It might be worth a try.
with the patches or on 11.31 it's 16TB
ssh -o PreferredAuthentications=hostbased,publickey
I couldn't get the PasswordAuthentication=no option to work, so the
above saved me