- maxscale
- CEP
- Galera Cluster
- 참교육
- Path
- drbd
- unix_socket
- snmp
- mgmtip
- admin port
- pod
- perplexity
- Network
- MotD
- 우파푸른하늘
- Storage
- 웰카
- 진상부모_물러가라
- banner
- 우파푸른하늘80만이벤트
- n15148
- vmware
- Kubernetes
- n1548
- etcd
- web&was apche htaccess
- RHEL8
- dell
- CentOS
- wildfly jboss
- Netflix
- Auth
- docker
- openldap
- port description
- mariadb
- data-door
목록분류 전체보기 (237)
전산쟁이의 기억노트
쉘 스크립트에서 조건문 사용시 사용방법 숫자형 비교 조건 설 명 i 작을 때 g 클 때 e 같을때 t 초과 (이하) 스크립트로 구현 i가 j보다 작은 값 일 때 $> vi ./test.sh #!/bin/bash i=0 j=1 if [[ $i -lt $j ]] then echo "$i는 $j 보다 작아요" fi $> ./test.sh 0는 1 보다 작아요 i가 j보다 큰 값 일 때 $> vi ./test.sh #!/bin/bash i=1 j=0 if [[ $i -gt $j ]] then echo "$i는 $j 보다 커요" fi $> ./test.sh 1는 0 보다 커요 i가 j보다 작거나 같은 값 일 때 $> vi ./test.sh #!/bin/bash i=1 j=1 if [[ $i -le $j ]] th..
Dell N1548 dell_sw#copy running-config startup-config This operation may take few minutes. Management interfaces will not be available during this time. Are you sure you want to save? (y/n) y Configuration Saved! Cisco Switch#copy running-config startup-config Destination filename [startup-config]? Building configuration... [OK] 출처 - http://igoni.kr/books/network/page/06905 스위치 정보 저장 | igoni.kr ..
DB데이터 백업하기 -bash-4.1$ pg_dump testdb > test.sql DB 스키마만 덤프할때 bash-4.1$ pg_dump -s testdb > test.sql 데이터 복원 bash-4.1$ psql testdb test.sql DB 스키마만 덤프할때 bash-4.1$ pg_dum... igoni.kr
sda3번 파티션을 iso 리포지터리로 구성 1 $> xe sr-create name-label=”VM-ISO” type=iso device-config:location=/data/iso device-config:legacy_mode=true content-type=iso sda4번 파티션을 OS리포지터리로 구성*구성할때는 반드시 빈 파티션이여야 함. 1 $> xe sr-create content-type=user device-config:device=/dev/sda4 name-label=”VM-OS” shared=false type=ext 출처 - http://igoni.kr/books/linux/page/xenserver-localdisk xenserver localdisk 리포... | igoni...
$> vi /opt/xensource/installer/constants.py ... GPT_SUPPORT=False $> exit 출처 - http://igoni.kr/books/linux/page/xenserver-gpt-disallow xenserver gpt disallow | igoni.kr $> vi /opt/xensource/installer/constants.py ... GPT_SUPPORT=False $> exit igoni.kr
우분투에서 /etc/resolv.conf 파일을 직접 수정하고 네트워크 재시작하면 원래대로 돌아온다… root@ubuntu:/# cat /etc/resolv.conf # Dynamic resolv.conf(5) file for glibc resolver(3) generated by resolvconf(8) # DO NOT EDIT THIS FILE BY HAND — YOUR CHANGES WILL BE OVERWRITTEN 수정해봐야 별 볼일 없다는 뜻…. 영구적으로 적용하려면 해당파일에서 지정할 네임서버의 주소를 입력을 해주어야 한다. $> vi /etc/resolvconf/resolv.conf.d/head nameserver 168.126.63.1 nameserver 168.126.63.2 파일 : ..
패키지 업데이트 방법 $> apt-get update -y $> apt-get upgrade -y 언어셋 설정 $> /etc/default/locale 네트워크 설정 $> /etc/network/interfaces 패키지 찾을때 $> apt-cache search jpeg | more 서비스 데몬 관리 $> sudo apt-get install dialog rcconf -y 우분투 설치후 root 패스워드 설정방법 $> sudo passwd root * 우분투 설치 이후에 root 패스워드는 따로 설정되어 있지 않기 때문에 설치한 다음에 root패스워드 설정을 해 주어야 함 출처 - http://igoni.kr/books/linux/page/b2eb7 우분투 몇가지 정보들 | igoni.kr 패키지 업데..
eth0 수동으로 ip설정 및 자동활성화 $> vi /etc/network/interfaces auto eth0 iface eth0 inet static address 192.168.10.10 netmask 255.255.255.0 gateway 192.168.10.1 resolv설정 $> vi /etc/resolvconf/resolv.conf.d/head nameserver 168.126.63.1 nameserver 168.126.63.2 출처 - http://igoni.kr/books/linux/page/6c988 우분투 네트워크 설정하기 | igoni.kr 우분투환경에서 네트워크 설정하기 eth0 수동으로 ip설정 및 자동활성화 $> vi /etc/network/interfaces... igoni.kr
mkdir -p /var/log/pgsql/ chown -R postgres.dba /var/log/pgsql/ vi /usr/local/pgsql/data/postgresql.conf logging_collector = on log_destination = 'stderr' redirect_stderr = true log_directory = '/var/log/pgsql/' log_filename = 'pgsql-%Y-%m-%d_%H%M%S.log' log_rotation_size = 500MB 출처 - http://igoni.kr/books/dbms/page/postgres postgres 로그디렉토리 생성하기 | igoni.kr mkdir -p /var/log/pgsql/ chown -R postgr..
사전정보 컨테이너 기반의 nexus설치 (docker기반의 nexus설치)외에 바이너리 기반으로 nexus설치 절차 작성 설치 버전은 3.310 버전으로 설치 진행 설치 작업 설치파일 다운로드 $ wget https://download.sonatype.com/nexus/3/nexus-3.31.1-01-unix.tar.gz 압축해제 후 설정파일 셋업 $ tar -zxvf nexus-3.31.1-01-unix.tar.gz -C /svc/nexus $ cd /svc/nexus/nexus-3.31.1-01/ #포트 정보 변경 $ vi etc/nexus-default.properties ... application-port=28080 ... #JVM 리소스 변경 $ vi bin/nexus.vmoptions .....