简体   繁体   English

Laravel - MacOS - 失败。 退出代码:127(找不到命令)工作目录

[英]Laravel - MacOS - failed. Exit Code: 127(Command not found) Working directory

i'm working on laravel project where i'm tryng to run my bash "mdb-export.sh" script like this:我正在处理 laravel 项目,我正在尝试像这样运行我的 bash“mdb-export.sh”脚本:

$fileMdb = public_path('wcArchivi.mdb');
$process = new Process("mdb-export -D '%Y-%m-%d %H:%M:%S' " . $fileMdb . " {$table}", null, null, null, null);
$process->mustRun();

this code work well in production, but it doesn't work in local, i'm getting this error:此代码在生产中运行良好,但在本地无法运行,我收到此错误:

The command "mdb-export -D '%Y-%m-%d %H:%M:%S' /Applications/XAMPP/xamppfiles/htdocs/cartech/public/wcArchivi.mdb CARVEI" failed.命令“mdb-export -D '%Y-%m-%d %H:%M:%S' /Applications/XAMPP/xamppfiles/htdocs/cartech/public/wcArchivi.mdb CARVEI”失败。 Exit Code: 127(Command not found) Working directory: /Applications/XAMPP/xamppfiles/htdocs/cartech/public Output: ================ Error Output: ================ sh: mdb-export: command not found退出代码:127(找不到命令)工作目录:/Applications/XAMPP/xamppfiles/htdocs/cartech/public 输出:================ 错误输出:===== ============ sh: mdb-export: 命令未找到

Where is my script sh ?我的脚本 sh 在哪里?

"/storage/import/mdb/mdb-export.sh"

so maybe is a issue with my configuration bash_profile?所以也许是我的配置 bash_profile 有问题?

my bash_profile我的 bash_profile

source ~/.profile
export XAMPP_HOME=/Applications/XAMPP
#export PATH=${XAMPP_HOME}/bin:${PATH}
export PATH=/Users/diegoduran/flutter/bin
export PATH
eval $(/usr/libexec/path_helper -s)

When i tried to reload bash profile doing "source .bash_profile" i get the error " No such file or directory"当我尝试重新加载 bash 配置文件执行“source .bash_profile”时,出现错误“没有这样的文件或目录”

i'm struggling for two days with this problem i can't solve :(我在这个问题上挣扎了两天,我无法解决:(

i fixed the issue with: brew install mdbtools我解决了这个问题: brew install mdbtools

How to check if mdb-export is working ?如何检查 mdb-export 是否正常工作? just run "mdb-export" and check if the system require a parameters.只需运行"mdb-export"并检查系统是否需要参数。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM