Windows WSL2 上に Rocky Linux8.6でサーバ構築
2022/07/26
2022/08/31
Rocky Linuxでも同様にwsl2のインストール
サーバ構築
ここからダウンロード
ダウンロードしたらRockyLinux-8.5.exeをクリックしてインストール
サーバ構築
CentOS8とそれほど大きく変わらない。そりゃそうだ!同じredhat8系ですから
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 |
[root@spinaker itchy]# sudo dnf update [root@spinaker itchy]# sudo dnf install https://dl.fedoraproject.org/pub/epel/epel-release-latest-8.noarch.rpm [root@spinaker itchy]# sudo dnf install daemonize [root@spinaker itchy]# dnf install python39 [root@spinaker itchy]# update-alternatives --config python [root@spinaker itchy]# update-alternatives --config python3 [root@spinaker itchy]# wget https://github.com/arkane-systems/genie/releases/download/v2.2/genie-2.2-1.fc34.x86_64.rpm [root@spinaker itchy]# dnf install ./genie-2.4-1.fc36.x86_64.rpm [root@spinaker itchy]# pip3 install psutil [root@spinaker itchy]# genie -s <--- ctrl+c [root@spinaker itchy]# genie -s <---もう一度起動初回だけ [root@spinaker itchy]# sudo systemctl set-default multi-user.target [root@spinaker itchy]# dnf install mariadb-server httpd [root@spinaker itchy]# systemctl start mariadb-server [root@spinaker itchy]# systemctl start httpd [root@spinaker itchy]# mysql_secure_installation |