Golang as CGI
Last updated
Last updated
This guide will work on any of the HelioHost servers.
The Go programming language, often called Golang, is an open source project to make programmers more productive. Go is expressive, concise, clean, and efficient. Its concurrency mechanisms make it easy to write programs that get the most out of multi-core and networked machines, while its novel type system enables flexible and modular program construction. Go compiles quickly to machine code yet has the convenience of garbage collection and the power of run-time reflection. It's a fast, statically typed, compiled language that feels like a dynamically typed, interpreted language.
Go is a compiled language so you'll need to build the code on your development system, and then upload the executable. For this example, we will be using Windows 10 for development. In order to build the Go language you'll need to install the compiler. Go to:
https://golang.org/dl/ to download and install the version for your OS.
Create a directory for the Go source. In this example, we used:
In that directory, create a new file named golang.go
and open it in Notepad.
Copy and paste this code into the Notepad window:
Make sure to Save the file in Notepad.
By default, Go will build the executable to run on your local system, which is Windows. We want to run the executable on HelioHost's server so we need to tell the compiler to make an executable that will work on Linux. Open a new command prompt, and run the command
This will output all of your environment variables that start with go
. There should be just one, your GOPATH
.
You can set new environment variables using that same set command. Type these two commands:
and then run set go
again to check that they saved correctly.
If you close this command window and open a new one, those environment variables will be gone and you'll need to set them again so get in the habit of checking the set go
command output.
In the same command prompt window that you set the environment variables, change directory to your source file that you created earlier.
and then run the command:
Note: If the go build
command does not work, you may need to use go build golang.go
instead.
If everything goes well, you should now have an executable named golang.cgi
.
Log in to Plesk and open the File Manager.
Navigate to the httpdocs/cgi-bin
directory, click the +
button and select Upload File
. (If you were transferred from the old cPanel, the webroot directory will be named public_html
.)
Locate the golang.cgi
file on your hard drive and upload it.
Highlight the golang.cgi
file and select Change Permissions
.
Check the 3 Execute / Search
boxes to set the permissions to 755
to make the file executable.
Make sure that you now see rwx r-x r-x
(755
) displayed for this file in the Permissions column.
Highlight the golang.cgi
file and select Open in Browser
(Or manually navigate to: <your subdomain>.heliohost.org/cgi-bin/golang.cgi
.)
If everything is working you should see GoLang as CGI is working...
displayed in your browser.
If it doesn't work, go back and check all of your steps again. If you can't figure out what is wrong, please post in the Customer Service forum, making sure to provide your username and any error messages you are encountering. We'd be happy to help.