1
0
mirror of synced 2026-02-01 21:01:46 -05:00

Merge pull request #8406 from github/repo-sync

repo sync
This commit is contained in:
Octomerger Bot
2021-07-22 00:39:38 +10:00
committed by GitHub
3 changed files with 22 additions and 22 deletions

Binary file not shown.

Before

Width:  |  Height:  |  Size: 51 KiB

After

Width:  |  Height:  |  Size: 40 KiB

View File

@@ -18,8 +18,8 @@ If you're taking a node offline that has any data services (like git, pages, or
1. Find the `uuid` of the node in with the `ghe-config`command.
```
$ ghe-config cluster._hostname_.uuid
```shell
$ ghe-config cluster.<em>HOSTNAME</em>.uuid
```
2. You'll need to monitor the status of your node while the data is being copied. Ideally, the node shouldn't be taken offline until the copying is complete. To monitor the status of your node, run any of the following commands:
@@ -29,11 +29,11 @@ If you're taking a node offline that has any data services (like git, pages, or
ghe-spokes evac-status
```
For {% data variables.product.prodname_pages %}
{% raw %}
```shell
echo "select count(*) from pages_replicas where host = 'pages-server-<em>UUID</em>'" | ghe-dbconsole -y
```
echo "select count(*) from pages_replicas where host = 'pages-server-<uuid>'" | ghe-dbconsole -y
```
{% endraw %}
For storage
```
ghe-storage evacuation-status
@@ -42,26 +42,25 @@ If you're taking a node offline that has any data services (like git, pages, or
3. After the copying is complete, you can evacuate the storage service. Run any of the following commands:
For Git
{% raw %}
```shell
ghe-spokes server evacuate git-server-<em>UUID</em> \'<em>REASON FOR EVACUATION</em>\'
```
ghe-spokes server evacuate git-server-<uuid>
```
{% endraw %}
For {% data variables.product.prodname_pages %}
{% raw %}
```shell
ghe-dpages evacuate pages-server-<em>UUID</em>
```
ghe-dpages evacuate pages-server-<uuid>
```
{% endraw %}
For storage, take the node offline
{% raw %}
```shell
ghe-storage offline storage-server-<em>UUID</em>
```
ghe-storage offline storage-server-<uuid>
```
{% endraw %}
then evacuate
{% raw %}
```shell
ghe-storage evacuate storage-server-<em>UUID</em>
```
ghe-storage evacuate storage-server-<uuid>
```
{% endraw %}

View File

@@ -22,6 +22,7 @@ shortTitle: User into an organization
- An organization **cannot** be converted back to a user.
- The SSH keys, OAuth tokens, job profile, reactions, and associated user information, **will not** be transferred to the organization. This is only true for the user account that's being converted, not any of the user account's collaborators.
- Any commits made with the converted user account **will no longer be linked** to that account. The commits themselves **will** remain intact.
- Any forks of private repositories made with the converted user account will be deleted.
{% endwarning %}