更新时间:2024-05-13 GMT+08:00
分享

环境变量未配置

问题现象

提示需配置环境变量“Unable to start the Go service, please configure Go environment variables!

原因分析

  1. Go未安装。
  2. 环境变量未配置或配置错误。

处理方法

  1. 若未安装Go,可通过“安装Go语言 ”部署步骤进行安装。
  2. 正确配置相关环境变量。

    由于当前启动/停止操作为“no_login”方式,若系统为Linux系统,Go语言为手动安装,还需在以下文件中增加环境变量:

    • Ubuntu: ~/.bashrc 和 ~/.profile
    • Centos: ~/.bashrc 和 ~/.bash_profile

    所需环境变量配置示例如下:

    • export GOROOT=/usr/local/go/go_install_dir/go
    • export GOPATH=/usr/local/go/go_workpath
    • export PATH= $GOROOT/bin:$PATH

相关文档