Search found 22 matches

by proxmoxer
Fri Jul 17, 2026 5:40 pm
Forum: Hosting An Evernode
Topic: Remote access to proxmox
Replies: 0
Views: 17

Remote access to proxmox

When you open proxmox port for public you also open up a vulnerability, there exist millions of webcrawlers searching for open ports (8006 being one of them). First strategy to protect yourself is to install fail2ban, it will then block bruteforce attempts after X amount of tries. 1. (tutorial from ...
by proxmoxer
Sun Jul 12, 2026 7:14 pm
Forum: Hosting An Evernode
Topic: Perc H730 Mini RAID Controller smarttest
Replies: 1
Views: 51

Re: Perc H730 Mini RAID Controller smarttest

Check if drive is failing with
/opt/MegaRAID/perccli/perccli64 /c0/eall/sall show all | grep -E "Predictive|Failed"
by proxmoxer
Sun Jul 12, 2026 7:06 pm
Forum: Hosting An Evernode
Topic: Perc H730 Mini RAID Controller smarttest
Replies: 1
Views: 51

Perc H730 Mini RAID Controller smarttest

a good copypaste, I have tried this and it seems to work well, of course the raid control software changes over time, and over machines. This is for Perc H730 Mini Raid # Checking a Dell PERC H730 Mini RAID Controller on Proxmox VE ## System covered This guide is specifically for: * Proxmox VE * Del...
by proxmoxer
Sun Jul 12, 2026 10:16 am
Forum: Hosting An Evernode
Topic: How to install proxmox + xahau server + your first evernode VM
Replies: 6
Views: 25501

Re: How to install proxmox + xahau server + your first evernode VM

Sometimes you might not be able to reach your public ip from within your vm, one way to solve that issue is to add a firewall rule that routes your public ip to your local vm ip. sudo nano /etc/ufw/before.rules # Redirect connections to the public IP toward the LAN IP *nat :OUTPUT ACCEPT [0:0] -A OU...
by proxmoxer
Tue Jun 09, 2026 3:24 am
Forum: Hosting An Evernode
Topic: How to enable xterm console on proxmox so that you can copy paste into shell
Replies: 0
Views: 472

How to enable xterm console on proxmox so that you can copy paste into shell

This requires modification in your grub file, the grub file is what linux reads when it boots up. If you screw it up, linux won't boot. In that scenario you need to boot into the recovery mode and correct the errors. Step 1. Add a serial port when your VM is running (click your VM, click Hardware, c...
by proxmoxer
Thu May 14, 2026 10:25 pm
Forum: EverPanel
Topic: Everpanel xahau ws seem to work better with local ip instead of npmplus
Replies: 0
Views: 604

Everpanel xahau ws seem to work better with local ip instead of npmplus

When communicating from your evernode vms with your xahau vm it seems like things work better if you use your local ip instead of your domain that is routed through npmplus!

Basically
evernode config xahaud ws://xahaulocalip
by proxmoxer
Wed May 13, 2026 2:38 am
Forum: EverPanel
Topic: Use NPMPlus to manage evernode SSL Certs
Replies: 2
Views: 454

Re: Use NPMPlus to manage evernode SSL Certs

After playing with this for a few days. I DO NOT recommend! The custom certs also need to be injected into the tenant instances, so there's quite a lot of extra work after solving this first piece :) http://gadget78.uk/user-install.sh The everpanel user-install script shows how you can inject ssl c...
by proxmoxer
Sat Feb 21, 2026 7:19 pm
Forum: Hosting An Evernode
Topic: How to install proxmox + xahau server + your first evernode VM
Replies: 6
Views: 25501

Re: How to install proxmox + xahau server + your first evernode VM

Don't forget to do this after installing proxmox: 1. Write touch /etc/default/pveproxy 2. write nano /etc/default/pveproxy 3. add this row: LISTEN_IP=0.0.0.0 4. Hit CTRL + X and then pick Y to save the file. 5. Restart the service systemctl restart pveproxy.service spiceproxy.service Proxmox should ...
by proxmoxer
Sat Feb 14, 2026 11:33 pm
Forum: Hosting An Evernode
Topic: How to install proxmox + xahau server + your first evernode VM
Replies: 6
Views: 25501

Re: How to install proxmox + xahau server + your first evernode VM

Sometimes you need to adjust your xahau allow list (for example if you want to let other people use it, or if you change your ip, or something else), do it with these commands:
sudo nano /root/xahl-node/nginx_allowlist.conf
sudo nginx -s reload
by proxmoxer
Sat Feb 14, 2026 7:38 pm
Forum: Hosting An Evernode
Topic: How to install proxmox + xahau server + your first evernode VM
Replies: 6
Views: 25501

Re: How to install proxmox + xahau server + your first evernode VM

Sometimes you need to send all traffic to the nginx (instead of sending it separately to each respective vm). To do that you need to create two new files in nginx. You Might need to install full nginx with sudo apt install -y nginx-full (feel free to comment if its necessary) There are a few things ...