Skip to content
Merged
Changes from 3 commits
Commits
Show all changes
25 commits
Select commit Hold shift + click to select a range
ffc7dce
Update site-policy-sync.yml
pcihon Mar 24, 2021
944538d
Update PULL_REQUEST_TEMPLATE.md
pcihon Mar 24, 2021
d2172e0
Update site-policy-sync.yml
pcihon Apr 5, 2021
91677dc
Reverting PR template
pcihon Apr 5, 2021
3f0416a
Add commands required to safely shutdown & reboot when resizing GHES …
djdefi Apr 16, 2021
de4237a
Merge branch 'main' into repo-sync
Octomerger Apr 16, 2021
fe25ec1
Merge branch 'main' into repo-sync
Octomerger Apr 16, 2021
9a02c3c
Merge pull request #18841 from github/repo-sync
Octomerger Apr 16, 2021
19a2014
Merge pull request #5447 from github/repo-sync
Octomerger Apr 16, 2021
75160c1
Merge branch 'main' into site-policy-sync-update
pcihon Apr 16, 2021
168ca2e
Merge pull request #18400 from github/site-policy-sync-update
pcihon Apr 16, 2021
cfefcd3
Merge branch 'main' into repo-sync
Octomerger Apr 16, 2021
5454c71
Merge pull request #5448 from github/repo-sync
Octomerger Apr 16, 2021
7753a15
Merge branch 'main' into repo-sync
Octomerger Apr 16, 2021
2e0d32e
Merge pull request #18842 from github/repo-sync
Octomerger Apr 16, 2021
2bba3c7
Add warning about GitHub Connect behavior with Actions (#18771)
chrispat Apr 16, 2021
8742011
Merge branch 'main' into repo-sync
Octomerger Apr 16, 2021
565a85a
Merge branch 'main' into repo-sync
Octomerger Apr 16, 2021
26991d8
Merge pull request #18843 from github/repo-sync
Octomerger Apr 16, 2021
045b597
Merge pull request #5450 from github/repo-sync
Octomerger Apr 16, 2021
4bb6857
:art: Wrap the final line
lee-dohm Apr 16, 2021
697f21f
Use an array for the event types for future proofing
lee-dohm Apr 16, 2021
4900634
Merge pull request #18845 from github/no-response-syntax
lee-dohm Apr 16, 2021
998f40d
Merge branch 'main' into repo-sync
Octomerger Apr 16, 2021
467fa29
Merge pull request #5451 from github/repo-sync
Octomerger Apr 16, 2021
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 12 additions & 3 deletions content/admin/enterprise-management/increasing-storage-capacity.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,10 @@ As more users join {% data variables.product.product_location %}, you may need t
1. Resize the existing user volume disk using your virtualization platform's tools.
{% data reusables.enterprise_installation.ssh-into-instance %}
3. Put the appliance in maintenance mode. For more information, see "[Enabling and scheduling maintenance mode](/enterprise/{{ currentVersion }}/admin/guides/installation/enabling-and-scheduling-maintenance-mode)."
4. Reboot the appliance to detect the new storage allocation.
4. Reboot the appliance to detect the new storage allocation:
```shell
$ sudo reboot
```
5. Run the `ghe-storage-extend` command to expand the `/data/user` filesystem:
```shell
$ ghe-storage-extend
Expand All @@ -40,7 +43,10 @@ As more users join {% data variables.product.product_location %}, you may need t
### Increasing the root partition size using a new appliance

1. Set up a new {% data variables.product.prodname_ghe_server %} instance with a larger root disk using the same version as your current appliance. For more information, see "[Setting up a {% data variables.product.prodname_ghe_server %} instance](/enterprise/{{ currentVersion }}/admin/guides/installation/setting-up-a-github-enterprise-server-instance)."
2. Shut down the current appliance.
2. Shut down the current appliance:
```shell
$ sudo poweroff
```
3. Detach the data disk from the current appliance using your virtualization platform's tools.
4. Attach the data disk to the new appliance with the larger root disk.

Expand All @@ -57,6 +63,9 @@ As more users join {% data variables.product.product_location %}, you may need t
```shell
$ ghe-upgrade PACKAGE-NAME.pkg -s -t /dev/xvdg1
```
4. Shut down the appliance.
4. Shut down the appliance:
```shell
$ sudo poweroff
```
5. In the hypervisor, remove the old root disk and attach the new root disk at the same location as the old root disk.
6. Start the appliance.