-bash: nginx: command not found
时间: 2023-12-29 14:05:03 浏览: 204
quick-bash:Lisp风格的语言,可转换为Bash。 简单,易读,功能强大
这个错误提示表明您的系统上没有安装nginx。您需要先安装nginx,然后才能执行相关命令。您可以按照以下步骤安装nginx:
1.更新软件包列表:sudo apt update
2.安装nginx:sudo apt install nginx
3.启动nginx:sudo systemctl start nginx
4.检查nginx是否正在运行:sudo systemctl status nginx
如果您已经安装了nginx但仍然收到“-bash: nginx: command not found”错误,请确保nginx可执行文件的路径已添加到系统PATH环境变量中。
阅读全文