20260319 サーバ移行01 » 履歴 » バージョン 1
sylow castle, 2026/03/19 16:22
| 1 | 1 | sylow castle | # 20260319 サーバ移行01 |
|---|---|---|---|
| 2 | |||
| 3 | Redmineサーバの移行のメモ |
||
| 4 | |||
| 5 | - etckeeperのインストール |
||
| 6 | - localeを日本語に設定 |
||
| 7 | - /etc/skelの設定 |
||
| 8 | |||
| 9 | ## 諸々のインストール |
||
| 10 | |||
| 11 | ``` |
||
| 12 | dnf install epel-release vim bash-completion htop bind-utils lsof dnf-automatic |
||
| 13 | ``` |
||
| 14 | |||
| 15 | ## userの追加 |
||
| 16 | |||
| 17 | ``` |
||
| 18 | adduser s.castle |
||
| 19 | cd /home/s.castle/.ssh |
||
| 20 | |||
| 21 | echo "公開鍵" >> authorized_keys |
||
| 22 | |||
| 23 | getent group | grep wheel |
||
| 24 | usermod --append --groups wheel s.castle |
||
| 25 | getent group | grep wheel |
||
| 26 | |||
| 27 | ``` |
||
| 28 | |||
| 29 | ## /etc/sudoersの設定 |
||
| 30 | |||
| 31 | wheelグループに権限追加 |
||
| 32 | |||
| 33 | ``` |
||
| 34 | visudo |
||
| 35 | ``` |