golang env

1
2
3
4
5
6
[root@gitserver ~]# mkdir -p /mnt/app
[root@gitserver ~]# tar xzf go1.7.4.linux-amd64.tar.gz -C /mnt/app/
[root@gitserver ~]# echo 'export GOROOT=/mnt/app/go' |tee /etc/profile.d/go.sh
[root@gitserver ~]# echo 'export GOPATH=$HOME/work' |tee -a /etc/profile.d/go.sh
[root@gitserver ~]# echo 'export PATH=$GOROOT/bin:$PATH' |tee -a /etc/profile.d/go.sh
[root@gitserver ~]# source /etc/profile