使用cocoapods-imy-bin插件过程遇到的问题记录

问题1:【安装MongoDB报错】mkdir: /data/db: Read-only file system

创建一个数据库存储目录 /data/db:

sudo mkdir -p /data/db

然后就报了mkdir: /data/db: Read-only file system这个错误

报错解决方案:手动创建文件夹 data 和 文件夹db在他们的路径还是 /data/db

  • cddb,执行 sudo mongod --dbpath=/usr/local/data/db启动mongod并设置数据库路径

另外一种解决方案:【安装MongoDB报错】mkdir: /data/db: Read-only file system

问题2:执行nmp start报错 npm ERR! missing script: start

解决方案:进入的路径不对,找不到start命令, 之前这个nmp start命令前提要在binary-sever路径下

问题3:

执行 nmp start报错

npm start

> binary-server@0.1.0 start
> node app.js

(node:2330) DeprecationWarning: current URL string parser is deprecated, and will be removed in a future version. To use the new parser, pass option { useNewUrlParser: true } to MongoClient.connect.
(Use `node --trace-deprecation ...` to show where the warning was created)
(node:2330) [MONGODB DRIVER] Warning: Current Server Discovery and Monitoring engine is deprecated, and will be removed in a future version. To use the new Server Discover and Monitoring engine, pass option { useUnifiedTopology: true } to the MongoClient constructor.
/Users/maling/Desktop/MGSpecs/binary-sever/node_modules/mongodb/lib/core/topologies/server.js:438
          new MongoNetworkError(
          ^

MongoNetworkError: failed to connect to server [localhost:27017] on first connect [Error: connect ECONNREFUSED 127.0.0.1:27017
    at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1137:16) {
  name: 'MongoNetworkError'
}]
    at Pool.<anonymous> (/Users/maling/Desktop/MGSpecs/binary-sever/node_modules/mongodb/lib/core/topologies/server.js:438:11)
    at Pool.emit (node:events:378:20)
    at /Users/maling/Desktop/MGSpecs/binary-sever/node_modules/mongodb/lib/core/connection/pool.js:562:14
    at /Users/maling/Desktop/MGSpecs/binary-sever/node_modules/mongodb/lib/core/connection/pool.js:995:11
    at /Users/maling/Desktop/MGSpecs/binary-sever/node_modules/mongodb/lib/core/connection/connect.js:32:7
    at callback (/Users/maling/Desktop/MGSpecs/binary-sever/node_modules/mongodb/lib/core/connection/connect.js:280:5)
    at Socket.<anonymous> (/Users/maling/Desktop/MGSpecs/binary-sever/node_modules/mongodb/lib/core/connection/connect.js:310:7)
    at Object.onceWrapper (node:events:485:26)
    at Socket.emit (node:events:378:20)
    at emitErrorNT (node:internal/streams/destroy:188:8)
    at emitErrorCloseNT (node:internal/streams/destroy:153:3)
    at processTicksAndRejections (node:internal/process/task_queues:81:21)
npm ERR! code 1
npm ERR! path /Users/maling/Desktop/MGSpecs/binary-sever
npm ERR! command failed
npm ERR! command sh -c node app.js

npm ERR! A complete log of this run can be found in:
npm ERR!     /Users/maling/.npm/_logs/2021-08-23T07_06_42_476Z-debug.log
  • 启动mongod 指定数据库路径
sudo mongod --dbpath=~/data/db
问题4: fatal: unable to access 'https://github.com/xxx': LibreSSL SSL_connect: SSL_ERROR_SYSCALL in connection to github.com:443
  • 重启电脑就好了, 解决方案来着这里

  • 另外一种解决方案:

git config --global --add remote.origin.proxy ""

看这里

问题5:执行pod bin auto报了这个错误 TypeError - no implicit conversion of nil into String

缺少一个 后.podspec 的文件,看代码里有检查,可以创建个空的 xxx.podspec 文件
解决方案看这里

问题6: fatal: unable to access 'https://github.com/Maling1255/lib_binary_spec.git/': Error in the HTTP2 framing layer

解决方案执行下面语句:

git config --global --unset http.proxy 
git config --global --unset https.proxy
问题7 制作出来的是.framework, 怎么才能生成.a header data

制作二进制组件的时候删除掉 use_frameworks!这句, 如果需要生成.framework, 可以使用 use_frameworks! :linkage => :static生成静态的二进制库

问题8

报错信息

Validating spec
 -> AFNetworking (4.0.1)
    - WARN  | [iOS] vendored_libraries: `*.a` does not match the expected static library name format `lib[name].a`

The repo `binary_spec` at `../../../../.cocoapods/repos/binary_spec` is not clean

删除二进制私有源,重新添加二进制私有源pod repo add binary_spec https://github.com/xxx/binary_spec_libs.git, 接着执行pod bin auto --all-make就可以了

问题9 消除警告
[!] Your project does not explicitly specify the CocoaPods master specs repo. Since CDN is now used as the default, you may safely remove it from your repos directory via `pod repo remove master`. To suppress this warning please add `warn_for_unused_master_specs_repo => false` to your Podfile.

根据上面提示:执行pod repo remove master 但是我没有master源,这个解决方案不行,
在Podfile里面设置 install! 'cocoapods', :warn_for_unused_master_specs_repo => false 也不行。

我的解决方案是: 查看了pod repo list 发现里面有一个cocoapods源, 移除这个就可以了

  • pod repo remove cocoapods
    这样就消除警告了

解决方案来之这里

问题10 The repo binary_spec at ../../../../.cocoapods/repos/binary_spec is not clean

解决:cd ~/.cocoapods/repos/binary_spec

$ git clean -f

如果上面的并没有解决问题可以试试下面的终极解决办法

终极解决办法

  • 先移除
pod repo remove binary_spec
  • 再次添加一次
 pod repo add binary_spec "https://github.com/xxxx/binary_spec_libs.git"
问题10 [!] 【MJExtension | 3.3.0】组件spec push失败 .

前提,xxx-build-temp文件夹下.a文件和zip文件都正常合成了,本地服务文件上传成功,但是最后结果还是:组件spec push失败。

s.source = { :git => 'git@gitee.com:xxx/xxmode.git', :tag => s.version.to_s }

这个source换成了ssh格式的就好了

问题11 报错 curl: (22) The requested URL returned error: 404 Not Found
Installing...
Installing AFNetworking (4.0.0)
Installing AliyunOSSiOS (2.8.0)
Installing CCLivePlaySDK (3.7.0)
Installing FDFullscreenPopGesture (1.1)

[!] Error installing AFNetworking

[!] Error installing FDFullscreenPopGesture

[!] Error installing AliyunOSSiOS
[!] /usr/bin/curl -f -L -o /var/folders/m4/jw6lg3ps0zj1rr5mflxhwhn40000gn/T/d20210907-50002-11mhy5r/file.zip http://localhost:8080/frameworks/AliyunOSSiOS/2.8.0/zip --create-dirs --netrc-optional --retry 2 -A 'CocoaPods/1.10.0 cocoapods-downloader/1.4.0'

  % Total    % Received % Xferd  Average Speed   Time    Time     Time  Current
                                 Dload  Upload   Total   Spent    Left  Speed
  0     0    0     0    0     0      0      0 --:--:-- --:--:-- --:--:--     0
curl: (22) The requested URL returned error: 404 Not Found
  • 移除旧的二进制repo源, 重新添加解决了(pod repo add xxx https://xxxx
问题 *

I 》 启动mongo的,最好设置好数据库路径, eg: sudo mongod --dbpath=/Users/XXXX/data/db

II 》 node服务启动要在binary-server目录下进行,eg: /cocoapods-imy-bin-demo/binary-server中 执行 npm start 或者 npm run start

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 205,033评论 6 478
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 87,725评论 2 381
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 151,473评论 0 338
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,846评论 1 277
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,848评论 5 368
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,691评论 1 282
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 38,053评论 3 399
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,700评论 0 258
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 42,856评论 1 300
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,676评论 2 323
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,787评论 1 333
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,430评论 4 321
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 39,034评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,990评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,218评论 1 260
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 45,174评论 2 352
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,526评论 2 343

推荐阅读更多精彩内容