我在不同的服务器上尝试一个curl命令.一个正在工作,另一个正在报告"nss error -5938".
服务器1:
OS:
Linux 4.1.12-61.1.10.el6uek.x86_64 x86_64 x86_64 x86_64 GNU/Linux
CURL -V:
curl 7.19.7(x86_64-redhat-linux-gnu)libcurl/7.19.7 NSS/3.19.1基本ECC zlib/1.2.3 libidn/1.18 libssh2/1.4.2协议:tftp ftp telnet dict ldap ldaps http file https ftps scp sftp特性:GSS-Negotiate IDN IPv6 Largefile NTLM SSL libz
命令运行状态:错误
Content-Type:application/x-www-form-urlencoded; charset = UTF-8 HTTP/1.0 200建立连接HTTP/1.0 200建立连接
- 代理回复确定CONNECT请求
- 使用certpath初始化NSS:sql:/ etc/pki/nssdb
- CAfile:/etc/pki/tls/certs/ca-bundle.crt CApath:none
- NSS错误-5938
- 关闭连接#0
- SSL连接错误卷曲:(35)SSL连接错误
服务器2:
- OS:
Linux 412c25016c7b 4.1.12-37.5.1.el7uek.x86_64#2 SMP Thu Jun 9 16:01:20 PDT 2016 x86_64 x86_64 x86_64 GNU/Linux
- CURL -V
curl 7.19.7(x86_64-redhat-linux-gnu)libcurl/7.19.7 NSS/3.16.2.3基本ECC zlib/1.2.3 libidn/1.18 libssh2/1.4.2协议:tftp ftp telnet dict ldap …
我有一张 dynamodb 表,一条记录如下:
{
"Items": [
{
"toObjectId": {
"S": "5678"
},
"keyValue": {
"S": "7890"
},
"aTypeId": {
"S": "test"
},
"aws:rep:deleting": {
"BOOL": false
},
"currentAt": {
"N": "1582476260000"
},
"keyTypeId": {
"S": "test2"
},
"aId": {
"S": "1234"
},
"aTypeId_keyTypeId_keyValue_currentAt": {
"S": "test_test2_7890_1582476260000"
},
"fromObjectId": {
"S": "12345"
},
}
],
"Count": 2562,
"ScannedCount": 2562,
"ConsumedCapacity": null
}
Run Code Online (Sandbox Code Playgroud)
如何使用 aws cli 编写一个 aws dynamodb 扫描/查询过滤器,以便在 aTypeId 为“test”时获取 aTypeId 和 aId?和
Primary partition key is aId (String)
Primary …Run Code Online (Sandbox Code Playgroud) 我正在使用 SQL Server 语句并有一张表,例如:
| item | value | parentItem |
+------+-------+------------+
| 1 | 2test | 2 |
| 2 | 3test | 3 |
| 3 | 4test | 4 |
| 5 | 1test | 1 |
| 6 | 3test | 3 |
| 7 | 2test | 2 |
Run Code Online (Sandbox Code Playgroud)
我想使用 SQL Server 语句获得以下结果:
| item1 | value1 |
+-------+--------------------------+
| 1 | /4test/3test/2test |
| 2 | /4test/3test |
| 3 | /4test |
| …Run Code Online (Sandbox Code Playgroud)