Tutorial

How To Set Up GitLab As Your Very Own Private GitHub Clone

Published on August 23, 2013
How To Set Up GitLab As Your Very Own Private GitHub Clone

Status: Deprecated

This article covers a version of Ubuntu that is no longer supported. If you are currently operate a server running Ubuntu 12.04, we highly recommend upgrading or migrating to a supported version of Ubuntu:

Reason: Ubuntu 12.04 reached end of life (EOL) on April 28, 2017 and no longer receives security patches or updates. This guide is no longer maintained.

See Instead: This guide might still be useful as a reference, but may not work on other Ubuntu releases. If available, we strongly recommend using a guide written for the version of Ubuntu you are using. You can use the search functionality at the top of the page to find a more recent version.

Introduction


Git and GitHub are awesome tools that make managing and administering lots of Git repositories and their associated permissions a breeze. This is wonderful if you’re writing open source software, but when writing closed source software you may not want to trust your code to a third party server. So how can you get the control, flexibility and ease of use of something like Github or BitBucket without hosting your git repositories on servers outside of your control?

Enter GitLab. GitLab provides a simple but powerful web based interface to your Git repositories a la GitHub, only you can host it on your own cloud server, control access as you see fit, and repo size is limited only by how much storage space your server has. This tutorial will walk you through setting up a DigitalOcean VPS as a GitLab server.

Note: This tutorial explains how to install GitLab from source. When originally written, this was the only option. Today, it is much simpler to get it up and running using the GitLab’s “omnibus” package. You can also launch a GitLab droplet on DigitalOcean in one click with our application image.

This tutorial assumes you’re using a brand new Ubuntu 12.04 VPS. We’ll be installing all the necessary software needed to make GitLab work. If you are using an existing VPS (droplet) or a different Linux distro you may have issues, especially with incompatible Python and Ruby versions. Make sure you have Ruby 2.0 and Python 2.7 installed before beginning.

The first step is to install some required packages:

sudo apt-get update
sudo apt-get install -y build-essential zlib1g-dev libyaml-dev libssl-dev libgdbm-dev libreadline-dev libncurses5-dev libffi-dev curl git-core openssh-server redis-server checkinstall libxml2-dev libxslt-dev libcurl4-openssl-dev libicu-dev

Make sure you don’t have Ruby 1.8 installed (on a default Ubuntu 12.04 VPS it won’t be).

Install Ruby 2.0 (this will take a while):

mkdir /tmp/ruby && cd /tmp/ruby
curl --progress ftp://ftp.ruby-lang.org/pub/ruby/2.0/ruby-2.0.0-p247.tar.gz | tar xz
cd ruby-2.0.0-p247
./configure
make
sudo make install

When it’s finished you can check to make sure that you have Ruby 2 (not 1.8) installed by doing a:

ruby --version

If the output looks like the below then you’re good:

ruby 2.0.0p247 (2013-06-27 revision 41674) [x86_64-linux]

Now we need to install the Bundler gem:

sudo gem install bundler --no-ri --no-rdoc

And create a git user for GitLab to use:

sudo adduser --disabled-login --gecos 'GitLab' git

Installing the GitLab Shell


Download the GitLab shell with the following commands:

cd /home/git
sudo -u git -H git clone https://github.com/gitlabhq/gitlab-shell.git
cd gitlab-shell
sudo -u git -H git checkout v1.7.0
sudo -u git -H cp config.yml.example config.yml

You now have a copy of GitLab Shell 1.7.0, and the example config.yml is ready to go.

If you have a domain name pointed at this VPS, then you should take the time to edit config.yml to use this domain.

nano config.yml

Near the top there will be a line that looks like:

gitlab_url: "http://localhost/"

Change the http://localhost/ portion to match your domain name. So if your domain is www.YOURDOMAIN.com the line should look like this:

gitlab_url: "http://www.YOURDOMAIN.com/"

Now you can run the GitLab shell installer:

sudo -u git -H ./bin/install

Database Setup


We’ll set up GitLab to use a MySQL backend. The first step is to install MySQL with the below command. During the install process it will ask you to set a MySQL root password. Set it to whatever you like, but note it down as you will need it for the next steps.

sudo apt-get install -y mysql-server mysql-client libmysqlclient-dev

MySQL is now installed and the root password is set to the value you chose in the last step. We now need to create a MySQL user for GitLab to use. To do this we’ll first save the necessary SQL queries to a temporary file. Type:

nano tempfile

Paste in the following, changing the $password on the first line to a real password. Keep track of this password as this will be your GitLab’s database password.

CREATE USER 'gitlab'@'localhost' IDENTIFIED BY '$password';
CREATE DATABASE IF NOT EXISTS `gitlabhq_production` DEFAULT CHARACTER SET `utf8` COLLATE `utf8_unicode_ci`;
GRANT SELECT, LOCK TABLES, INSERT, UPDATE, DELETE, CREATE, DROP, INDEX, ALTER ON `gitlabhq_production`.* TO 'gitlab'@'localhost';

Now save the file and execute the following command (entering your MySQL root password from the first step at the prompt) to have MySQL execute your queries:

cat tempfile | mysql -u root -p

To make sure your new MySQL user was created successfully let’s log in to mysql using the gitlab user:

mysql -u gitlab -p

If you see some text followed by a:

mysql>

line then everything worked successfully. Go ahead and type:

exit;

at the mysql> prompt to exit MySQL, and delete the tempfile file since it contains a password:

rm tempfile

At this point we have everything configured to install GitLab successfully, so let’s proceed with the installation:

cd /home/git
sudo -u git -H git clone https://github.com/gitlabhq/gitlabhq.git gitlab
cd /home/git/gitlab
sudo -u git -H git checkout 6-0-stable
sudo -u git -H cp config/gitlab.yml.example config/gitlab.yml

Just like we did with the GitLab shell set up, if you have a domain configured for your VPS we need to edit the config.yml to use that domain.

sudo -u git -H nano config/gitlab.yml

Near the top of the file you should a text block that looks like the following:

  gitlab:
## Web server settings
host: localhost
port: 80
https: false

Change the host: entry to match your domain name. If your domain is www.YOURDOMAIN.com, then it should look like this:

  gitlab:
## Web server settings
host: www.YOURDOMAIN.com
port: 80
https: false

Let’s also set some linux file permissions, configure the git user’s Git config, and set up some GitLab config and directories for the git user:

cd /home/git/gitlab
sudo chown -R git log/
sudo chown -R git tmp/
sudo chmod -R u+rwX  log/
sudo chmod -R u+rwX  tmp/
sudo -u git -H mkdir /home/git/gitlab-satellites
sudo -u git -H mkdir tmp/pids/
sudo -u git -H mkdir tmp/sockets/
sudo chmod -R u+rwX  tmp/pids/
sudo chmod -R u+rwX  tmp/sockets/
sudo -u git -H mkdir public/uploads
sudo chmod -R u+rwX  public/uploads
sudo -u git -H cp config/unicorn.rb.example config/unicorn.rb
sudo -u git -H git config --global user.name "GitLab"
sudo -u git -H git config --global user.email "gitlab@localhost"
sudo -u git -H git config --global core.autocrlf input
sudo -u git cp config/database.yml.mysql config/database.yml

Now we need to tell GitLab to use the gitlab MySQL user we set up earlier. To do this, edit the config/database.yml file:

sudo -u git -H nano config/database.yml

Near the top there will be a section called production: which will contain username and password entries. By default it looks like this:

production:
  adapter: mysql2
  encoding: utf8
  reconnect: false
  database: gitlabhq_production
  pool: 10
  username: root
  password: "secure password"

Change the username and password entries to match the GitLab database user we set up earlier. So if the password you used for your GitLab MySQL user was $password the edited file should look like this:

production:
  adapter: mysql2
  encoding: utf8
  reconnect: false
  database: gitlabhq_production
  pool: 10
  username: gitlab
  password: "$password"

Save the file, and we’ll secure it so that other users of the server can’t see the password:

sudo -u git -H chmod o-rwx config/database.yml

Let’s install a few more needed gems (this step may take awhile):

cd /home/git/gitlab
sudo gem install charlock_holmes --version '0.6.9.4'
sudo -u git -H bundle install --deployment --without development test postgres aws

And run some final setup (type yes when it asks if you want to continue):

sudo -u git -H bundle exec rake gitlab:setup RAILS_ENV=production

After this finishes it will print a lot of information onscreen and at the end will show Administrator account created and give you your administrator credentials. It should look something like the below:

Administrator account created:

login.........admin@local.host
password......5iveL!fe

Now let’s set GitLab to start up whenever your server boots:

sudo cp lib/support/init.d/gitlab /etc/init.d/gitlab
sudo chmod +x /etc/init.d/gitlab
sudo update-rc.d gitlab defaults 21

Run the following to make sure everything is working:

sudo -u git -H bundle exec rake gitlab:env:info RAILS_ENV=production

If there are no error messages and the data outputted by that command looks right then your GitLab install is working. Almost finished! Start up GitLab with this command:

sudo service gitlab start

Setting Up NGINX


GitLab works with the nginx web server by default. If you already have your own web server such as Apache set up then these steps don’t apply. Check out these recipes for info on how to configure GitLab with other web servers. Otherwise follow these directions to install and configure nginx to work with GitLab:

sudo apt-get -y install nginx
cd /home/git/gitlab
sudo cp lib/support/nginx/gitlab /etc/nginx/sites-available/gitlab
sudo ln -s /etc/nginx/sites-available/gitlab /etc/nginx/sites-enabled/gitlab

Edit /etc/nginx/sites-available/gitlab to use your domain name:

sudo nano /etc/nginx/sites-available/gitlab

A little ways from the top of the file you will see an entry server_name which is set to YOUR_SERVER_FQDN. As in the previous steps, replace the YOUR_SERVER_FQDN with your domain name. The original file looks like this:

server {
  listen *:80 default_server;     # e.g., listen 192.168.1.1:80; In most cases *:80 is a good idea
  server_name YOUR_SERVER_FQDN;       #

If your domain is www.YOURDOMAIN.com then you should change it to look like this:

server {
  listen *:80 default_server;         # e.g., listen 192.168.1.1:80; In most cases *:80 is a good idea
  server_name www.YOURDOMAIN.com;     #

And restart nginx:

sudo service nginx restart

Voila! You’re done. Connect to GitLab via your web browser using the Admin login and password from above (default user: admin@local.host, pass: 5iveL!fe) and enjoy GitLab.

If you are using a 512MB VPS then due to GitLab’s memory requirements it’s quite likely you will run into a 502 Bad Gateway error. If that’s the case, read on…

Troubleshooting


502 Bad Gateway Error


In a perfect world GitLab would now be running perfectly. Unfortunately, GitLab has surprisingly high memory requirements, so on 512MB VPSs it often chokes on the first sign in. This is because GitLab uses a lot of memory on the very first login. Since the Ubuntu 12.04 VPS has no swap space when the memory is exceeded parts of GitLab get terminated. Needless to say GitLab does not run well when parts of it are being unexpectedly terminated.

The easiest solution is just to allocate more memory to your VPS, at least for the first sign in. If you don’t want to do that, another option is to increase swap space. DigitalOcean already has a full tutorial on how to do this available here (although I would recommend adding more than just 512MB of swap). The quick fix is to run the following:

sudo dd if=/dev/zero of=/swapfile bs=1024 count=1024k
sudo mkswap /swapfile
sudo swapon /swapfile

Your swapfile is now running and active, but to set it so that it’s activated on each boot we need to edit /etc/fstab:

sudo nano /etc/fstab

Paste the following onto the bottom of the file:

/swapfile       none    swap    sw      0       0 

Now restart your VPS:

sudo restart

Wait a minute or two for your VPS to reboot, and then try GitLab again. If it doesn’t work the first time, refresh the Bad Gateway page a couple of times, and you should soon see the GitLab login page.

References:

  1. Check out the excellent Gitlab installation documentation here.
  2. And for info on the 502 bad gateway error, check this thread.

<div class=“author”>Submitted by: Nik van der Ploeg</div>

Thanks for learning with the DigitalOcean Community. Check out our offerings for compute, storage, networking, and managed databases.

Learn more about our products

About the author(s)

Nik van der Ploeg
Nik van der Ploeg
See author profile
Category:
Tutorial

Still looking for an answer?

Ask a questionSearch for more help

Was this helpful?
 
50 Comments
Leave a comment...

This textbox defaults to using Markdown to format your answer.

You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!

Great tutorial!

Awesome tutorial! Thanks

Fantastic! Thank you, went off without a hitch!

<b>“Make sure you have … Python 2.7 installed before beginning.”</b>

How does one do this, exactly?

Kamal Nasser
DigitalOcean Employee
DigitalOcean Employee badge
September 13, 2013

Pablo, <pre>python --version</pre> outputs the python version that is installed.

Grrrr! I’m such an idiot! Thanks Kamal.

Followed the tutorial and I’m having a 502 Bad Gateway while I’m using a Dedicated (4cores / 18Gb of ram). Any idea?

Kamal Nasser
DigitalOcean Employee
DigitalOcean Employee badge
September 13, 2013

@accounts: What’s the output of this command?

<pre>tail /var/log/nginx/error.log</pre>

Great tutorial! I was eventually able to stumble my way through the install. The only thing that kept throwing me off was the use of <pre>sudo</pre>.

In light of this statement – <b>“It assumes you’re using a brand new Ubuntu 12.04 VPS.”</b> – I spun up a new droplet w/an SSH key and did nothing else (didn’t even add a non-root user). Given that I was followed this tutorial using the root user account, was I supposed to still use <pre>sudo</pre>? I started off not using it; but I would use it whenever something didn’t go right (but, I’m not sure if perhaps I was simply f-ing up something else) the first time around.

@kamal, I went ahead with Apache setup (I’m using NGINX as a proxy) :)

Kamal Nasser
DigitalOcean Employee
DigitalOcean Employee badge
September 14, 2013

@accounts: Is nginx reverse proxying requests to apache?

Kamal Nasser
DigitalOcean Employee
DigitalOcean Employee badge
September 14, 2013

Pablo, if you’re logged in as root, it doesn’t matter whether you’re running commands through <pre>sudo</pre> or not. It’ll be the same since in both cases the commands are run as root.

<strong>I started off not using it; but I would use it whenever something didn’t go right</strong> I’m pretty sure that using <pre>sudo</pre> doesn’t change how stuff work.

@Kamal, I was able to access my gitlab by sending everything from nginx to apache. However, once I restarted my sever, a passenger error occured (web application could not be started).

My NGINX / APACHE setup is as follow: https://www.digitalocean.com/community/articles/how-to-configure-nginx-as-a-front-end-proxy-for-apache

Kamal Nasser
DigitalOcean Employee
DigitalOcean Employee badge
September 14, 2013

@accounts: Please pastebin both apache’s and nginx’s config files.

@Kamal :

Gitlab Server Bloc: http://pastebin.com/7e5mTLcZ Apache2 Virtual Host: http://pastebin.com/T9Jt7aPt Apache2.conf (Passenger): http://pastebin.com/hmBD2dLi

Very weird because I haven’t changed anything, simply rebooted my server :(

@Kamal, just tried a check on Rails and : http://pastebin.com/pqn7GLsT :/

Kamal Nasser
DigitalOcean Employee
DigitalOcean Employee badge
September 18, 2013

@accounts: Sorry for the delay, I had completely forgotten about it. Are you still experiencing this issue?

Access denied for user ‘’@‘localhost’ to database ‘gitlabhq_production’ anyone how to solve this?

In your code is missing MySQL user name. You have this: ‘’@‘localhost’ and you need ‘git’@‘localhost’

Kamal Nasser
DigitalOcean Employee
DigitalOcean Employee badge
September 22, 2013

@design.ericson: Did you follow the Database Setup section?

I seem to be missing rake:

‘$ sudo -u git -H bundle exec rake gitlab:setup RAILS_ENV=production Could not find rake-10.1.0 in any of the sources Run bundle install to install missing gems.’

Any ideas?

My mistake. I missed out entering ‘sudo -u git -H bundle install --deployment --without development test postgres aws’

One other problem I have is when I restarted Nginx for the last time I got this message:

‘$ sudo service nginx restart Restarting nginx: nginx: [emerg] could not build the server_names_hash, you should increase server_names_hash_bucket_size: 32 nginx: configuration file /etc/nginx/nginx.conf test failed’

Any clues to where said file is?

this error message means nginx isn’t running. I can’t even connect by IP address.

I found /etc/nginx/nginx.conf & the 'server_names_hash_bucket_size: 32 ’ has a value of 64 although it appears commented out…

uncommenting 'server_names_hash_bucket_size: 32 ’ did the trick & she’s now running…

anyone able to point me in the right direction to setup gitlab as a sub.domain via apache2

Kamal Nasser
DigitalOcean Employee
DigitalOcean Employee badge
October 1, 2013

@gmqqueen: Follow this article but skip the <strong>Setting Up NGINX</strong> section adn follow this instead: <a href=“https://github.com/gitlabhq/gitlab-recipes/tree/master/web-server/apache”>https://github.com/gitlabhq/gitlab-recipes/tree/master/web-server/apache</a>

When I try and access the git server from a browser I get a page simply saying “Welcome to nginx!” - no login option etc … and idea what I need to tweak to get a login page etc ? - Cheers

Hi! Great tutorial! Also, do you know how to create new users for gitlab? Thanks in advance!

I get to this step:

sudo -u git -H bundle install --deployment --without development test postgres aws

But I get this and am unable to complete the install.

Gem::Installer::ExtensionBuildError: ERROR: Failed to build gem native extension.

/usr/local/bin/ruby extconf.rb 

Gem files will remain installed in /home/git/gitlab/vendor/bundle/ruby/2.0.0/gems/bcrypt-ruby-3.1.1 for inspection. Results logged to /home/git/gitlab/vendor/bundle/ruby/2.0.0/gems/bcrypt-ruby-3.1.1/ext/mri/gem_make.out An error occurred while installing bcrypt-ruby (3.1.1), and Bundler cannot continue. Make sure that gem install bcrypt-ruby -v '3.1.1' succeeds before bundling.

Any suggestions why Ruby can’t install bcrypt? I tried RVM but then it couldn’t install json… Ugh!

Hi, Do you know how to change the title. The default says GIT LAB 6

Kamal Nasser
DigitalOcean Employee
DigitalOcean Employee badge
December 5, 2013

@FranciscoRaulOrtega: That is currently not possible.

I created a user and a project… when I execute git push -u origin master, I get prompted the password, but none of the passwords that I use works. the linux user does not have ‘sudo’, since I’m doing to test it… I’m actually running this from a linux user in the same box…

Here is the complete list: git config --global user.name “Francisco” git config --global user.email “frank@someU.edu” mkdir review-process cd review-process git init touch README git add README git commit -m ‘first commit’ git remote add origin git@nuilabs.org:Francisco/review-process.git git push -u origin master

Please disregard my previous message…

I was missing the ssh, here is the problem that I’m having… do you guys know if gitlab has a support channel in irc ? because this seems to be more of a gitlab problem,right?

git push -u origin master /usr/local/lib/ruby/2.0.0/net/http.rb:878:in initialize': getaddrinfo: Name or service not known (SocketError) from /usr/local/lib/ruby/2.0.0/net/http.rb:878:in open’ from /usr/local/lib/ruby/2.0.0/net/http.rb:878:in block in connect' from /usr/local/lib/ruby/2.0.0/timeout.rb:52:in timeout’ from /usr/local/lib/ruby/2.0.0/net/http.rb:877:in connect' from /usr/local/lib/ruby/2.0.0/net/http.rb:862:in do_start’ from /usr/local/lib/ruby/2.0.0/net/http.rb:851:in start' from /home/git/gitlab-shell/lib/gitlab_net.rb:62:in get’ from /home/git/gitlab-shell/lib/gitlab_net.rb:17:in allowed?' from /home/git/gitlab-shell/lib/gitlab_shell.rb:60:in validate_access’ from /home/git/gitlab-shell/lib/gitlab_shell.rb:23:in exec' from /home/git/gitlab-shell/bin/gitlab-shell:16:in <main>’ fatal: The remote end hung up unexpectedly

I fixed. I changed two settings in config.yml of gitlab-shell

  1. the url I changed from www.mydomain.com to mydomain.com and 2) I changed the ip from the 127.0.0.1 to the actual name which is nuilabs.org Then I restarted gitlab and then ngnix. I can push now

Question: Has anyone run into problems with the snippets?

By the way:

sudo -u git -H git checkout 6-0-stable

can be updated to the last version, 6.3

sudo -u git -H git checkout 6-3-stable

Without any issues.

So… I just used the one-click installer and I have a droplet running GitLab, but how do I know what my admin login credentials are? They don’t match my linux user account

Here is simple documentation about hot to make GitLab to work with Apache: https://gist.github.com/carlosjrcabello/5486422

But, please, read comments first.

How is this tutorial modified in the database section if MySQL is already installed ?

Figured out the failure. I had to use the following:

‘sudo apt-get install libmysql-ruby libmysqlclient-dev’

Next, I had to use both domain.com and www.domain.com to get the virtual hosting to work properly.

Followed this to the letter, getting an error after running the following:

sudo -u git -H bundle install --deployment --without development test postgres aws

Errno::EACCES: Permission denied - /home/git/gitlab/vendor/bundle/ruby/2.0.0/gems/mysql2-0.3.11/.gitignore An error occurred while installing mysql2 (0.3.11), and Bundler cannot continue. Make sure that gem install mysql2 -v '0.3.11' succeeds before bundling.

Any thoughts? running Ubuntu 12.04. MySQL already installed prior to starting the GitLab install. I’ve run ‘sudo apt-get install libmysql-ruby libmysqlclient-dev’ in case and that hasn’t helped.

Cheers, Dave

IGNORE PREVIOUS.

Removed the directory for the offending gem and re-ran the initial bundle, everything installed fine. Must of been a random permissions error!

Cheers, Dave

Foremost, I have just set up GitLab on Linode using this tutorial. I had tried 2 others before this and they both failed. To other readers, if you too are having difficulties setting up Gitlab and are at your witts end… I urge you to attempt it one last time with this tutorial. Please erase anything you’ve done before other tuts if you’re not quite sure what you’re doing. IE; Erase the “git” user, SQL database, etc.

Next, although I have successfully set up and am running Gitlab, I would like to incorporate my other websites back into nginx. Currently Gitlab is the only functioning website on nginx (I erased other sites-enabled configurations).

How would one go about setting this up to be used as something like: www.domain.com/gitlab and have other sites still function the same?

Hi all, Nik here (the guy who wrote this tutorial).

If you’re looking for a waaaaay easier way to install gitlab (and don’t want to use Digiocean’s canned gitlab images), check out this link:

https://github.com/gitlabhq/gitlab-recipes/tree/master/install

The gitlab community has made installation scripts for most linux distros that take care of the grunt work for you. I used the Ubuntu script on 13.10. It works great, just needed to remove the ‘default’ symlink from /etc/nginx/sites-enabled once it had finished and then gitlab was up and running.

Nik

Good luck!

Nik

I have installed gitlab on ubuntu, I have installed it on 512mb server, I have turned on swap. I have got 502. So I have made an image and installed it on 1 gb server and still get 502 error from gitlab. What can I do to fix this?

Here is error log: Both MergeRequestDiff and its :state machine have defined a different default for “state”. Use only one or the other for defining defaults to avoid unexpected behaviors. I, [2014-02-24T20:42:41.327301 #2719] INFO – : listening on addr=/home/git/gitlab/tmp/sockets/gitlab.socket fd=12 I, [2014-02-24T20:42:41.328161 #2719] INFO – : listening on addr=127.0.0.1:8080 fd=13 I, [2014-02-24T20:42:41.349333 #2719] INFO – : master process ready I, [2014-02-24T20:42:41.355128 #2751] INFO – : worker=0 ready E, [2014-02-24T20:43:21.424063 #2719] ERROR – : worker=0 PID:2751 timeout (31s > 30s), killing E, [2014-02-24T20:43:21.482113 #2719] ERROR – : reaped #<Process::Status: pid 2751 SIGKILL (signal 9)> worker=0 I, [2014-02-24T20:43:21.502946 #2796] INFO – : worker=0 ready

Join the Tech Talk
Success! Thank you! Please check your email for further details.

Please complete your information!

Become a contributor for community

Get paid to write technical tutorials and select a tech-focused charity to receive a matching donation.

DigitalOcean Documentation

Full documentation for every DigitalOcean product.

Resources for startups and SMBs

The Wave has everything you need to know about building a business, from raising funding to marketing your product.

Get our newsletter

Stay up to date by signing up for DigitalOcean’s Infrastructure as a Newsletter.

New accounts only. By submitting your email you agree to our Privacy Policy

The developer cloud

Scale up as you grow — whether you're running one virtual machine or ten thousand.

Get started for free

Sign up and get $200 in credit for your first 60 days with DigitalOcean.*

*This promotional offer applies to new accounts only.