{ // Use IntelliSense to learn about possible attributes. // Hover to view descriptions of existing attributes. // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 "version": "0.2.0", "configurations": [ { "type": "chrome", "request": "launch", "name": "Launch Chrome against localhost", "url": "http://localhost:8080", "runtimeArgs": ["--disable-web-security"], "webRoot..
예시 원격주소 222.108.87.161:3388 각 데이터베이스 기본 포트 mysql 3306 mssql 1433 SQLite 8080 Oracle 1521 MariaDB 3306 접속 정보 및 도커 명령어 MySQL 222.108.87.161,3400 root/패스워드 docker pull mysql docker run --name mysql-container -e MYSQL_ROOT_PASSWORD=패스워드 -d -p 3306:3306 mysql:latest MSSQL 222.108.87.161,3401 sa/패스워드 docker pull mcr.microsoft.com/mssql/server:2019-latest docker run -e "ACCEPT_EULA=Y" -e "SA_PASSWORD=패..
쿠버네티스를 사용하고 있는 환경에서 AZ CLI 패키지 설치 1. 설치 프로세스에 필요한 패키지를 가져옵니다. sudo apt-get update sudo apt-get install ca-certificates curl apt-transport-https lsb-release gnupg 2. Microsoft 서명 키를 다운로드하고 설치합니다. sudo mkdir -p /etc/apt/keyrings curl -sLS https://packages.microsoft.com/keys/microsoft.asc | gpg --dearmor | sudo tee /etc/apt/keyrings/microsoft.gpg > /dev/null sudo chmod go+r /etc/apt/keyrings/micros..
services.AddHostedService(); protected override async Task ExecuteAsync(CancellationToken stoppingToken) { await Task.Delay(TimeSpan.FromSeconds(3)); // 감시할 폴더 var path = Path.Combine(Directory.GetCurrentDirectory(), "files"); if (Directory.Exists(path) == false) { Directory.CreateDirectory(path); } await CheckFilesAsync(path); var watcher = new FileSystemWatcher(path) { IncludeSubdirectories = ..
sudo apt update sudo apt install vsftpd sudo systemctl status vsftpd sudo nano /etc/vsftpd.conf netstat -nlpt | grep 21 # vdftpd 정지, 재시작, 활성화, 상태 확인 sudo systemctl stop vsftpd sudo systemctl restart vsftpd sudo systemctl enable vsftpd sudo systemctl status vsftpd #현재 네트워크 연결 상태 보기 netstat -natp #이 서버에서 연결가능한 포트번호 보기 netstat -natp | grep LISTEN # 폴더 생성 후 생성된 폴더를 마운트 sudo mkdir hdd sudo chown nobo..
단순히 명령어 뒤에 & 를 붙여주면 된다. hello.c & [1] 11634 실행시키면 [1] 11634과 같이 [작업번호] 프로세스ID 가 출력된다. jobs 명령을 입력하면, 백그라운드로 동작중인 프로세스가 출력 만약 백그라운드 프로세스를 일시중지하고싶다면, 우선 fg 명령을 통해 포어그라운드로 프로세스를 가져온 다음 CTRL + Z, C를 입력하여 종료해야한다. hello.c & ------------------ jobs [1]+ Running hello.c & ------------------ fg 1 #포그라운드로 가져옴 ------------------ hello.c ^Z [1]+ Stopped hello.c ------------------ Ctrl + Z 로 일시정지 또는 Ctrl + C..
- Total
- Today
- Yesterday