Installing SQL Server on macOS

Installing SQL Server on macOS

Image for postCrates by Frank McKenna on Unsplash

It?s a bit inconvenience when working on a project that uses the Microsoft SQL Server while your dev machine is either Linux or macOS. I always ended up setting up and using a remote test database.

But now it?s no longer the case. October last year, SQL Server 2017 for Linux finally went into general availability. It?s container images are also available on Docker hub for us to use. That means we can finally install SQL Server on macOS!

Good news, everyone! (Source: Giphy)

Installing Docker

First, you?re going to need Docker. If you haven?t had it installed, heads up to the Docker store website and download the community edition for Mac. Just follow the instructions, it?s super easy to install.

Once it?s installed, you?ll have a new Docker icon on your menu bar. Click this icon and make sure that Docker is already.

Image for post

Running SQL Server Container Image

Once you have Docker installed and running, open the terminal and run the following command to pull the latest version of SQL Server 2017 container image from Docker hub:

$ docker pull microsoft/mssql-server-linux:2017-latest

If you want to pull another version, just replace the 2017-latest part with the desired tag. You can check all of the available tags on Docker hub. For example, if want to pull the GA (General Availability) version instead, use the following command:

$ docker pull microsoft/mssql-server-linux:2017-GA

Once the image is pulled, you can run it on a new container using the following command:

$ docker run -d -p 1433:1433 –name awesome -e ‘ACCEPT_EULA=Y’ -e ‘MSSQL_SA_PASSWORD=P@55word’ microsoft/mssql-server-linux:2017-latest

  • -d: Detached mode, run the container in the background.
  • -p: Publish a container’s port (second value) to the host (first value). In our case, SQL server is listening on port 1433 within the container and we expose it to the same port on the host.
  • –name: Assign a name to the container, we named it awesome ?.
  • -e: Set environment variables. ACCEPT_EULA=Y to confirm your acceptance of the licensing agreement. MSSQL_SA_PASSWORD=P@55word set the password for the sa user (the default system administrator username). It must be at least 8 characters and contains three of the following categories: lowercase, uppercase, digits, and symbols.

To list all of the containers, run the following command:

$ docker ps -a

You should see the output similar to this:

Example output of docker ps -a

Locate your awesome container and make sure that its STATUS column is Up. If the status is Exited, checkout the troubleshooting guide.

Handy Tips & Tools

Congratulation! ? You now have Microsoft SQL Server installed on your macOS machine! Here are some common Docker commands that might come in handy for you:

# Stop the `awesome` container$ docker stop awesome# Start the `awesome` container$ docker start awesome# Forcefully remove the `awesome` container$ docker rm -f awesome# Remove the pulled image$ docker rmi microsoft/mssql-server-linux:2017-latest

It?s a bit inconvenience to run the sqlcmd from within the container in order to work with the database. Luckily there are some tools that you can use for interfacing with SQL Server:

  • TablePlus: This is my favorite one. A native macOS application that works not only with MySQL and SQL Server databases but also Postgres and Redis!
  • SQL Operations Studio: This one is coming from Microsoft and can be run on Windows, macOS or Linux.
  • mssql for VS Code: If you?re using Visual Studio Code, this extension might come in handy.
  • sql-cli for Node: If you?re a fellow Javascript developer. You can install this sql-cli for Node globally. This way you’ll have the quite similar sqlcmd feel.

Originally published at bagja.net.

12

No Responses

Write a response