반응형 전체382 ubuntu 20.04 마인크래프트 be 서버 만들기 오라클 클라우드에서 무료 인스턴스를 이용했다. ubuntu minimal 버전이 아닌 이미지를 이용했다. wget, screen 은 이미 기본으로 깔려있었다. jdk는 굳이 깔지 않았다. $ sudo apt upgrade $ sudo apt update $ sudo apt install unzip $ sudo mkdir /home/be_server $ cd /home/be_server $ sudo wget https://minecraft.azureedge.net/bin-linux/bedrock-server-1.18.12.01.zip (최신버전을 받을 것) $ sudo unzip bedrock-server-1.18.12.01.zip -d . // 방화벽 관련 작업 $ sudo apt install fire.. 2022. 10. 6. [AIX] 계정잠김 해제 ■ AIX 서버의 패스워드가 틀려 계정이 잠겼을 경우 해제 방법 raonyn's Password: There have been too many unsuccessful login attempts; please see the system administrator. 1. 방법1 ]# chsec -f /etc/security/lastlog -a "unsuccessful_login_count = 0" -s raonyn 2. 방법2 smitty user에서 fail count 초기화 및 lock false로 변경 2022. 10. 6. [ASP] ASP에서 YYMMDDHHMMSS 형식으로 출력하는 함수 ASP에서 PHP처럼 date_format() 함수를 이용할때 처럼 yymmddhhmmss 형식으로 출력하는 함수 Function PrintDateString(vDate) PrintDateString = Year(vDate)& right("0" & Month(vDate),2) & right("0" & Day(vDate),2) & right("0" & Hour(vDate),2) & right("0" & Minute(vDate),2) & right("0" & second(vDate),2) End Function ' 출력테스트 Response.write PrintDateString(now) 2022. 10. 6. [LINUX] LVM 생성 및 관리 1. fdisk 명령을 이용한 디스크 파티션 구성 ]# fdisk -l Disk /dev/sdb: 5368 MB, 5368709120 bytes, 10485760 sectors Units = sectors of 1 * 512 = 512 bytes Sector size (logical/physical): 512 bytes / 512 bytes I/O size (minimum/optimal): 512 bytes / 512 bytes Disk /dev/sda: 64.4 GB, 64424509440 bytes, 125829120 sectors Units = sectors of 1 * 512 = 512 bytes Sector size (logical/physical): 512 bytes / 512 bytes I/.. 2022. 10. 6. [Windows] 지난달 구하기 배치파일 @echo off rem 지난달 구하기 ######################### set TODAY=%DATE% set YY=%date:~0,4% set M=%date:~5,2% set DD=%date:~8,2% set /a MM=1%M%-100 if %M% neq 01 goto NOM set /a YY=%YY%-1 set /a MM=12 echo %MM% goto END :NOM set /a MM=%MM%+99 set MM=%MM:~1,2% :END echo %YY%%MM%%DD% 2022. 10. 6. Visual Syslog Server 초기 설정(Windows syslog server) ■ Visual Syslog Server for Windows : Visual Syslog Server는 윈도우용 오픈소스 프로그램입니다. 설정이 어렵지 않고 기능도 다양해 상용 syslog server를 사용하지 않으신다면 설치해서 사용해볼만 합니다. 간단히 사용법을 정리해 보았습니다. 1. 소프트웨어 다운로드 경로 Sources hosted on the GitHub: https://github.com/MaxBelkov/visualsyslog 2. 다운로드 후 설치 :설치 완료 한 후 실행하면 아래와 같은 창이 뜹니다. “Setup”을 클릭하면 기본 설정창이 뜹니다. 2-1) Syslog 서버로 UDP와 TCP를 선택합니다. 보안상 UDP를 사용하지 않으실경우 “Enable UDP listener 체크.. 2022. 10. 6. 이전 1 ··· 56 57 58 59 60 61 62 ··· 64 다음 728x90