|
@@ -26,3 +26,29 @@ two partitions are installed. when you run an upgrade the VM will install the up
|
|
|
Hit ghe- (TAB) to view all ghe commands.
|
|
|
https://help.github.com/en/enterprise/2.17/admin/installation/command-line-utilities
|
|
|
|
|
|
+
|
|
|
+# Installing new license
|
|
|
+
|
|
|
+Should be able to do just via the UI. https://github.mdr.defpoint.com:8443/setup/upgrade.
|
|
|
+But there's a gotcha with disabling the DSA key (for a fedramp POAM). Your services
|
|
|
+may not restart after updating the license.
|
|
|
+
|
|
|
+```
|
|
|
++ cp /data/user/common/ssh_host_rsa_key /data/user/common/ssh_host_rsa_key.pub /data/user/common/ssh_host_dsa_key /data/user/common/ssh_host_dsa_key.pub /data/user/common/ssh_host_ecdsa_key /data/user/common/ssh_host_ecdsa_key.pub /etc/ssh/
|
|
|
+cp: cannot stat '/data/user/common/ssh_host_dsa_key': No such file or directory
|
|
|
+cp: cannot stat '/data/user/common/ssh_host_dsa_key.pub': No such file or directory
|
|
|
+Jun 30 16:09:54 ERROR: Preparing storage device
|
|
|
+```
|
|
|
+
|
|
|
+License install procedure:
|
|
|
+
|
|
|
+```
|
|
|
+sudo bash -c "mv /data/user/user-tmp/ssh_host_dsa* /data/user/common/"
|
|
|
+# Now install the new license
|
|
|
+
|
|
|
+sudo mkdir /data/user/user-tmp
|
|
|
+sudo mv /data/user/common/ssh_host_dsa_key* /data/user/user-tmp/
|
|
|
+sudo systemctl restart babeld
|
|
|
+```
|
|
|
+
|
|
|
+I'll open a case with github too.
|