Match Group <group name>
ForceCommand internal-sftp -u 73
Or, add the following two lines at the end of the file to configure the sftp umask for a single user.
Match User <user name>
ForceCommand internal-sftp -u 73
My random tech problems and chicken scratching for notes on what I did to solve them.
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
server$ set -o | grep ignoreeof
ignoreeof on
server$ set +o ignoreeof
server$ set -o | grep ignoreeof
ignoreeof off
server$ hit cntl-D
logout
It might be helpful if a bunch of us complained about this missing key on the iPhone and iPod touch keyboards - leave feedback about the missing backtick/grave accent character at: http://www.apple.com/feedback/iphone.html
Really stupid for them to have it on the email address fields even though it's an invalid char for email addresses.