본문 바로가기

Rocky5

Openstack Neutron Port 생성 방법 Openstack Neutron Port 생성 방법Openstack Port Create CLI 명령#!/bin/bash#####################################################################################TENANT_INFO=admin-openrc### Input Information ###NET_NAME={NETWORK_NAME}### Input Information ###SUBNET_NAME={SUBNET_NETWORK_NAME}LB_VIP=192.168.10.101LB_NAME='TEST LB VIP'##########################################################################.. 2024. 5. 22.
RHCSA - hostname 설정 Hostname 설정 1대의 가상 서버의 Hostname을 설정하는 문제이다. Q. Hostname을 다음과 같이 설정하라. 예시 : server1.example.com ### 현재 hostname 확인 $ hostname testa ### 예시 hostname 설정 $ hostnamectl set-hostname server1.example.com ### 변경된 hostname 확인 server1.example.com 2023. 8. 18.
Linux local repository 설정 방법 1. Linux Local Repostiroy 설정 방법 * lcoal repository 설정 방법 1) 외부 통신 가능한 환경인 경우 $ yum install createrepo -y $ mkdir /test $ createrepo /test $ vim /etc/yum.repo.d/test.repo [test] name=test baseurl=file:///root/test/ gpgcheck=0 enabled=1 $ yum clean all $ yum repolist 2) 외부 통신이 불가능한 경우 * 업로드된 파일 해당 서버 업로드 $ rpm -ivh *.rpm $ mkdir /test $ createrepo /test $ vim /etc/yum.repo.d/test.repo [test] name=.. 2023. 8. 10.
Linux SSH 접속시 암호 늦게뜨는것 해결하기 1. Linux SSH 접속 시 로그인/암호 늦게 뜨는것(딜레이) 해결하기 어느순간 Linux 서버 접근하려니 계정 입력 이후 암호 입력창이 늦게 나온다. 이런 경우 다음과 같은 서버의 설정이로 일부 해결할 수 있다. SSH 접속시 암호 입력창 늦게 뜨는것 확인하기 $ vim /etc/ssh/sshd_config # yes를 no로 바꾸기 GSSAPIAuthentication no # 주석을 해제하고 no로 설정 UseDNS no $ service sshd restart 2023. 8. 10.