2023년 6월 29일 목요일

[Linux]_네트워크 관리

 

[ 출처 : https://tpcable.co.kr/ , https://www.lesstif.com/ ]

네트워크 조회

# nmcli con show







네트워크 설정

# nmcli con mod "System eth0" ipv4.address 192.0.2.2/24 ipv4.gateway 192.0.2.254 ipv4.dns "8.8.8.8 168.126.63.1"

DHCP 활성화

# nmcli device modify "System eth0" ipv4.method auto

부팅시 자동 활성화

# nmcli con mod "System eth0" connection.autoconnect yes

 네트워크 재부팅

# systemctl restart NetworkManager.service 

디바이스 상태 확인(아이피 부여된 상태 전체 조회)

#nmcli device show

네트워크 온오프(유선/무선)

# nmcli net on/off      nmcli radio wifi on/off

네트워크 활성화

# nmcli connection up

 



[Linux] Rocky VM 명령어

 [ 출처 : https://techviewleo.com/ ]


리눅스 기존 가상 프로그램을 SSH상에서 조회 및 제어하는 방법임.

# virsh list --all






 

#Start VM
  virsh start VM_name

#Stop VM
  virsh stop VM_name

#Save current state of running VM
  virsh save VM_name VM_name_save

#Restore saved VM
  virsh restore VM_name_save

#Reboot
  virsh reboot VM_name

#Pause/Suspend VM
  virsh suspend VM_name

#Resume Suspended VM
 virsh resume VM_name

#Shutdown
  virsh shutdown VM_name

#Expunge
 virsh destroy VM_name

2023년 6월 7일 수요일

[ORACLE] 아카이빙 모드 확인 하는법

아래 명령어로 아카이빙 모드 확인 및 대상 파일 위치 확인 가능함.

C:\Users\Administrator>sqlplus "/as sysdba"

SQL*Plus: Release 11.2.0.4.0 Production on Wed Jun 7 08:10:54 2023

Copyright (c) 1982, 2013, Oracle.  All rights reserved.


Connected to:
Oracle Database 11g Enterprise Edition Release 11.2.0.4.0 - 64bit Production
With the Partitioning, OLAP, Data Mining and Real Application Testing options

SQL> archive log list;
Database log mode              Archive Mode
Automatic archival             Enabled
Archive destination            D:\archive
Oldest online log sequence     31974
Next log sequence to archive   31976
Current log sequence           31976