编译安装openresty 报错 -bash: openresty: command not found
时间: 2023-11-27 16:48:17 浏览: 299
以下是编译安装openresty报错的解决方法:
1.首先,确认是否已经成功安装了openresty。可以通过运行以下命令来检查:
```shell
/usr/local/openresty/nginx/sbin/nginx -v
```
如果成功安装,则会输出nginx的版本信息。如果没有安装成功,则需要重新安装。
2.如果已经安装成功,但是在运行openresty时出现“-bash: openresty: command not found”错误,则可能是因为系统无法找到openresty的可执行文件。这通常是由于系统的PATH环境变量未正确设置所致。
3.要解决此问题,请按照以下步骤操作:
- 打开终端并输入以下命令:
```shell
echo 'export PATH=/usr/local/openresty/nginx/sbin:$PATH' >> ~/.bashrc
```
- 运行以下命令以使更改生效:
```shell
source ~/.bashrc
```
- 现在,您应该能够在终端中运行openresty命令了。
阅读全文