install_onlyoffice_docs_ubuntu_server_22_04
Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
install_onlyoffice_docs_ubuntu_server_22_04 [2023/06/29 02:36] – wikiadmin | install_onlyoffice_docs_ubuntu_server_22_04 [2023/06/29 05:24] (current) – wikiadmin | ||
---|---|---|---|
Line 4: | Line 4: | ||
See: [[install_nettools_upbuntu_server_get_ifconfig_command|Install NetTools on Ubuntu Server to enable ifconfig command]] | See: [[install_nettools_upbuntu_server_get_ifconfig_command|Install NetTools on Ubuntu Server to enable ifconfig command]] | ||
+ | |||
+ | < | ||
+ | |||
+ | Check the current dynamically assigned version 4 IP address on the server using ifconfig command. | ||
+ | |||
+ | < | ||
+ | ifconfig | ||
+ | |||
+ | eno1: flags=4163< | ||
+ | inet 192.168.2.163 | ||
+ | | ||
+ | lo: flags=73< | ||
+ | inet 127.0.0.1 | ||
+ | </ | ||
See: [[configure_static_ip_address_ubuntu_server_22_04|Configure Static IP Address on Ubuntu Server 22.04]] | See: [[configure_static_ip_address_ubuntu_server_22_04|Configure Static IP Address on Ubuntu Server 22.04]] | ||
+ | Make a backup the network configuration installer file. | ||
+ | |||
+ | < | ||
+ | $ cd / | ||
+ | |||
+ | user@svr:/ | ||
+ | 00-installer-config.yaml | ||
+ | |||
+ | user@svr:/ | ||
+ | ' | ||
+ | |||
+ | user@svr:/ | ||
+ | 00-installer-config.bak | ||
+ | |||
+ | user@svr:/ | ||
+ | </ | ||
+ | |||
+ | < | ||
+ | user@svr1:/ | ||
+ | </ | ||
+ | |||
+ | Here is the original dhcp configuration for eno1. | ||
+ | |||
+ | < | ||
+ | # This is the network config written by ' | ||
+ | network: | ||
+ | ethernets: | ||
+ | eno1: | ||
+ | dhcp4: true | ||
+ | version: 2 | ||
+ | |||
+ | </ | ||
+ | |||
+ | Change this configuration to the following: | ||
+ | |||
+ | < | ||
+ | # This is the network config written by ' | ||
+ | network: | ||
+ | renderer: networkd | ||
+ | ethernets: | ||
+ | eno1: | ||
+ | addresses: | ||
+ | - 192.168.2.163/ | ||
+ | routes: | ||
+ | - to: default | ||
+ | via: 192.168.2.1 | ||
+ | nameservers: | ||
+ | addresses: | ||
+ | dhcp4: no | ||
+ | version: 2 | ||
+ | </ | ||
+ | |||
+ | Apply the network changes: | ||
+ | |||
+ | < | ||
+ | sudo netplan apply | ||
+ | </ | ||
+ | |||
+ | Restart Network Service | ||
+ | |||
+ | < | ||
+ | sudo systemctl restart systemd-networkd.service | ||
+ | </ | ||
+ | |||
+ | Run ifconfig to check the static network configuration | ||
+ | |||
+ | < | ||
+ | ifconfig -a | ||
+ | |||
+ | eno1: flags=4163< | ||
+ | inet 192.168.2.163 | ||
+ | | ||
+ | lo: flags=73< | ||
+ | inet 127.0.0.1 | ||
+ | |||
+ | </ | ||
+ | |||
+ | **Install ONLYOFFICE Docs on Ubuntu 22.04** | ||
+ | See: [[https:// | ||
+ | To be continued . . . |
install_onlyoffice_docs_ubuntu_server_22_04.1688006191.txt.gz · Last modified: 2023/06/29 02:36 by wikiadmin