search
HomeBackend DevelopmentGolangHow to deploy golang on Linux
How to deploy golang on LinuxApr 23, 2023 am 10:07 AM

In the modern software field, new development languages ​​represented by golang are becoming increasingly popular. As an increasingly popular server-side language, golang is often used to build high-performance web applications and cloud infrastructure. Linux, as one of the most ideal platforms for golang, is widely used due to its stable and secure qualities. . This article will introduce how to deploy golang on Linux and provide some useful technical details, including installing golang, setting golang environment variables, writing the first golang application, and deploying the application.

Step one: Install golang

There are many ways to install golang on Linux, such as source code installation, binary package installation, installation using the Linux package manager, etc. However, this article introduces a simpler method, namely binary package installation. Please follow the steps below.

1. First, visit the official golang download page (https://golang.org/dl/) and select the latest version of the binary package to download.

2. After the download is complete, use the tar command to extract the downloaded file to the /usr/local/ directory:

sudo tar -C /usr/local -xzf go1.15.6.linux-amd64.tar.gz

3. Next, we need to add the go binary file to the system PATH environment variable so that the go command can be accessed from anywhere. To do this, open the ~/.bashrc file and add the following lines at the end of the file:

export PATH=$PATH:/usr/local/go/bin

4. Finally, make the modified .bashrc file take effect immediately:

source ~/.bashrc

Now, you have succeeded Installed golang on Linux.

Step 2: Set golang environment variables

Setting golang environment variables is one of the necessary steps to correctly integrate golang with the operating system.

1. In the terminal, use a text editor such as vim or nano to open the ~/.bashrc file.

vim ~/.bashrc

2. Add the following content to the end of the file:

export GOPATH=$HOME/go
export PATH=$PATH:$GOROOT/bin:$GOPATH/bin

3. Use the source command to update the environment variables of the current shell:

source ~/.bashrc

Note: GOPATH is the most important parameter in the Go environment. One of the important environment variables, it specifies your workspace directory that contains Go packages that can be built and installed by the go command. When setting GOPATH, you need to first create the directory manually:

mkdir $HOME/go

Step 3: Write the first golang application

After completing the installation of golang and the configuration of environment variables, next We can write our first golang application.

1. Use a text editor to create a new file named hello.go:

package main

import "fmt"

func main() {
   fmt.Println("Hello, World!")
}

2. Save the file and use the following command in the terminal to compile it:

go build hello.go

3. After that, we can run the compiled binary directly:

./hello

When we enter this command, the output will display "Hello, World!". This indicates that golang has been successfully installed and working on Linux.

Step 4: Deploy golang application

Now that we have successfully installed golang and written and run the first application, we need to deploy the golang application to on the production server so that its functionality can be implemented in a production environment. This section will discuss how to deploy golang applications on Linux servers.

1. For go applications, we first need to upload the source code to the application directory on the server. In the application directory, you can build the application using the following command:

go build

This command will generate a binary file named main, which is the executable file of the golang application.

2. Then, we need to consider running the application as a system service. To do this, we need to write a systemd service file. In the /etc/systemd/system/ directory, use an editor such as vim or nano to create a new file with the file name myservice.service. Of course, you can also give it another name.

3. In the myservice.service file, add the following content:

[Unit]
Description=My Go Service
After=network.target

[Service]
Type=simple
User=root
WorkingDirectory=/path/to/your/app
ExecStart=/path/to/your/app/main

[Install]
WantedBy=multi-user.target

In the above code, Description is the service description, After determines the startup time of the service, and in all systems about the network Start the service after the units are ready. ExecStart is the command that the service should use, and we should set it to the go executable file we compiled in the Linux application directory.

4. After saving the file, use the following command to start the new system service and add it to the automatic startup:

sudo systemctl start myservice
sudo systemctl enable myservice

5. After executing the above command, your service should already be in Linux It runs successfully and starts automatically on the server. You can use the following command to view the service startup status:

sudo systemctl status myservice

Summary

golang has become one of the preferred languages ​​for server-side applications, and is used in Linux application scenarios Down, it has a lot of potential. This article mainly introduces how to deploy golang applications on Linux, from the installation of golang, the configuration of environment variables to the construction of binary executable files, to the writing of systemd service files and the automatic start and stop settings of the service. I hope it can provide readers with Useful technical reference.

The above is the detailed content of How to deploy golang 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
How do you use the pprof tool to analyze Go performance?How do you use the pprof tool to analyze Go performance?Mar 21, 2025 pm 06:37 PM

The article explains how to use the pprof tool for analyzing Go performance, including enabling profiling, collecting data, and identifying common bottlenecks like CPU and memory issues.Character count: 159

How do you write unit tests in Go?How do you write unit tests in Go?Mar 21, 2025 pm 06:34 PM

The article discusses writing unit tests in Go, covering best practices, mocking techniques, and tools for efficient test management.

How do I write mock objects and stubs for testing in Go?How do I write mock objects and stubs for testing in Go?Mar 10, 2025 pm 05:38 PM

This article demonstrates creating mocks and stubs in Go for unit testing. It emphasizes using interfaces, provides examples of mock implementations, and discusses best practices like keeping mocks focused and using assertion libraries. The articl

How can I define custom type constraints for generics in Go?How can I define custom type constraints for generics in Go?Mar 10, 2025 pm 03:20 PM

This article explores Go's custom type constraints for generics. It details how interfaces define minimum type requirements for generic functions, improving type safety and code reusability. The article also discusses limitations and best practices

What are the vulnerabilities of Debian OpenSSLWhat are the vulnerabilities of Debian OpenSSLApr 02, 2025 am 07:30 AM

OpenSSL, as an open source library widely used in secure communications, provides encryption algorithms, keys and certificate management functions. However, there are some known security vulnerabilities in its historical version, some of which are extremely harmful. This article will focus on common vulnerabilities and response measures for OpenSSL in Debian systems. DebianOpenSSL known vulnerabilities: OpenSSL has experienced several serious vulnerabilities, such as: Heart Bleeding Vulnerability (CVE-2014-0160): This vulnerability affects OpenSSL 1.0.1 to 1.0.1f and 1.0.2 to 1.0.2 beta versions. An attacker can use this vulnerability to unauthorized read sensitive information on the server, including encryption keys, etc.

Explain the purpose of Go's reflect package. When would you use reflection? What are the performance implications?Explain the purpose of Go's reflect package. When would you use reflection? What are the performance implications?Mar 25, 2025 am 11:17 AM

The article discusses Go's reflect package, used for runtime manipulation of code, beneficial for serialization, generic programming, and more. It warns of performance costs like slower execution and higher memory use, advising judicious use and best

How do you use table-driven tests in Go?How do you use table-driven tests in Go?Mar 21, 2025 pm 06:35 PM

The article discusses using table-driven tests in Go, a method that uses a table of test cases to test functions with multiple inputs and outcomes. It highlights benefits like improved readability, reduced duplication, scalability, consistency, and a

How can I use tracing tools to understand the execution flow of my Go applications?How can I use tracing tools to understand the execution flow of my Go applications?Mar 10, 2025 pm 05:36 PM

This article explores using tracing tools to analyze Go application execution flow. It discusses manual and automatic instrumentation techniques, comparing tools like Jaeger, Zipkin, and OpenTelemetry, and highlighting effective data visualization

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Best Graphic Settings
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. How to Fix Audio if You Can't Hear Anyone
3 weeks agoBy尊渡假赌尊渡假赌尊渡假赌

Hot Tools

EditPlus Chinese cracked version

EditPlus Chinese cracked version

Small size, syntax highlighting, does not support code prompt function

VSCode Windows 64-bit Download

VSCode Windows 64-bit Download

A free and powerful IDE editor launched by Microsoft

Dreamweaver Mac version

Dreamweaver Mac version

Visual web development tools

MinGW - Minimalist GNU for Windows

MinGW - Minimalist GNU for Windows

This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.

PhpStorm Mac version

PhpStorm Mac version

The latest (2018.2.1) professional PHP integrated development tool