我正在尝试将一个依赖于框架的.Net核心应用部署到Debian9 Stretch,但是当我启动.net应用时,它抛出了错误:
> Failed to load ▒݅, error: libunwind.so.8: cannot open shared object file: No such file or directory
> Failed to bind to CoreCLR at '/var/www/html/libcoreclr.so'是的,该文件位于/var/www/html/libcoreclr.so
发布于 2018-12-24 06:26:10
这与https://github.com/dotnet/cli/issues/3390有相似的根本原因
对于任何没有Linux经验的人来说,可以在Debian及其衍生发行版(Ubuntu,Xubuntu,Devuan,...)中安装libunwind。通过执行
sudo apt install libunwind8
对于任何类似RedHat的发行版:
sudo yum install libunwind
发布于 2018-08-17 17:33:01
https://stackoverflow.com/questions/50652310
复制相似问题