How to migrate an application from Heroku to GCP

How to migrate an application from Heroku to GCP

Introduction

After using Heroku as a great platform for developing and deploying applications we’re going to learn how to migrate an application from Heroku to GCP (Google Cloud Platform). This blog presents a detailed tutorial using Google Cloud Platform since it allows you to create, implement and scale either apps or websites in the same Google infrastructure.

Table of contents

This blog presents the part 2 of “How to deploy an application on Heroku”.

Requirements

  • Gmail account.
  • A debit or credit card to activate the free trial.
  • Google Cloud Platform, which allows you to use 300 USD for 12 months.
  • A Heroku application or the app’s repository we want to migrate.
  • An application database backup.

3. Migration

3.1 Enter to Google Cloud Platform and click on “Go to Console”.
3.2 Once you had entered, create a new project and go to the Compute engine tab:

Screenshot 2017-08-30 at 17.55.35

3.3 Click on VM instances.

Screenshot 2017-08-30 at 17.56.19

3.4 Select create and assigned it a name and select the project on the top, as the image shows:

Screenshot 2017-08-30 at 17.56.33

3.5 Create a new instance:

Screenshot 2017-08-30 at 17.57.01

3.6 Create it as your convenience, the price it shows is a mensual average of how much the instance will cost.

Screenshot 2017-08-30 at 17.57.19

The instance will look like this:

Screenshot 2017-08-30 at 17.57.31
ADD-CTA-15

3.7 To start working with the instance, click on the “SSH” button or with a remotely terminal. After you logged in with an SSH session on the Google Cloud instance, proceed to install Heroku CLI to clone the repository with the application’s files.

3.7.1 You’re going to install Heroku CLI with next commands:

sudo apt-get install software-properties-common # debian only
sudo add-apt-repository "deb https://cli-assets.heroku.com/branches/stable/apt ./"
curl -L https://cli-assets.heroku.com/apt/release.key | sudo apt-key add -
sudo apt-get update
sudo apt-get install heroku

3.8 After the installation, clone the app with:

heroku git:clone -a “proyect”
cd “proyect”

3.9 For the next step is necessary to install MySQL, Node.js, Nginx and npm; they allow us to use the port 80. Just in case you want to manage the different versions of Node.js you can use nvm through npm, on this occasion we’re going to use the default version.

sudo apt-get install nodejs nodejs-legacy npm nginx mysql-server

3.10 It is time to configure the local database and to import the backup we previously mentioned on the requirements. Here are the commands to do it:

mysql -u “root” -p #Set your password

3.11 Create a database and a user inside of MySQL:

create database “name”;
use “name”;
source “database/route”;

3.12 The only thing we’re missing it to modify the database configuration files with the needed data. In order to use the port 80 is necessary to edit the default server block of Nginx located in:

server {
	listen 0.0.0.0:80;
	server_name aplicacion.com.mx www.aplicacion.com.mx;
	access_log /var/log/nginx/aplicacion.log;
	error_log /var/log/nginx/aplicacion.log;
	location ~ /.well-known {
		allow all;
	}
	location / {
		proxy_set_header X-Real-IP $remote_addr;
		proxy_set_header X-Forwarder-For $proxy_add_x_forwarded_for;
		proxy_set_header Host $http_host;
		proxy_set_header X-NginX-Proxy true;
		proxy_pass http://127.0.0.1:3000;
		proxy_read_timeout 600;
proxy_redirect off;
}
}

3.12.1 Save everything and reset Nginx with:

sudo service nginx restart

3.13 The applications of node have a file called “package.json”, it contains the modules that the application needs to work properly. To install them we only need the next command:

npm install

3.13.1 If everything went properly then the app is ready to run, you can do this with the next

command: 
node “file.js”
ó
npm start

*In case you want to run it in the background, you can use a tool as supervisor, the documentation is in the next link: http://supervisord.org

Conclusion

As you can see, migrating a NodeJS application from Heroku to Google Cloud Platform becomes really easy and fast. Google Cloud offers a wide variety of services that our applications would benefit. From now on, migrating from one cloud to another shouldn’t be a problem for you. Hire a dedicated team of experts to assess your current environment and help you migrate any application to Google Cloud Platform or in any other cloud.

What Problems does ClickIT solve?

  • We HELP agencies and enterprises migrate, build and operate web applications on AWS.
  • We HELP grow and scale web applications to have more visitors, customers and leads.
  • We SOLVE the gap between a digital company and Amazon Web Services hosting provider. Everyone love AWS, but who will bring superlative expertise to operate their digital products within AWS?
  • And we HELP cut DevOps and AWS operating expenses due to our affordable implementation costs without compromising quality. What is NearShore Outsourcing?
are you ready for a cloud migration?

Subscribe

to our newsletter

Table of Contents

We Make DevOps Easier

Weekly DevOps Newsletter

Subscribe to our DevOps News

Subscribe to a monthly newsletter to receive the IT best practices, startup-related insights & emerging technologies.

Join hundreds of business leaders and entrepreneurs, who are part of our growing tech community.

We guarantee 100% privacy. Your information will not be shared.