Home Backend Development Golang How to deploy golang on Linux

How to deploy golang on Linux

Apr 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
Copy after login

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
Copy after login

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

source ~/.bashrc
Copy after login
Copy after login

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
Copy after login

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

export GOPATH=$HOME/go
export PATH=$PATH:$GOROOT/bin:$GOPATH/bin
Copy after login

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

source ~/.bashrc
Copy after login
Copy after login

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
Copy after login

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!")
}
Copy after login

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

go build hello.go
Copy after login

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

./hello
Copy after login

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
Copy after login

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
Copy after login

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
Copy after login

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
Copy after login

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 of this Website
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

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)
4 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Best Graphic Settings
4 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. How to Fix Audio if You Can't Hear Anyone
4 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Chat Commands and How to Use Them
4 weeks ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

What are the vulnerabilities of Debian OpenSSL What are the vulnerabilities of Debian OpenSSL Apr 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.

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.

What is the problem with Queue thread in Go's crawler Colly? What is the problem with Queue thread in Go's crawler Colly? Apr 02, 2025 pm 02:09 PM

Queue threading problem in Go crawler Colly explores the problem of using the Colly crawler library in Go language, developers often encounter problems with threads and request queues. �...

What libraries are used for floating point number operations in Go? What libraries are used for floating point number operations in Go? Apr 02, 2025 pm 02:06 PM

The library used for floating-point number operation in Go language introduces how to ensure the accuracy is...

Transforming from front-end to back-end development, is it more promising to learn Java or Golang? Transforming from front-end to back-end development, is it more promising to learn Java or Golang? Apr 02, 2025 am 09:12 AM

Backend learning path: The exploration journey from front-end to back-end As a back-end beginner who transforms from front-end development, you already have the foundation of nodejs,...

What is the go fmt command and why is it important? What is the go fmt command and why is it important? Mar 20, 2025 pm 04:21 PM

The article discusses the go fmt command in Go programming, which formats code to adhere to official style guidelines. It highlights the importance of go fmt for maintaining code consistency, readability, and reducing style debates. Best practices fo

How to specify the database associated with the model in Beego ORM? How to specify the database associated with the model in Beego ORM? Apr 02, 2025 pm 03:54 PM

Under the BeegoORM framework, how to specify the database associated with the model? Many Beego projects require multiple databases to be operated simultaneously. When using Beego...

See all articles