Search found 146 matches

by isscbta
Mon Mar 17, 2025 11:36 am
Forum: PHP
Topic: How to Improve PHP-FPM Performance by Adjusting max_execution_time and Disabling zlib_output_compression
Replies: 0
Views: 1107

How to Improve PHP-FPM Performance by Adjusting max_execution_time and Disabling zlib_output_compression

If you’ve noticed performance issues or intermittent “stuttering” on your server, adjusting a few PHP-FPM settings might help. Below is a quick recap of our tweaks and how they helped resolve error messages and potential timeouts. 1. Identify the Problem We observed frequent occurrences of the follo...
by isscbta
Mon Mar 17, 2025 11:33 am
Forum: Bash
Topic: How to release deleted files held by a running process
Replies: 0
Views: 1120

How to release deleted files held by a running process

When you delete a file that is still being accessed by a process, the file may remain on the disk until that process releases it. This often happens if a Bash session is holding onto the file via an open file descriptor. Below is a quick guide on how to identify and fix this issue: 1. Identify Open ...
by isscbta
Mon Mar 17, 2025 11:29 am
Forum: Third-party software
Topic: How to Fix the "ENOSPC: System Limit for Number of File Watchers Reached" Error When Running npm run dev
Replies: 0
Views: 1153

How to Fix the "ENOSPC: System Limit for Number of File Watchers Reached" Error When Running npm run dev

We encountered an issue when running the command `npm run dev` on our server. Here's a quick overview: Issue Description: 1. The `npm run dev` command starts normally for a second or two. 2. Then the system begins to output errors: `Error: ENOSPC: System limit for number of file watchers reached, wa...
by isscbta
Mon Mar 17, 2025 11:09 am
Forum: Web
Topic: Increasing cookie size limit in nginx and apache
Replies: 0
Views: 324

Increasing cookie size limit in nginx and apache

This guide explains how to increase the buffer size for URL + cookies accepted by the server in incoming http/https requests. This is done by modifying the relevant configurations in Nginx and Apache . Below is a step-by-step guide to making these changes. [hr] Nginx Configuration By default, Nginx ...
by isscbta
Fri Feb 28, 2025 12:02 pm
Forum: Anti-spam
Topic: Emails rejected due to SpamHaus blacklist (zen.spamhaus.org)
Replies: 5
Views: 37661

Re: Emails rejected due to SpamHaus blacklist (zen.spamhaus.org)

Update:

We've released myVesta update - Version 0.9.9-0-12 [28-Feb-2025].
The update will remove SpamHaus DNSBL from exim4.
by isscbta
Thu Feb 27, 2025 4:54 pm
Forum: Anti-spam
Topic: Emails rejected due to SpamHaus blacklist (zen.spamhaus.org)
Replies: 5
Views: 37661

Re: black list at zen.spamhaus.org

If you see this or a similar entry in the Exim log, it means your server is affected by the issue: 2025-02-26 17:19:11 H=mail-lf1-f48.google.com [123.123.123.123] X=TLS1.3:ECDHE_RSA_AES_128_GCM_SHA256:128 CV=no F=<test@test.com> rejected RCPT <domain@domain.com>: Rejected because 123.123.123.123 is ...
by isscbta
Thu Feb 27, 2025 4:46 pm
Forum: Linux tutorials
Topic: Use HDSentinel to heck the health of disks
Replies: 0
Views: 3610

Use HDSentinel to heck the health of disks

Hard Disk Sentinel (HDSentinel) is a tool for monitoring the health and performance of HDDs and SSDs. It provides detailed analysis, including temperature, SMART attributes, and potential disk issues. The Linux console version allows you to check disk health from the command line. Installation and U...
by isscbta
Mon Feb 03, 2025 12:46 pm
Forum: DB
Topic: Creating a read-only database user for MySQL/MariaDB
Replies: 0
Views: 4215

Creating a read-only database user for MySQL/MariaDB

This guide will show you how to create a new database user with read-only access to a specific database. We will use a generic database name, example_db , and create a new user named example_new_user with the password examplePassword . This user will only have SELECT privileges, meaning they can rea...
by isscbta
Wed Dec 25, 2024 10:42 pm
Forum: Anti-spam
Topic: How to prevent email spoofing with SPF and DMARC configuration
Replies: 0
Views: 4210

How to prevent email spoofing with SPF and DMARC configuration

To secure your email and prevent spoofing, it’s essential to configure SPF and DMARC records properly in your DNS settings. Here's how to do it in the MyVesta control panel: [hr] What is Email Spoofing? Email spoofing is a technique used by attackers to forge the "From" address in emails, ...
by isscbta
Wed Nov 27, 2024 4:34 pm
Forum: Linux tutorials
Topic: Setting up additional monitoring tools: top, iotop, Apache and MySQL process lists, iostat
Replies: 0
Views: 5359

Setting up additional monitoring tools: top, iotop, Apache and MySQL process lists, iostat

This guide provides step-by-step instructions to set up additional monitoring tools on your server, including top, iotop, Apache process list, MySQL process list, and iostat. Overview top: Displays real-time system summary information and a list of processes or threads currently being managed by the...