AskOverflow.Dev

AskOverflow.Dev Logo AskOverflow.Dev Logo

AskOverflow.Dev Navigation

  • 主页
  • 系统&网络
  • Ubuntu
  • Unix
  • DBA
  • Computer
  • Coding
  • LangChain

Mobile menu

Close
  • 主页
  • 系统&网络
    • 最新
    • 热门
    • 标签
  • Ubuntu
    • 最新
    • 热门
    • 标签
  • Unix
    • 最新
    • 标签
  • DBA
    • 最新
    • 标签
  • Computer
    • 最新
    • 标签
  • Coding
    • 最新
    • 标签
主页 / user-316898

davejagoda's questions

Martin Hope
davejagoda
Asked: 2025-02-27 11:31:39 +0800 CST

AWS 证书颁发者 CN=Amazon RSA 2048 M02 与 M03 之间有什么区别?

  • 5

一些 AWS 证书具有此颁发者:

issuer=C=US, O=Amazon, CN=Amazon RSA 2048 M02

其他人有这个:

issuer=C=US, O=Amazon, CN=Amazon RSA 2048 M03

它们之间有什么区别?

amazon-web-services
  • 1 个回答
  • 81 Views
Martin Hope
davejagoda
Asked: 2025-01-19 06:22:37 +0800 CST

`vagrant box update` 失败,出现 `metadata for the box was malformed` 错误

  • 6
$ vagrant box update
==> default: Checking for updates to 'ubuntu/jammy64'
    default: Latest installed version: 20231027.0.0
    default: Version constraints: 20241002.0.0
    default: Provider: virtualbox
    default: Architecture: "amd64"
The metadata for the box was malformed. The exact error
is shown below. Please contact the maintainer of the box so
that this issue can be fixed.

unexpected token at '<!DOCTYPE html><html lang="en-us"><head>
    <meta charset="utf-8">
    <title>HashiCorp Cloud Platform</title>
    ...

这似乎是由于 的变化造成的metadata_url。

工作示例:

https://vagrantcloud.com/api/v2/vagrant/ubuntu/jammy64

非工作示例:

https://vagrantcloud.com/ubuntu/jammy64

URL 何时更改的?

我想到两种解决方法:

  1. 一行代码(例如使用sed)即可修复这些 URL。
  2. 在另一个目录中安装相同盒子类型的全新盒子vagrant init将导致~/.vagrant.d/boxes/更新。
vagrant
  • 1 个回答
  • 330 Views
Martin Hope
davejagoda
Asked: 2024-12-12 03:08:16 +0800 CST

AWS SCIM 错误消息正则表达式

  • 6

此错误出现在日志文件中(略微格式化以便于阅读):

StatusCode: 400 : Bad Request : {
  schema :[ urn:ietf:params:scim:api:messages:2.0:Error ]
  schemas :[ urn:ietf:params:scim:api:messages:2.0:Error ]
  detail : 1 validation error detected:
  Value at 'phoneNumbers.1.value' failed to satisfy constraint:
  Member must satisfy regular expression pattern:
  [\\p{L}\\p{M}\\p{S}\\p{N}\\p{P}\\t\\n\\r   ]+
}

这可能是由于电话号码的格式如下:

+1 (212) 555-1212

而不是以下格式之一:

12125551212
+1.212.555.1212

如何解释这个正则表达式来证实这一点?

amazon-web-services
  • 2 个回答
  • 152 Views
Martin Hope
davejagoda
Asked: 2024-08-31 05:22:55 +0800 CST

Terraform:“错误:解析旧 engine_version:版本格式错误:7.x”

  • 6

运行时terraform apply出现此错误:

Error: parsing old engine_version: Malformed version: 7.x
│ 
│   with module.redis_cluster.aws_elasticache_replication_group.replication_group,
│   on ../../../../modules/redis/main.tf line 11, in resource "aws_elasticache_replication_group" "replication_group":
│   11: resource "aws_elasticache_replication_group" "replication_group" {
│ 

这似乎是hashicorp/terraform-provider-aws#32252中描述的问题,并且在评论中有详细的解决方法:

  1. 我们使用通配符语法在 Terraform 中配置了一些 Redis 实例:6.x
  2. 有人在 AWS 控制台 UI 中手动更新了 Redis 引擎7.0.*
  3. 更新后,代码已更新为7.x手动。它与AWS提供商配合良好4.37.0。
  4. 当我开始在同一个存储库中工作时,我将 AWS 提供程序从 更新4.37.0为5.9.0并遇到了问题: 7.x值和 都不起作用7.0。这是Redis versions must match <major>.<minor>...或Error: parsing old engine_version: Malformed version: 7.x错误。

解决方法继续描述编辑远程状态以修复问题。除了该解决方法之外,还有其他更简单的方法可以解决这个问题吗?

amazon-web-services
  • 1 个回答
  • 89 Views

Sidebar

Stats

  • 问题 205573
  • 回答 270741
  • 最佳答案 135370
  • 用户 68524
  • 热门
  • 回答
  • Marko Smith

    新安装后 postgres 的默认超级用户用户名/密码是什么?

    • 5 个回答
  • Marko Smith

    SFTP 使用什么端口?

    • 6 个回答
  • Marko Smith

    命令行列出 Windows Active Directory 组中的用户?

    • 9 个回答
  • Marko Smith

    什么是 Pem 文件,它与其他 OpenSSL 生成的密钥文件格式有何不同?

    • 3 个回答
  • Marko Smith

    如何确定bash变量是否为空?

    • 15 个回答
  • Martin Hope
    Tom Feiner 如何按大小对 du -h 输出进行排序 2009-02-26 05:42:42 +0800 CST
  • Martin Hope
    Noah Goodrich 什么是 Pem 文件,它与其他 OpenSSL 生成的密钥文件格式有何不同? 2009-05-19 18:24:42 +0800 CST
  • Martin Hope
    Brent 如何确定bash变量是否为空? 2009-05-13 09:54:48 +0800 CST
  • Martin Hope
    cletus 您如何找到在 Windows 中打开文件的进程? 2009-05-01 16:47:16 +0800 CST

热门标签

linux nginx windows networking ubuntu domain-name-system amazon-web-services active-directory apache-2.4 ssh

Explore

  • 主页
  • 问题
    • 最新
    • 热门
  • 标签
  • 帮助

Footer

AskOverflow.Dev

关于我们

  • 关于我们
  • 联系我们

Legal Stuff

  • Privacy Policy

Language

  • Pt
  • Server
  • Unix

© 2023 AskOverflow.DEV All Rights Reserve