Install Config Wiki

All about installing, configuring and troubleshooting

User Tools

Site Tools


install_onlyoffice_docs_ubuntu_server_22_04

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
install_onlyoffice_docs_ubuntu_server_22_04 [2023/06/29 02:34] wikiadmininstall_onlyoffice_docs_ubuntu_server_22_04 [2023/06/29 05:24] (current) wikiadmin
Line 1: Line 1:
-====== install onlyoffice docs on Ubuntu server 22.04  ======+====== Install OnlyOffice Docs on Ubuntu server 22.04  ======
  
-https://installconfig.com/doku.php?id=install_nettools_upbuntu_server_get_ifconfig_command+Step By Step
  
-[[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]]
  
-[[configure_static_ip_address_ubuntu_server_22_04|Configure Static IP Address on Ubuntu Server 22.04]]+<code>sudo apt install net-tools</code>
  
 +Check the current dynamically assigned version 4 IP address on the server using ifconfig command.
  
 +<code>
 +ifconfig
  
 +eno1: flags=4163<UP,BROADCAST,RUNNING,MULTICAST>  mtu 1500
 +        inet 192.168.2.163  netmask 255.255.255.0  broadcast 192.168.2.255
 +        
 +lo: flags=73<UP,LOOPBACK,RUNNING>  mtu 65536
 +        inet 127.0.0.1  netmask 255.0.0.0
 +</code>
 +
 +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.
 +
 +<code>
 +$ cd /etc/netplan/
 +
 +user@svr:/etc/netplan$ ls
 +00-installer-config.yaml
 +
 +user@svr:/etc/netplan$ sudo cp -v 00-installer-config.yaml 00-installer-config.bak
 +'00-installer-config.yaml' -> '00-installer-config.bak'
 +
 +user@svr:/etc/netplan$ ls
 +00-installer-config.bak  00-installer-config.yaml
 +
 +user@svr:/etc/netplan$
 +</code>
 +
 +<code>
 +user@svr1:/etc/netplan$ sudo vim 00-installer-config.yaml
 +</code>
 +
 +Here is the original dhcp configuration for eno1.
 +
 +<code>
 +# This is the network config written by 'subiquity'
 +network:
 +  ethernets:
 +    eno1:
 +      dhcp4: true
 +  version: 2
 +
 +</code>
 +
 +Change this configuration to the following:
 +
 +<code>
 +# This is the network config written by 'subiquity'
 +network:
 +  renderer: networkd
 +  ethernets:
 +    eno1:
 +      addresses:
 +        - 192.168.2.163/24
 +      routes:
 +        - to: default
 +          via:  192.168.2.1
 +      nameservers:
 +        addresses:  [8.8.8.8,4.4.4.4,192.168.2.1]
 +      dhcp4: no
 +  version: 2
 +</code>
 +
 +Apply the network changes:
 +
 +<code>
 +sudo netplan apply
 +</code>
 +
 +Restart Network Service
 +
 +<code>
 +sudo systemctl restart systemd-networkd.service
 +</code>
 +
 +Run ifconfig to check the static network configuration
 +
 +<code>
 +ifconfig -a
 +
 +eno1: flags=4163<UP,BROADCAST,RUNNING,MULTICAST>  mtu 1500
 +        inet 192.168.2.163  netmask 255.255.255.0  broadcast 192.168.2.255
 +        
 +lo: flags=73<UP,LOOPBACK,RUNNING>  mtu 65536
 +        inet 127.0.0.1  netmask 255.0.0.0
 +
 +</code>
 +
 +**Install ONLYOFFICE Docs on Ubuntu 22.04**
 +
 +See: [[https://unixcop.com/install-onlyoffice-docs-on-ubuntu-22-04/]]
 +
 +To be continued . . . 
install_onlyoffice_docs_ubuntu_server_22_04.1688006065.txt.gz · Last modified: 2023/06/29 02:34 by wikiadmin