Inicializar o cluster
Um cluster do GitHub Enterprise Server deve ser configurado com uma licença e inicializado usando o shell administrativo (SSH).
Neste artigo
- Instalar o GitHub Enterprise Server
- Configurar o primeiro nó
- Inicializar o cluster
- Sobre o arquivo de configuração do cluster
Note: GitHub Enterprise Server clustering must be configured with HTTPS.
Instalar o GitHub Enterprise Server
- Em cada nó de cluster, provisione e instale o GitHub Enterprise Server. Para obter mais informações, consulte "Configurar uma instância do GitHub Enterprise Server".
- Usando o shell administrativo ou DHCP, configure somente o endereço IP de cada nó. Não altere outras configurações.
Configurar o primeiro nó
-
Conecte-se ao nó a ser designado como
mysql-master
nocluster.conf
. Para obter mais informações, consulte “Sobre o arquivo de configuração do cluster." -
No navegador, acesse
https://<ip address>:8443/setup/
. -
At the prompt, upload your license file and set a management console password. For more information, see "Managing your GitHub Enterprise Server license."
-
In the Console de gerenciamento, configure and save your desired settings.
-
A instância será reiniciada automaticamente.
Inicializar o cluster
Para inicializar o cluster, você precisa de um arquivo de configuração de cluster (cluster.conf
). Para obter mais informações, consulte “Sobre o arquivo de configuração do cluster".
- Desde o primeiro nó configurado, execute
ghe-cluster-config-init
. Essa ação inicializará o cluster caso haja nós no arquivo de configuração que não estão configurados. - Execute
ghe-cluster-config-apply
. Fazer isso vai validar o arquivocluster.conf
, aplicar a configuração a cada arquivo de nó e ativar os serviços configurados em cada nó.
Para verificar o status de um cluster em execução, use o comando ghe-cluster-status
.
Sobre o arquivo de configuração do cluster
O arquivo de configuração do cluster (cluster.conf
) define os nós no cluster e os serviços que cada nó executa. Para obter mais informações, consulte "Sobre os nós do cluster."
O exemplo cluster.conf
define um cluster com cinco nós.
- Two nodes (called
ghe-app-node-\*
) run theweb-server
andjob-server
services responsible for responding to client requests. - Três nós (chamados
ghe-data-node-\*
) executam o serviço de armazenamento e recuperação de dados do GitHub Enterprise Server.
Os nomes dos nós podem ser qualquer nome de host válido. Cada nome é definido como nome de host e será adicionado a /etc/hosts
em cada nó. Assim, os nós podem ser resolvidos localmente entre si.
Especifique o primeiro nó de cluster configurado como MySQL master mysql-server
e mysql-master
.
Warning: If you're upgrading a GitHub Enterprise Server cluster to version 2.16 or deploying a new GitHub Enterprise Server cluster running version 2.16, ensure that you include the following key-value pairs in cluster.conf
.
-
This key-value pair in the
[cluster]
section specifies a primary datacenter nameddefault
.primary-datacenter = default
-
These key-value pairs in the section for an individual node add the
consul-server
service and specify thedefault
datacenter. At least three nodes in your cluster must run theconsul-server
service in the primary datacenter. For more information, see "About cluster nodes."consul-server = true consul-datacenter = default
[cluster]
mysql-master = ghe-data-node-1
redis-master = ghe-data-node-1
primary-datacenter = default
[cluster "ghe-app-node-1"]
hostname = ghe-app-node-1
ipv4 = 192.168.0.2
# ipv6 = fd12:3456:789a:1::2
web-server = true
job-server = true
[cluster "ghe-app-node-2"]
hostname = ghe-app-node-2
ipv4 = 192.168.0.3
# ipv6 = fd12:3456:789a:1::3
web-server = true
job-server = true
[cluster "ghe-data-node-1"]
hostname = ghe-data-node-1
ipv4 = 192.168.0.4
# ipv6 = fd12:3456:789a:1::4
consul-server = true
consul-datacenter = default
git-server = true
pages-server = true
mysql-server = true
elasticsearch-server = true
redis-server = true
memcache-server = true
metrics-server = true
storage-server = true
[cluster "ghe-data-node-2"]
hostname = ghe-data-node-2
ipv4 = 192.168.0.5
# ipv6 = fd12:3456:789a:1::5
consul-server = true
consul-datacenter = default
git-server = true
pages-server = true
mysql-server = true
elasticsearch-server = true
redis-server = true
memcache-server = true
metrics-server = true
storage-server = true
[cluster "ghe-data-node-3"]
hostname = ghe-data-node-3
ipv4 = 192.168.0.6
# ipv6 = fd12:3456:789a:1::6
consul-server = true
consul-datacenter = default
git-server = true
pages-server = true
mysql-server = true
elasticsearch-server = true
redis-server = true
memcache-server = true
metrics-server = true
storage-server = true
Crie o arquivo /data/user/common/cluster.conf
no primeiro nó configurado. Por exemplo, usando vim
:
ghe-data-node-1:~$ sudo vim /data/user/common/cluster.conf