小编Raj*_*der的帖子

GitHub 操作 IOS xcode QA/Staging 以及证书和配置文件的问题

我正在使用 xcode 11.3 的 IOS 的 GitHub 操作。我能够构建、导出存档并推送到开发环境的应用程序中心。但是,我在暂存/QA 环境中遇到错误。

如果我提供与暂存/QA 中的开发环境相同的证书和配置文件,我在导出存档时会收到错误(构建成功):-

#Export Archives
##[error]Process completed with exit code 70.
Run xcodebuild -exportArchive -archivePath abc.xcarchive -exportPath abc.ipa -exportOptionsPlist ./abc/ExportOptions.plist          
2020-04-16 15:57:11.154 xcodebuild[7404:37990] [MT] IDEDistribution: -[IDEDistributionLogging _createLoggingBundleAtPath:]: Created bundle at path '/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/abcStaging_2020-04-16_15-57-11.153.xcdistributionlogs'.
error: exportArchive: No profiles for 'com.abc.Staging' were found
** EXPORT FAILED **

Error Domain=IDEProfileLocatorErrorDomain Code=1 "No profiles for 'com.abc.Staging' were found" UserInfo={IDEDistributionIssueSeverity=3, NSLocalizedDescription=No profiles for 'com.abc.Staging' were found, NSLocalizedRecoverySuggestion=Xcode couldn't find any iOS Ad Hoc provisioning profiles matching 'com.abc.Staging'. Automatic …
Run Code Online (Sandbox Code Playgroud)

xcode github ios github-actions

7
推荐指数
1
解决办法
2955
查看次数

如何查找已使用或已消耗的 AWS RDS Postgresql 存储空间

我们正在使用 AWS RDS Postgresql。我们分配了100GB的空间。我们还从 RDS 监控中看到 100 GB 的可用存储空间。

我们想知道,RDS postgresql 存储空间被利用或消耗了多少?

以下 URL 没有多大帮助 https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/MonitoringOverview.html

我运行了下面的 sql 查询,但表中不存在 data_length 和 data_free 列

SELECT table_schema "数据库名称", SUM( data_length + index_length ) / 1024 / 1024 "数据库大小 (MB)", SUM( data_free )/ 1024 / 1024 "可用空间 (MB)" FROM information_schema.TABLES GROUP BY table_schema ;

如何查找 AWS RDS Postgresql 消耗的存储空间

postgresql amazon-web-services amazon-rds

2
推荐指数
1
解决办法
8903
查看次数