电影观察:增加Netflix数据源
Author Archive | minirplus
解决Laravel无权限写入failed to open stream: Permission denied
报错
在以schedule方式执行定时命令时遇到报错
1 |
local.ERROR: file_put_contents(/var/www/laravel/storage/framework/cache/data/ac/13/ac1346822aa47576e6930144a7f0c0d296a1f95f): failed to open stream: Permission denied {"exception":"[object] (ErrorException(code: 0): file_put_contents(/var/www/laravel/storage/framework/cache/data/ac/13/ac1346822aa47576e6930144a7f0c0d296a1f95f): failed to open stream: Permission denied at /var/www/laravel/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php:187) |
解决The following signatures couldn’t be verified because the public key is not available
执行
1 2 |
echo "deb http://ftp.debian.org/debian buster-backports main" >> /etc/apt/sources.list apt update |
问题
1 2 |
Err:4 http://ftp.debian.org/debian buster-backports InRelease The following signatures couldn't be verified because the public key is not available: NO_PUBKEY 648ACFD622F3D138 NO_PUBKEY 0E98404D386FA1D9 |
解决
1 2 |
sudo apt-key adv --keyserver keyserver.ubuntu.com --recv-keys 648ACFD622F3D138 sudo apt-key adv --keyserver keyserver.ubuntu.com --recv-keys 0E98404D386FA1D9 |
解决Neo4j Desktop无法确认程序目录问题
报错
1 |
Uncaught (in promise) Error: spawn powershell ENOENT |
解决
1 2 3 4 5 6 7 |
Add %SystemRoot%\system32\WindowsPowerShell\v1.0 to your PATH Variable, cmd+q and search env and hit enter click environment variables in the advanced tab find Path/PATH variable and click edit Click new and paste %SystemRoot%/system32/WindowsPowerShell/v1.0 click ok and restart your terminal and try installing again |
docker构建镜像加入变量和代理
需求
有些docker镜像依赖第三方库,希望可以在第三方库更新的时候不用重新改dockerfile