Search found 8 matches
NextCloud
NextCloud can be installed as a snap package during Ubuntu 24.04 installation How to use Apache2 as a web proxy https://github.com/nextcloud/all-in-one/blob/main/reverse-proxy.md#apache In addition config.php should be updated as it is written here: https://www.reddit.com/r/NextCloud/comments/qawc7...
- Mon Mar 20, 2023 12:17 pm
- Forum: Linux
- Topic: How to use SFTP with a chroot jail
- Replies: 0
- Views: 256
How to use SFTP with a chroot jail
Creating a new group The first thing to do is to create a new group for SFTP users. Open a terminal window and issue the command: sudo groupadd sftponly Adding and modifying users Next, we need to add users to this new group. If you need to create a new users (and add them to the group), this can be...
- Tue Mar 14, 2023 10:29 am
- Forum: XPX coding
- Topic: Iteration on aggregate. REPEAT. WHILE.
- Replies: 0
- Views: 303
Iteration on aggregate. REPEAT. WHILE.
Sometimes we need to alter aggregate content during iteration on it. New element can be added to a aggregate. The following example demonstrates possible problem. Initial aggregate size is 3. There are 3 elements in there. In REPEAT cycle we append one more element But anyway REPEAT makes only 3 ite...
- Tue Nov 29, 2022 9:22 pm
- Forum: Linux
- Topic: VirtualBox. Shared folder
- Replies: 0
- Views: 225
VirtualBox. Shared folder
How to make shared folder in VirtualBox guest - Ubuntu There is no need to mount the guest additions ISO and install from it if your guest OS is Ubuntu. Instead, open a terminal and enter the following sudo apt-get install virtualbox-guest-utils See here: https://askubuntu.com/questions/573596/unabl...
- Wed Nov 24, 2021 9:28 pm
- Forum: Linux
- Topic: Sonatype nexus upgrade
- Replies: 0
- Views: 257
Sonatype nexus upgrade
Existing version: nexus-3.19.1-01 Version to upgrade: nexus-3.37.0-01 Stop nexus: /etc/init.d/nexus stop Get the latest version wget https://download.sonatype.com/nexus/3/latest-unix.tar.gz Extract downloaded package. Note, all files inside sonatype-work will remain tar xzvf latest-unix.tar.gz Repla...
- Tue Aug 27, 2019 9:38 am
- Forum: XPX coding
- Topic: xpfSizeOf vs EXISTS
- Replies: 1
- Views: 303
xpfSizeOf vs EXISTS
Function xpfSizeOf was introduces quite long time ago. Before standard EXISTS function was used. According to standard EXISTS requires input value to be NOT empty. Before EXISTS was used in the following way doc_rel_list := get_representing_product_relationship('urn:plcs:rdl:missing-std:Document_dep...
- Mon Aug 26, 2019 7:39 pm
- Forum: Linux
- Topic: GitLab. backup/restore
- Replies: 0
- Views: 239
GitLab. backup/restore
I was able to make back-up and restore GitLab to "fresh" GitLab installation. Probably I was just lucky. Linux: Ubuntu 16.04 GitLab: 10.2.4 Create back-up on fixed copy of the Git server sudo gitlab-rake gitlab:backup:create Back-up package appeared /var/opt/gitlab/backups/1566846988_2019_...
- Mon Aug 26, 2019 11:54 am
- Forum: Linux
- Topic: How to recover network
- Replies: 0
- Views: 242
How to recover network
Linux version: Ubuntu 16.04 server amd64, VirtualBox VM Occasionally network access stopped to work on the server. Command ifconfig gives only lo interface. ifconfig.lo.png First attempt was to change network adapter in VM settings. I even changed MAC and added an extra network adapter. No result ye...