1) ๋ฌธ์ ์ํฉOracle Linux 8 ์ค์น ํ, dnf install ๋ช
๋ น์ด๋ก ํจํค์ง๋ฅผ ์ค์นํ๋ ค ํ์ผ๋ ์๋์ ๊ฐ์ ์๋ฌ๊ฐ ๋ฐ์ํ๋ค์.์๋ฌด๋๋ Locale ์ค์ ์ด ์๋ชป๋์ด ์๋ ๊ฒ ๊ฐ์ผ๋ ํ์ธํด๋ด
์๋ค![root@SRV2 ~]# dnf install -y mongodbFailed to set locale, defaulting to C.UTF-8 2) ์์ธ[root@SRV2 ~]# localectl status System Locale: LANG=en_US.UTF-8 VC Keymap: us X11 Layout: us [root@SRV2 ~]# localectl list-locales | grep -i utfC.utf8 ...en_US.utf8en_US.utf8@ampm ..
๐ ๏ธ Devops/Linux
1) ๊ฐ์ CentOS 6 ์ดํ ๋ฒ์ ์์๋ ๋คํธ์ํฌ ๋๋ฐ์ด์ค๋ช
์ด "eth0"์ฒ๋ผ ํ๊ธฐ๋์์ผ๋, CentOS 7 ๋ถํฐ๋ ๋ณด์์์ ์ด์ ๋ก ens32, enp12 ๋ฑ ๋๋ฐ์ด์ค๋ช
์ด ์ผ๊ด์ ์ด์ง ์๋ค. ๋ฐ๋ผ์, ๊ธฐ์กด์ ๋๋ฐ์ด์ค๋ช
์ธ eth0์ฒ๋ผ ํ๊ธฐํ๋ ค๋ฉด grub ํ์ผ์ ์์ ํด์ฃผ์ด์ผ ํ๋๋ฐ ์๋์ ์ ์ฐจ๋๋ก ์งํํด๋ณด์! ์ฐธ๊ณ ๋ก, Redhat ๊ณ์ด๊ณผ Debian ๊ณ์ด์ ๋ํด์ ๋ค๋ฃฌ๋ค! (1) ๊ธฐ์กด ๋คํธ์ํฌ ๋๋ฐ์ด์ค๋ช
ํ์ธ [root@localhost ~]# ifconfig ens32: flags=4163 mtu 1500 inet 172.20.0.101 netmask 255.255.255.0 broadcast 0.0.0.0 ether 00:0c:29:04:b5:1e txqueuelen 1000 (Ethernet) RX p..
ํ์ผ์ ์คํ๊ถํ ๋ถ์ฌํ๊ธฐchmod +x /etc/rc.d/rc.local ๋ฐ๋ชฌ ์๋์์ ๋ฑ๋กํ๊ธฐcat > /usr/lib/systemd/system/rc-local.service[Install]WantedBy=multi-user.targetEOFsystemctl enable rc-local.servicesystemctl start rc-local.service rc.local ์๋น์ค ์ํ ํ์ธsystemctl status rc-local.service // ์ ๋๋ก Activated ๋๋์ง ํ์ธsystemctl list-unit-files | grep rc.local // enabled ๋์๋ ์ง ํ์ธ ํ
์คํธcat > /etc/rc.d/rc.localtou..
1) ๊ธฐ๋ณธ ์ค์ systemctl stop firewalldsystemctl disable firewalldsystemctl stop NetworkManagersystemctl disable NetworkManagersetenforce 0sed -i ‘s/SELINUX=enforcing/ SELINUX=disabled/g’ /etc/selinux/configyum install -y epel-release && yum update -y 2) PXE ๊ด๋ จ Package ์ค์น ๋ฐ ์ค์ yum install -y dhcp tftp tftp-server syslinux vsftpd xinetdcat > /etc/dhcp/dhcpd.conf 3) Rocky 8.6, RHEL 8.6 Mount ๋ฐ ํ์ผ ๋ณต์ฌmkdir..
1) ๊ธฐ๋ณธ ํจํค์ง ๋ค์ด๋ก๋ ๋ฐ ์ค์ apt-get install apt-mirror apache2systemctl restart apache2systemctl enable apache2 2) apt-mirror ์์คํ์ผ ๋ณ๊ฒฝsudo cp /usr/bin/apt-mirror /usr/bin/apt-mirror.originalsudo chown root:root /usr/bin/apt-mirror && sudo chmod 755 /usr/bin/apt-mirrorapt Package๋ก ์ค์นํ apt-mirror๋ ํ์ฌ cnf ํ์ผ์ ์ ๋๋ก ๋ชป ๊ฐ์ ธ์ค๋ ์ด์๊ฐ ์์ด ์๋์ zipํ์ผ์ ๋ค์ด๋ก๋ ๋ฐ์ ํ์ apt-mirror ํ์ผ๋ง ์๋ฒ๋ก ์ ์กํ์ฌ ์์ ์ปค๋งจ๋๋ฅผ ์คํํ๋ฉด ๋๋ค. 3) apt-mirror Confi..
1) ๊ธฐ๋ณธ ํจํค์ง ๋ค์ด๋ก๋apt-get update -yapt-get install -y ifenslave ethtool 2) Bonding ๋ชจ๋ Loadmodprobe bondinglsmod | grep -i bonding // ๋ชจ๋ Loading Checkecho "bonding" > /etc/modules // ๋ถํ
์ดํ ๋ชจ๋ ์๋ Loading 3) Netplan ์ค์ ํ์ผ ์์ network: ethernets: enp1s0: dhcp4: false enp2s0: dhcp4: false bonds: bond10: interfaces: [enp1s0, enp2s0] parameters: ..