| title | Configure availability group for SQL Server on Linux | Microsoft Docs |
|---|---|
| description | |
| author | MikeRayMSFT |
| ms.author | mikeray |
| manager | jhubbard |
| ms.date | 02/09/2017 |
| ms.topic | article |
| ms.prod | sql-linux |
| ms.technology | database-engine |
| ms.assetid | 150b0765-2c54-4bc4-b55a-7e57a5501a0f |
An availability group supports a failover environment for a discrete set of user databases - known as availability databases - that fail over together. An availability group supports one set of read-write primary databases and one to eight sets of corresponding secondary databases. Optionally, secondary databases can be made available for read-only access and/or some backup operations. An availability group defines a set of two or more failover partners, known as availability replicas. Availability replicas are components of the availability group. For details see Overview of Always On Availability Groups (SQL Server).
This document describes the specifics of availability groups on SQL Server on Linux. The document uses the following specific terms:
availability group
A container for a set of databases, availability databases, that fail over together.
availability database
A database that belongs to an availability group. For each availability database, the availability group maintains a single read-write copy (the primary database) and one to eight read-only copies (secondary databases).
primary database
The read-write copy of an availability database.
secondary database
A read-only copy of an availability database.
availability replica
An instantiation of an availability group that is hosted by a specific instance of SQL Server and maintains a local copy of each availability database that belongs to the availability group. Two types of availability replicas exist: a single primary replica and one to eight secondary replicas.
primary replica
The availability replica that makes the primary databases available for read-write connections from clients and, also, sends transaction log records for each primary database to every secondary replica.
secondary replica
An availability replica that maintains a secondary copy of each availability database, and serves as a potential failover targets for the availability group. Optionally, a secondary replica can support read-only access to secondary databases can support creating backups on secondary databases.
availability group listener
A server name to which clients can connect in order to access a database in a primary or secondary replica of an Always On availability group. Availability group listeners direct incoming connections to the primary replica or to a read-only secondary replica.
Before you create the availability group, you need to:
- Set your environment so all servers that will host availability replicas can communicate
- Install SQL Server
Note
On Linux, you must create an availability group before adding it as a cluster resource to be managed by the cluster. This document provides an example that creates the availability group. For distribution specific instructions to create the cluster and add the availability group as a cluster resource, see the links under Next steps.
-
Update the computer name for each host
Each SQL Server name must be:
- 15 characters or less
- Unique within the network
To set the computer name, edit
/etc/hostname. The following script lets you edit/etc/hostnamewithvi.sudo vi /etc/hostname
-
Configure the hosts file
The hosts file on every server contains the IP addresses and names of all servers that will participate in the availability group.
The following command returns the IP address of the current server:
sudo ip addr show
Update
/etc/hosts. The following script lets you edit/etc/hostswithvi.sudo vi /etc/hosts
The following example shows
/etc/hostson node1 with additions for node1 and node2. In this document node1 refers to the primary SQL Server. node2 refers to the secondary SQL Server.;127.0.0.1 localhost localhost4 localhost4.localdomain4 ::1 localhost localhost6 localhost6.localdomain6 10.128.18.128 node1 10.128.16.77 node2
Install SQL Server. The following links point to SQL Server installation instructions for various distributions.
Enable Always On availability groups on each SQL Server, then restart mssql-server. Run the following script:
sudo /opt/mssql/bin/mssql-conf set hadrenabled 1
sudo systemctl restart mssql-serverRun the following command on all SQL Servers to create the database mirroring endpoint user.
CREATE LOGIN dbm_login WITH PASSWORD = '<1Sample_Strong_Password!@#>'
CREATE USER dbm_user FOR LOGIN dbm_login
SQL Server on Linux uses certificates to authenticate communication between the mirroring endpoints.
Connect to the primary SQL Server and run the following Transact-SQL to create the certificate:
CREATE MASTER KEY ENCRYPTION BY PASSWORD = '<as3jsdjhaj304SDF>'
CREATE CERTIFICATE dbm_certificate WITH SUBJECT = 'dbm'
AUTHORIZATION dbm_user
BACKUP CERTIFICATE dbm_certificate
TO FILE = 'C:\var\opt\mssql\data\dbm_certificate.cer'
WITH PRIVATE KEY (
FILE = 'C:\var\opt\mssql\data\dbm_certificate.pvk',
ENCRYPTION BY PASSWORD = '<as3jsdjhaj304SDF>'
)
Note
For this release, do not use Linux-style paths like /var/opt/mssql/data/dbm_certificate.cer for the certificates.
At this point your primary SQL server has a certificate at /var/opt/mssql/data/dbm_certificate.cer and a private key at var/opt/mssql/data/dbm_certificate.pvk. Copy these two files to the same location on all servers that will host availability replicas. Use the mssql user or give permission to mssql user to access these files.
For example on the source server, the following command copies the files to the target machine.
cd /var/opt/mssql/data
scp dbm_certificate.* root@node2:/var/opt/mssql/data/On the target server, give permission to mssql user to access the certificate.
cd /var/opt/mssql/data
chown mssql:mssql dbm_certificate.*Run the following command on all secondary servers to create the certificate. The command also creates a user named dbm_user and authorizes the user to access the certificate.
CREATE MASTER KEY ENCRYPTION BY PASSWORD = '<as3jsdjhaj304SDF>' ]
CREATE CERTIFICATE dbm_certificate
AUTHORIZATION dbm_user
FROM FILE = 'C:\var\opt\mssql\data\dbm_certificate.cer'
WITH PRIVATE KEY (
FILE = 'C:\var\opt\mssql\data\dbm_certificate.pvk',
DECRYPTION BY PASSWORD = '<as3jsdjhaj304SDF>'
)
Database mirroring endpoints use Transmission Control Protocol (TCP) to send and receive messages between the server instances participating database mirroring sessions or hosting availability replicas. The database mirroring endpoint listens on a unique TCP port number.
Update the following Transact-SQL for your environment on all SQL Servers:
CREATE ENDPOINT [Hadr_endpoint]
AS TCP (LISTENER_IP = (<0.0.0.0>), LISTENER_PORT = <5022>)
FOR DATA_MIRRORING (
ROLE = ALL,
AUTHENTICATION = CERTIFICATE dbm_certificate,
ENCRYPTION = REQUIRED ALGORITHM AES
)
ALTER ENDPOINT [Hadr_endpoint] STATE = STARTED
GRANT CONNECT ON ENDPOINT::[Hadr_endpoint] TO [dbm_login]
Important
The TCP port on the firewall needs to be open for the listener port.
For complete information, see The Database Mirroring Endpoint (SQL Server).
Create the availability group. The following Transact-SQL creates an availability group name ag1. The script configures the availability group replicas with SEEDING_MODE = AUTOMATIC. This setting causes SQL Server to automatically create the database on each secondary server after it is added to the availability group. Run the following Transact-SQL on the primary SQL Server to create the availability group.
CREATE AVAILABILITY GROUP [ag1]
WITH (DB_FAILOVER = ON, CLUSTER_TYPE = NONE)
FOR REPLICA ON
N'node1' WITH (
ENDPOINT_URL = N'tcp://node1:5022',
AVAILABILITY_MODE = SYNCHRONOUS_COMMIT,
FAILOVER_MODE = AUTOMATIC,
SEEDING_MODE = AUTOMATIC,
SECONDARY_ROLE (ALLOW_CONNECTIONS = ALL)
),
N'node2' WITH (
ENDPOINT_URL = N'tcp://node2:5022',
AVAILABILITY_MODE = SYNCHRONOUS_COMMIT,
FAILOVER_MODE = AUTOMATIC,
SEEDING_MODE = AUTOMATIC,
SECONDARY_ROLE (ALLOW_CONNECTIONS = ALL)
)
ALTER AVAILABILITY GROUP [ag1] GRANT CREATE ANY DATABASE
Note
CLUSTER_TYPE is a new option for CREATE AVAILABILITY GROUP. An availability group requiresCLUSTER_TYPE = NONE when it is on a SQL Server that is not a member of a Windows Server Failover Cluster.
On each secondary SQL Server, run the following Transact-SQL to join the availability group.
ALTER AVAILABILITY GROUP [ag1] JOIN WITH (CLUSTER_TYPE = NONE)
ALTER AVAILABILITY GROUP [ag1] GRANT CREATE ANY DATABASE
Ensure the database you are adding to the Availability group is in full recovery mode and has a valid log backup. If this is a test database or a new database created, take a database backup. On the primary SQL Server, run the following Transact-SQL to create and back up a database called db1.
CREATE DATABASE [db1]
ALTER DATABASE [db1] SET RECOVERY FULL
BACKUP DATABASE [db1] TO DISK = N'NUL'
On the primary SQL Server, run the following Transact-SQL to add a database called db1 to an availability group called ag1.
ALTER AVAILABILITY GROUP [ag1] ADD DATABASE [db1]
On each secondary SQL Server, run the following query to see if the db1 database has been created and is synchronized.
SELECT * FROM sys.databases WHERE name = 'db1'
GO
SELECT DB_NAME(database_id) AS database, synchronization_state_desc FROM sys.dm_hadr_database_replica_states
The availability group is not a clustered resource at this point.
If you followed the steps in this document, you have an availability group that is not yet clustered. The next step is to add the cluster. While this is a valid configuration in read-scale/load balancing scenarios, it is not valid for HADR. To achieve HADR, you need to add the availability group as a cluster resource. See Next steps for instructions.
While the availability group is not in a cluster, note the following behaviors:
-
If the primary replica goes down and comes back up - for example if the SQL Server instance or node restarts the availability group will go in
RESOLVINGstate. A database restart does not trigger the availability group to go into aRESOLVINGstate. Only an instance restart triggers availability group state evaluation. Because there is no cluster controller to manage the availability group elect one of replicas as primary, you need to manually fail over the availability group. To do this, runALTER AVAILABILITY GROUP FAILOVERon the replica that you choose as primary. You can runALTER AVAILABILITY GROUP FAILOVERon any the former primary replica or any secondary replica. Note the following behavior:- If you run this on the former primary replica then previous configuration returns.
- If you run this on a secondary replica then the rest of replicas - including the former PRIMARY - will automatically join the availability group.
-
Manual failover is a two step process.
- Demote the current primary. On the primary SQL Server, run the following query:
ALTER AVAILABILITY GROUP [AgName] SET (ROLE = SECONDARY) - Promote the current secondary to new primary. On the node that you want to promote run the following query:
ALTER AVAILABILITY GROUP [AgName] FAILOVER
- Demote the current primary. On the primary SQL Server, run the following query:
Important
After you configure the cluster and add the availability group as a cluster resource, you cannot use Transact-SQL to fail over the availability group resources. SQL Server cluster resources on Linux are not coupled as tightly with the operating system as they are on a Windows Server Failover Cluster (WSFC). SQL Server is not aware of the presence of the cluster. All orchestration is done through the cluster management tools. In RHEL or Ubuntu use pcs. In SLES use crm.
Important
If the availability group is a cluster resource, there is a known issue in current release where manual failover to an asynchronous replica does not work. This will be fixed in the upcoming release. Manual or automatic failover to a synchronous replica will succeed.
Configure Red Hat Enterprise Linux Cluster for SQL Server Availability Group Cluster Resources
Configure SUSE Linux Enterprise Server Cluster for SQL Server Availability Group Cluster Resources
Configure Ubuntu Cluster for SQL Server Availability Group Cluster Resources