Guten Tag. Bei Installation Shopware 6 (Local mit MAMP Pro) bekomme ich Fehler „Failed to generate key“. Obwhol neue Datenbank hergestellt war. Weisst jemand wo liegt das Problem? Danke im voraus.
<?php declare(strict_types=1);
namespace Shopware\Core\Maintenance\System\Service;
use Shopware\Core\Maintenance\System\Exception\JwtCertificateGenerationException;
class JwtCertificateGenerator
{
public function generate(string $privateKeyPath, string $publicKeyPath, ?string $passphrase = null): void
{
$key = openssl_pkey_new([
'digest_alg' => 'aes256',
'private_key_type' => \OPENSSL_KEYTYPE_RSA,
'encrypt_key' => (bool) $passphrase,
'encrypt_key_cipher' => \OPENSSL_CIPHER_AES_256_CBC,
]);
if ($key === false) {
throw new JwtCertificateGenerationException('Failed to generate key');
}
This file has been truncated. show original
openssl key nicht erstellt.
aktiviere der OpenSSL-Erweiterung in der php.ini
extension=openssl