Posts

ai pc issue

 1. lowering voltage in bios 2. remove or disable intel storage mmiddleware service remove avg might be needed Faulting application name: RstMwService.exe, version: 20.2.6.1025, time stamp: 0x67f90799 Faulting module name: RstMwService.exe, version: 20.2.6.1025, time stamp: 0x67f90799 Exception code: 0xc0000005 Fault offset: 0x0000000000152786 Faulting process id: 0x215C Faulting application start time: 0x1DD1A9CAF4D64DA Faulting application path: C:\WINDOWS\System32\DriverStore\FileRepository\iastorvd.inf_amd64_f28d27d12c1c64c5\RstMwService.exe Faulting module path: C:\WINDOWS\System32\DriverStore\FileRepository\iastorvd.inf_amd64_f28d27d12c1c64c5\RstMwService.exe Report Id: 06e20e46-3962-4997-99f3-3fadf1138e3a Faulting package full name: Faulting package-relative application ID: avgSP avgMonFlt avgSnx These are AVG Antivirus kernel drivers. Security software installs very low-level file system filters, and I've seen AVG cause freezes that look exactly like storage hangs. I recom...

openvpn

If you want to keep these ports untouched: 22 SSH 25 SMTP 53 DNS 80 HTTP 110 POP3 143 IMAP 443 HTTPS/OpenVPN 587 SMTP Submission 943 OpenVPN Admin 993 IMAPS 995 POP3S and redirect everything else to OpenVPN worker ports (916 TCP, 921 UDP), use: nft flush table ip nat nft add table ip nat nft 'add chain ip nat prerouting { type nat hook prerouting priority dstnat; policy accept; }' # TCP redirect everything except important ports nft 'add rule ip nat prerouting tcp dport != { 22,25,53,80,110,143,443,587,943,993,995 } redirect to 916' # UDP redirect everything except DNS nft 'add rule ip nat prerouting udp dport != { 53 } redirect to 921' Verify: nft list table ip nat Expected: table ip nat { chain prerouting { type nat hook prerouting priority dstnat; policy accept; tcp dport != { 22,25,53,80,110,143,443,587,943,993,995 } redirect to :916 udp dport != { 53 } redirect to :921 } } To monitor whether connections...

the connection was terminated by the remote computer before it could be completed

Image
 the connection was terminated by the remote computer before it could be completed

License limits exceeded directadmin

 License limits exceeded directadmin [root@vmi1626803 app1]# ls -lah /usr/local/directadmin/data/users total 16K drwx--x--x  4 diradmin diradmin 4.0K Jun 11 08:15 . drwx--x--x 10 diradmin diradmin 4.0K Jun 11 08:20 .. drwx--x--x  8 diradmin diradmin 4.0K Jun 11 08:17 admin drwx--x--x  6 diradmin diradmin 4.0K Jun 11 08:17 app

iis not found 404 roaplantranchi.com

Image
  HTTP Error 404. The requested resource is not found.

mail migration cyberpanel to whm exim

cd /home/vmail/korb.co.in/brijesh.surani/Maildir/cur  rsync -avhe 'ssh -p 22' ./* root@66.116.232.235:/home/korbco/mail/korb.co.in/brijesh.surani/cur/ change the user only

comfyui connecting reconnecting isuue when using iis as reverse proxy

Image
  The image reveals a critical piece of information that changes the entire troubleshooting path: You are routing your traffic through Cloudflare ( Server: cloudflare , CF-RAY: ...-SIN ) before it ever hits your local Windows 11 IIS proxy ( X-Powered-By: ARR/3.0 ). [ 1 ] Your browser is sending the WebSocket request with compression enabled ( Sec-WebSocket-Extensions: permessage-deflate ), but IIS ARR 3.0 breaks when proxying compressed WebSockets over a third-party CDN like Cloudflare , leading to the instant connection crash and loop you are seeing. [ 1 ] To completely solve this, you need to strip that specific WebSocket compression extension header so IIS and Cloudflare can talk cleanly. The Fix: Force IIS to Strip WebSocket Compression Extensions You need to use the URL Rewrite module on your Windows 11 IIS site to forcibly clear the HTTP_SEC_WEBSOCKET_EXTENSIONS variable. [ 1 ] Step 1: Allow Server Variable Overrides in IIS Open IIS Manager . Click your main Windows 11 Se...