Posts

blob not found

 zmprov gmi ravikumar.bodkhe@mswc.in [zimbra@mail root]$ zmprov gmi ravikumar.bodkhe@mswc.in mailboxId: 13 quotaUsed: 22033786536 zxsuite hsm docheckblobs start mailbox_ids 13 zmblobchk -m 13 start > /tmp/blob_user1 Mailbox 13, item 281, rev 26, volume 1, /opt/zimbra/store/0/13/msg/0/281-26.msg: blob not found. rsync -avz --progress /secondary/opt/zimbra/store/0/13/ /opt/zimbra/store/0/13/ to restore complete mail for all users rsync -avz --progress /secondary/opt/zimbra/store/ /opt/zimbra/store/ chown -R zimbra:zimbra /opt/zimbra/

network edition zimbra backup

 curl -k -u 'admin@mail.pngsl.com:8Rpg#2589' https://mail.pngsl.com:7071/home/aditya.modak@pngsl.com/?fmt=tgz > /secondary/5sep/aditya.modak@pngsl.com.tgz Create the same cmd for all the mail ids, curl -k -u 'admin@mail.pngsl.com:8Rpg#2589' https://mail.pngsl.com:7071/home/aditya.modak@pngsl.com/?fmt=tgz > /secondary/5sep/aditya.modak@pngsl.com.tgz , admin will be fixed for all, admin@mail.pngsl.com aditya.modak@pngsl.com ajit.gadgil@pngsl.com amit.salvi@pngsl.com

zimbra patch

 yum clean metadata  yum check-update yum install zimbra-patch

hestiacp custom config for api.krishit.com

 Best Solution: Create a Custom Proxy Template Instead of modifying the generated config, create your own template. 1. Copy the existing templates cd /usr/local/hestia/data/templates/web/nginx cp default.tpl api-node.tpl cp default.stpl api-node.stpl 2. Edit api-node.stpl Replace this: location / {     proxy_ssl_server_name on;     proxy_ssl_name $host;     proxy_pass https://%ip%:8443; } with: location / {     if ($request_method = OPTIONS) {         add_header Access-Control-Allow-Origin "https://hrms.krishit.com" always;         add_header Access-Control-Allow-Credentials "true" always;         add_header Access-Control-Allow-Methods "GET, POST, PUT, DELETE, OPTIONS" always;         add_header Access-Control-Allow-Headers "Authorization, Content-Type, Accept, Origin, X-Requested-With" always;         return 204;     }    ...

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...

0x800F0922 when trying to enable iis

Internet  information services hostable web core was enabled causing the issue Also check this Because IIS Hostable Web Core is enabled in your screenshot, run: DISM /Online /Disable-Feature /FeatureName:IIS-HostableWebCore Reboot, then: DISM /Online /Enable-Feature /FeatureName:IIS-WebServerRole /All The combination of a partially enabled IIS component and failed deployment packages is a common cause of 0x800F0922.

The processing instruction target matching "[xX][mM][lL]" is not allowed.

 https://easyappicon.com/ app icon issue

websocket error

 SocketClient.js:2 WebSocket connection to 'wss://api.krishit.com/socket.io/?EIO=4&transport=websocket' failed: createSocket @ websocket.js:119 doOpen @ websocket.js:24 open @ transport.js:47 _open @ socket.js:197 constructor @ socket.js:150 constructor @ socket.js:565 constructor @ socket.js:725 open @ manager.js:111 constructor @ manager.js:39 lookup @ index.js:29 (anonymous) @ SocketClient.js:2 __webpack_require__ @ bootstrap:19Understand this error SocketClient.js:10 err.message: websocket error SocketClient.js:11 err.description: Event {isTrusted: true, type: 'error', target: WebSocket, currentTarget: WebSocket, eventPhase: 2, …} SocketClient.js:12 err.context: undefined SocketClient.js:13 err.cause: undefined SocketClient.js:14 err.stack: Error: websocket error at websocket.onError (https://hrms.krishit.com/static/js/1360.26ea5dd2.chunk.js:1:7431) at ws.onerror (https://hrms.krishit.com/static/js/1360.26ea5dd2.chunk.js:1:13930) SocketClient.js:15 err.name: Err...

message has lines too long for transport

  message has lines too long for transport  begin transports spamexperts_smarthost_transport:   driver = smtp   port = 587   hosts_require_tls = 4274.smtp.antispamcloud.com   message_linelength_limit = 52428800 # .include_if_exists /etc/exim.dkim.conf # hosts_require_auth = * .include_if_exists /etc/exim.transports.pre.conf

sync flood request

 sync flood block icmp protocol ##ICMP Block iptables -A INPUT -p icmp -j DROP ping request

make windows password less

Method 2: Auto-Login (Bypass Login Screen) If you just want Windows to boot straight to your desktop without entering credentials upon startup (while keeping the password saved for security), you can use the netplwiz tool. [ 1 ] Press Windows Key + R to open the Run dialog box. Type netplwiz and hit Enter . In the window that pops up, uncheck the box that says "Users must enter a user name and password to use this computer" . Click Apply . Enter your current username and password in the confirmation boxes, click OK , and restart your PC.  

windows 11 startup

  Quick Setup via Startup Folder Since the desktop app doesn't always appear in the standard Windows "Startup Apps" list, use this manual method:  Find the ComfyUI Shortcut : Locate the "ComfyUI" icon on your desktop that was created during installation. If you can't find it: Search for "ComfyUI" in the Start menu, right-click it, and select Open file location . Open the Startup Folder : Press Win + R on your keyboard, type shell:startup , and click OK . Add the Shortcut : Copy your ComfyUI desktop shortcut and paste it into the folder that just opened.   put nginx and comfyui

iis server window not showing only started in task bar windows 11

  In a command prompt:  C:\Windows\System32\inetsrv\Inetmgr.exe /reset This problem occurs when I open IIS Manager and when I have two monitors, and then later try to open it again over RDP with only one monitor. Using this reset command fixes it for me. This works on RDP sessions which do not preview the window from the taskbar and thus cannot perform Abhijeet's steps.