#clash 在linux系统中配置时发生错误
根据clash官网的“linux使用教程”进行到第3步启动clash
./clash -d
报以下错误
INFO[0000] Can't find MMDB, start download
FATA[0000] Initial configuration directory error: can't initial MMDB: can't download MMDB: Get "https://cdn.jsdelivr.net/gh/Dreamacro/maxmind-geoip@release/Country.mmdb": proxyconnect tcp: dial tcp 127.0.0.1:7890: connect: connection refused
原因:端口占用导致clash无法识别的问题
#解决办法
查看端口是否占用
export | grep -i proxy
declare -x http_proxy="http://127.0.0.1:7890"
declare -x https_proxy="http://127.0.0.1:7890"
运行完上述指令不返回任何信息,接下来
取消端口占用
unset http_proxy https_proxy
export | grep -i proxy
完成上述操作,按照官网指令重新下载config.yaml,发现可以下载 config.yaml
wget -O config.yaml "xxxxxxx为clash提供的网址"
结果:
正在保存至: “config.yaml”
config.yaml 100%[===================>] 172.22K 1021KB/s 用时 0.2s
2023-07-14 16:05 已保存 “config.yaml” [176349/176349])
继续按clash网站教程即可文章来源:https://www.toymoban.com/news/detail-669269.html
之后每次使用一下代码启用clash文章来源地址https://www.toymoban.com/news/detail-669269.html
./clash -f config.yaml
到了这里,关于【已解决】ubuntu出现Can‘t find MMDB, start download错误的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!