Difference between revisions of "Rename OpenVMS Node"
m |
Jenstevesen (talk | contribs) m (Changed SYS$LOGIN:SYSTARTUP_VMS.COM to SYS$MANAGER:SYSTARTUP_VMS.COM. One should be logged in as SYSTEM, but if not...) |
||
Line 4: | Line 4: | ||
1. Edit systartup_vms.com to disable starting sys$batch. | 1. Edit systartup_vms.com to disable starting sys$batch. | ||
− | • EDIT SYS$ | + | • EDIT SYS$MANAGER:SYSTARTUP_VMS.COM |
• Look (F1) for sys$batch and comment out | • Look (F1) for sys$batch and comment out | ||
Line 70: | Line 70: | ||
• INIT/QUEUE/BATCH SYS$BATCH | • INIT/QUEUE/BATCH SYS$BATCH | ||
− | • EDIT SYS$ | + | • EDIT SYS$MANAGER:SYSTARTUP_VMS.COM |
• Look (F1) for sys$batch and uncomment the line | • Look (F1) for sys$batch and uncomment the line |
Revision as of 18:23, 17 January 2023
Rename OpenVMS node
1. Edit systartup_vms.com to disable starting sys$batch.
• EDIT SYS$MANAGER:SYSTARTUP_VMS.COM
• Look (F1) for sys$batch and comment out
• $ START /QUEUE SYS$BATCH
• to look like
• $! START /QUEUE SYS$BATCH
• ctrl-z
• This is necessary for systartup_vms.com not to crash when the queue is missing.
2. Remove all queues, like sys$batch.
• STOP/QUEUE/NEXT SYS$BATCH
• DELETE/QUEUE SYS$BATCH
3. Modify SCSNODE value in modparams.dat and run autogen.com.
• EDIT SYS$SYSTEM:MODPARAMS.DAT
• ctrl-z
• @DKA0:[VMS$COMMON.SYSUPD]AUTOGEN
4. Rename node.
• RUN SYS$SYSTEM:SYSGEN
• SHOW SCSNODE
• SET SCSNODE “NEWNAME”
• WRITE CURRENT
• EXIT
5. Rename identifier sys$node_oldname to sys$node_newname.
• RUN SYS$SYSTEM:AUTHORIZE
• RENAME/IDENTIFIER SYS$NODE_OLDNAME SYS$NODE_NEWNAME
• EXIT
6. Reboot.
• REBOOT
7. After the reboot, log in via serial console and configure TCP/IP.
• @SYS$LOGIN:TCPIP$CONFIG
• Follow the menus, best to configure options 1-4 by pressing “A”
• Do not start TCP/IP until it is fully configured.
• Enable ssh client and server.
8. Log in via ssh and ctrl-t to test new name. Recreate batches like sys$batch.
• INIT/QUEUE/BATCH SYS$BATCH
• EDIT SYS$MANAGER:SYSTARTUP_VMS.COM
• Look (F1) for sys$batch and uncomment the line
• $! START /QUEUE SYS$BATCH
• to look like
• $ START /QUEUE SYS$BATCH
• ctrl-z