Home>Article>Backend Development> How Golang is packaged and deployed on Linux

How Golang is packaged and deployed on Linux

angryTom
angryTom Original
2020-03-14 15:20:53 8811browse

How Golang is packaged and deployed on Linux

How to package and deploy Golang on Linux

1. Compile Golang program locally

cmd Go to the main.go file directory in the console and execute:

set GOARCH=amd64 set GOOS=linux go build main.go

At this time, a binary file without a suffix will be generated

main

2. Upload the Golang binary file to the Linux server

Put the file into a folder in the linux system

Give permissions

chmod 777 main

Finally execute./main.

If you want the project to execute in the background: executenohup ./main &, so that the program can run in the background.

For more golang knowledge, please pay attention to thegolang tutorialcolumn on the PHP Chinese website.

The above is the detailed content of How Golang is packaged and deployed on Linux. For more information, please follow other related articles on the PHP Chinese website!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn