I have a Python-based Lambda function in VPC with an VPC endpoint creates for Amazon STS. However I could not connect to STS with timeout error:
Tag: error
Jun 28 2024
TypeError: Argument 1 passed to Carbon\CarbonInterval::setLocalTranslator()
You may encounter the following error after updating through WHMCS v8.0:
1 |
TypeError: Argument 1 passed to Carbon\CarbonInterval::setLocalTranslator() must implement interface Symfony\Component\Translation\TranslatorInterface |
May 14 2024
Laravel Relation “Attempt to read property on null”
It usually means that the related record is NULL or soft-deleted. There are multiple ways to gracefully handle such a situation, without showing the error to the user. A practical example would be a list of Posts with belongs To relation to Categories. Migration file for Posts:
1 2 3 |
Schema::table('posts', function (Blueprint $table) { $table->foreignId('category_id')->nullable()->constrained(); }); |
Apr 30 2024
SQL Reporting Services. HTTP Error 503 The service is unavailable
After I installed new certificate using SQL RS Configuration Manager upon opening any report I see the following: In comparison to this case the root cause is the same: when binding a certificate Configuration Manager creates shitty URL bindings like
Feb 24 2024
Centos: Get a newer version of e2fsck
I got an error about e2fsck version. In my case the issue happened in Centos7, when I try to expand the disk of my VM in Cloudmin.
1 |
qemu-img resize fedora-new.qcow2 +20G |
You will hit an error with your e2fsck version. You will need to download the latest source binary of e2fsprogs from your OS distributor and install it. …
Feb 08 2024
MariaDB fails to start: Aria engine is not enabled or did not start
After low space condition once happened on a server MariaDB failed to start with :
1 2 3 4 5 |
[ERROR] Aria engine is not enabled or did not start. The Aria engine must be enabled to continue as mysqld was configured with --with-aria-tmp-tables [ERROR] Aborting ... mariadb.service: main process exited, code=exited, status=1/FAILURE Failed to start MariaDB 10.3.32 database server. |
In /var/log/messages:
1 2 3 4 5 6 |
[ERROR] Aria engine is not enabled or did not start. The Aria engine must be enabled to continue as mysqld was configured with --with-aria-tmp-tables [Note] mysqld: Aria engine: starting recovery recovered pages: 0% 10% 20% 30% 40% 50% 60% 70% 80%201210 16:07:56 [ERROR] mysqld got signal 11 ; [ERROR] Could not open mysql.plugin table: "Unknown storage engine 'Aria'" |
Jan 30 2024
Vicidial access forbidden to the recordings folder
I got this upon trying to download call recording in Vicidial on the lead’s page. I have Vicibox 11 installed in virtual machine on Cloudmin with Vicidial VERSION: 2.14-899a BUILD: 231109-2027
Jan 17 2024
Asterisk vicidial WebRTC phone cannot connect
On the newly installed Vicidial box I got problem connecting WebRTC phone to Asterisk. I followed the setup guide here In the Asterisk console I saw: Problem setting up ssl connection: error:00000001:lib(0):func(0):reason(1), Internal SSL error ERROR[2203]: tcptls.c:179 handle_tcptls_connection: Unable to set up ssl connection with peer ‘22.22.48.22:48756’ [Jan 17 11:46:42] ERROR[2203]: iostream.c:552 ast_iostream_close: SSL_shutdown() failed: …
Jun 16 2023
Postman Unable to verify the first certificate
The error Unable to verify the first certificate occurs in Postman cloud agent because it does not have Trusted Root certificates storage with intermediate and root CA certificates thus cannot verify client → intermediate → root CA chain. Azure Application Gateway does not have Trusted Root certificates storage as well so the error occurs under …
Nov 08 2022
.htaccess: Option FollowSymLinks not allowed here
I moved from mod_php to fcgi style hosting and got the following in Apache error log when I tried to open one of my websites: [Tue Nov 08 08:34:08.357359 2022] [core:alert] [pid 19149] [client 95.158.43.63:14405] /home/domain.com/public_html/.htaccess: Option All not allowed here [Tue Nov 08 08:35:58.058962 2022] [core:alert] [pid 14190] [client 95.158.43.63:46366] /home/domain.com/public_html/.htaccess: Option FollowSymlinks not …