Service failed to start during MSI install. Fix:
Click Ignore to finish install.
Check port conflict:
netstat -ano | findstr :9182
Check service log: Event Viewer → Windows Logs → System, filter for windows_exporter
Verify config file syntax if using --config.file (YAML) or collector flags — bad ...
Search found 65 matches
- 2026 Aug 04, 10:12
- Forum: Windows
- Topic: Windows node exporter install error
- Replies: 0
- Views: 113

- 2026 Apr 15, 12:45
- Forum: Docker
- Topic: GitLab SSH Access Configuration
- Replies: 0
- Views: 170880

GitLab SSH Access Configuration
Overview:
This document describes the full process of configuring SSH access for a GitLab instance running inside a Docker container, behind an ISP router with dynamic IP, using Cloudflare DNS and a Cloudflare Tunnel for HTTPS.
Environment:
GitLab Docker Image | gitlab/gitlab-ce:18.10.0-ce.0 ...
This document describes the full process of configuring SSH access for a GitLab instance running inside a Docker container, behind an ISP router with dynamic IP, using Cloudflare DNS and a Cloudflare Tunnel for HTTPS.
Environment:
GitLab Docker Image | gitlab/gitlab-ce:18.10.0-ce.0 ...
- 2026 Mar 12, 16:08
- Forum: Linux
- Topic: USB NICs not recognized: Debian 13
- Replies: 0
- Views: 83429

USB NICs not recognized: Debian 13
Update and install usb-modeswitch:
apt update && sudo apt install usb-modeswitch -y
Create FIx service:
touch /etc/systemd/system/nic-fix.service
Add configuration:
[Unit]
Description=Fix Realtek USB NIC Mode
After=network.target
[Service]
Type=oneshot
# ExecStart=/usr/sbin/usb_modeswitch ...
apt update && sudo apt install usb-modeswitch -y
Create FIx service:
touch /etc/systemd/system/nic-fix.service
Add configuration:
[Unit]
Description=Fix Realtek USB NIC Mode
After=network.target
[Service]
Type=oneshot
# ExecStart=/usr/sbin/usb_modeswitch ...
- 2026 Jan 17, 14:58
- Forum: Docker
- Topic: Docker compose: PiHole and Unbound [arm64]
- Replies: 0
- Views: 2244426

Docker compose: PiHole and Unbound [arm64]
PiHole and Unbound docker compose install and configuration:
Docker network inteface creation
docker network create -d macvlan \
--ipv6 \
--subnet=192.168.1.0/24 \
--gateway=192.168.1.1 \
--subnet=fd53:50:50::/64 \
--gateway=fd53:50:50::1 \
-o parent=eth0 \
lan_ipv6
docker-compose ...
Docker network inteface creation
docker network create -d macvlan \
--ipv6 \
--subnet=192.168.1.0/24 \
--gateway=192.168.1.1 \
--subnet=fd53:50:50::/64 \
--gateway=fd53:50:50::1 \
-o parent=eth0 \
lan_ipv6
docker-compose ...
- 2025 Nov 29, 12:29
- Forum: RaspberryPi
- Topic: FreeBSD Install on RaspberryPi4
- Replies: 0
- Views: 309729

FreeBSD Install on RaspberryPi4
Download image from https://www.freebsd.org/where/ website > SD Card > RPI (3/4)
Chose FreeBSD-14.3-RELEASE-arm64-aarch64-RPI.img.xz or latest Version.
Write the .img.xz to SD Card using Raspberry Pi Manager.
Install the SD Card in the Raspberry Pi.
Connect a keyboard and a monitor the the Raspberry ...
Chose FreeBSD-14.3-RELEASE-arm64-aarch64-RPI.img.xz or latest Version.
Write the .img.xz to SD Card using Raspberry Pi Manager.
Install the SD Card in the Raspberry Pi.
Connect a keyboard and a monitor the the Raspberry ...
- 2025 Jul 28, 16:19
- Forum: Linux
- Topic: Grafana CLI
- Replies: 0
- Views: 40314

Grafana CLI
Admin password reset:
Code: Select all
grafana-cli admin reset-admin-password your-new-password- 2024 Dec 04, 12:25
- Forum: Linux
- Topic: GitLab Grafana service force disabled
- Replies: 0
- Views: 180832

GitLab Grafana service force disabled
For installed gitlab omnibus
Edit file default.rb from the gitlab installation path ( example: /opt/gitlab/...... ):
vim /opt/gitlab/embedded/cookbooks/monitoring/recipes/default.rb
Add the following code in the file:
# Disable Grafana service.
runit_service 'grafana' do
action :disable
end ...
Edit file default.rb from the gitlab installation path ( example: /opt/gitlab/...... ):
vim /opt/gitlab/embedded/cookbooks/monitoring/recipes/default.rb
Add the following code in the file:
# Disable Grafana service.
runit_service 'grafana' do
action :disable
end ...
- 2024 Jul 22, 12:22
- Forum: Linux
- Topic: Git: Some useful cmds
- Replies: 0
- Views: 115197

Git: Some useful cmds
- Hard reset to a older commit
Code: Select all
git clone --branch dev https://git.url/repoCode: Select all
git reset --hard 0d13251515b04e69d589737b0fa6b4c40069f175Code: Select all
git push origin dev -f- 2024 Jul 06, 13:52
- Forum: Linux
- Topic: Ubuntu / Debian: Update SSH from source
- Replies: 0
- Views: 116767

Ubuntu / Debian: Update SSH from source
For Ubuntu/Debian:
Install dependencies:
sudo apt install build-essential zlib1g-dev libssl-dev -y
Download the SSH package:
wget https://cloudflare.cdn.openbsd.org/pub/OpenBSD/OpenSSH/portable/openssh-9.8p1.tar.gz
Extract the package from archive:
tar xzvf openssh-9.8p1.tar.gz
Call ...
Install dependencies:
sudo apt install build-essential zlib1g-dev libssl-dev -y
Download the SSH package:
wget https://cloudflare.cdn.openbsd.org/pub/OpenBSD/OpenSSH/portable/openssh-9.8p1.tar.gz
Extract the package from archive:
tar xzvf openssh-9.8p1.tar.gz
Call ...
- 2024 Jun 22, 19:01
- Forum: Linux
- Topic: Configuration file for Bash shell environment
- Replies: 0
- Views: 114746

Configuration file for Bash shell environment
Custom Prompt (GLOBAL for all users):
The following configuration will apply to all users in the system.
If you have personalized Prompt for every user individually, the following configuration will override it.
Create and edit file custom_prompt.sh
vim /etc/profile.d/custom_prompt.sh
Add the ...
The following configuration will apply to all users in the system.
If you have personalized Prompt for every user individually, the following configuration will override it.
Create and edit file custom_prompt.sh
vim /etc/profile.d/custom_prompt.sh
Add the ...
- 2024 Jun 18, 13:51
- Forum: Linux
- Topic: GitLab: Terminal CMDS
- Replies: 0
- Views: 121516

GitLab: Terminal CMDS
Starting a Rails console session:
Linux package (Omnibus):
sudo gitlab-rails console -e production
Docker:
docker exec -it <container-id> gitlab-rails console
Self-compiled (source):
sudo -u git -H bundle exec rails console -e production
Helm chart (Kubernetes):
# find the pod ...
Linux package (Omnibus):
sudo gitlab-rails console -e production
Docker:
docker exec -it <container-id> gitlab-rails console
Self-compiled (source):
sudo -u git -H bundle exec rails console -e production
Helm chart (Kubernetes):
# find the pod ...
- 2024 Jun 17, 13:56
- Forum: Linux
- Topic: Ubuntu / Debian: Remove all old kernels script
- Replies: 0
- Views: 115082

Ubuntu / Debian: Remove all old kernels script
Create a file with the following content:
#!/bin/bash -e
# Run this script without any arguments for a dry run
# Run the script with root and with exec arguments for removing old kernels and modules after checking
# the list printed in the dry run
uname -a
IN_USE=$(uname -a | awk '{ print $3 ...
#!/bin/bash -e
# Run this script without any arguments for a dry run
# Run the script with root and with exec arguments for removing old kernels and modules after checking
# the list printed in the dry run
uname -a
IN_USE=$(uname -a | awk '{ print $3 ...
- 2024 Feb 19, 11:37
- Forum: Docker
- Topic: Docker sysadmin
- Replies: 0
- Views: 231615

Docker sysadmin
This list will be upgraded with time.
Update all images:
docker images | grep -v IMAGE | awk '{print $1}' | xargs -L1 docker pull
Remove all images with no tags ( <none> ):
docker image ls | egrep none | awk '{print $3}' | xargs docker image rm
Show disk usage detailed
docker system df ...
Update all images:
docker images | grep -v IMAGE | awk '{print $1}' | xargs -L1 docker pull
Remove all images with no tags ( <none> ):
docker image ls | egrep none | awk '{print $3}' | xargs docker image rm
Show disk usage detailed
docker system df ...
- 2023 Aug 28, 17:09
- Forum: Linux
- Topic: Gitlab change the default home page url
- Replies: 0
- Views: 116002

Gitlab change the default home page url
Cannot change Home page URL from the admin page
Login into internal gitlab database
sudo -u gitlab-psql /opt/gitlab/embedded/bin/psql -h /var/opt/gitlab/postgresql -d gitlabhq_production
Check home_page_url:
select home_page_url from application_settings;
home_page_url ...
Login into internal gitlab database
sudo -u gitlab-psql /opt/gitlab/embedded/bin/psql -h /var/opt/gitlab/postgresql -d gitlabhq_production
Check home_page_url:
select home_page_url from application_settings;
home_page_url ...
- 2023 May 03, 23:20
- Forum: Windows
- Topic: Windows could not complete the installation
- Replies: 0
- Views: 284336

Windows could not complete the installation
Press SHIFT + F10 to open the command prompt (cmd).
The command CD C:\windows\system32\oobe is executed in cmd.
Press the Enter key.
The command is executed in cmd: msoobe.
Press the Enter key.
A window opens with the creation of the username.
After creating the username, the operating ...
The command CD C:\windows\system32\oobe is executed in cmd.
Press the Enter key.
The command is executed in cmd: msoobe.
Press the Enter key.
A window opens with the creation of the username.
After creating the username, the operating ...
- 2023 May 03, 23:18
- Forum: Windows
- Topic: Windows: USB Stick: Device Not Recognized / Unknown Device in Windows 7/8/10
- Replies: 0
- Views: 221857

Windows: USB Stick: Device Not Recognized / Unknown Device in Windows 7/8/10
Cause: Most probably the USB stick was physically removed from the USB port without applying the unmount or eject function ( FROM THE WINDOWS OPERATING SYSTEM ).
This phenomenon can cause the stick's functionality to be ineffective on Linux-type operating systems as well. The actual error in the ...
This phenomenon can cause the stick's functionality to be ineffective on Linux-type operating systems as well. The actual error in the ...
- 2023 May 03, 23:15
- Forum: Linux
- Topic: Search in files containing a "key" word
- Replies: 0
- Views: 105840

Search in files containing a "key" word
Command
Output
Code: Select all
[root @ centos ~]$ grep -H -R "Board index" /var/www/* | cut -d: -f1Code: Select all
/var/www/phpBB/language/en/common.php- 2023 May 03, 23:04
- Forum: Linux
- Topic: Ampps: X Error: BadAccess
- Replies: 0
- Views: 103408

Ampps: X Error: BadAccess
Error
X Error: BadAccess (attempt to access private resource denied) 10
Extension: 130 (MIT-SHM)
Minor opcode: 1 (X_ShmAttach)
Resource id: 0x13d
Add QT_X11_NO_MITSHM=1 to /etc/environment file.
In most cases, the operating system requires a restart after modifying the /etc/environment file.
X Error: BadAccess (attempt to access private resource denied) 10
Extension: 130 (MIT-SHM)
Minor opcode: 1 (X_ShmAttach)
Resource id: 0x13d
Add QT_X11_NO_MITSHM=1 to /etc/environment file.
In most cases, the operating system requires a restart after modifying the /etc/environment file.
- 2023 May 03, 23:02
- Forum: Linux
- Topic: RHEL/CentOS: iRedMail SSL Certificates
- Replies: 0
- Views: 49956

RHEL/CentOS: iRedMail SSL Certificates
This tutorial shows replacing iRedMail's default SSL certificates with Let's Encrypt certificates.
Replacing iRedMail certificates:
A back-up is created for the old certificates (in case the Let`s Encrypt certificate creation operation fails):
[root @ CentOS ~]$ mv /etc/pki/tls/certs/iRedMail.crt ...
Replacing iRedMail certificates:
A back-up is created for the old certificates (in case the Let`s Encrypt certificate creation operation fails):
[root @ CentOS ~]$ mv /etc/pki/tls/certs/iRedMail.crt ...
- 2023 May 03, 23:00
- Forum: Linux
- Topic: NexCloud: [UPGRADE] Step 5 is currently in process. Please reload this page later.
- Replies: 0
- Views: 49684

NexCloud: [UPGRADE] Step 5 is currently in process. Please reload this page later.
This error occurs after attempting a platform upgrade.
Solution:
We access the root folder where the NextCloud platform is installed. In our case /var/www/html/nextcloud/data
[root @ CentOS7]$ cd /var/www/html/nextcloud/data
[root @ CentOS7]$ ls -asl | egrep "updater-"
4 drwxr-x---. 4 apache ...
Solution:
We access the root folder where the NextCloud platform is installed. In our case /var/www/html/nextcloud/data
[root @ CentOS7]$ cd /var/www/html/nextcloud/data
[root @ CentOS7]$ ls -asl | egrep "updater-"
4 drwxr-x---. 4 apache ...