본문 바로가기

ubuntu6

[Linux] Ubuntu 20.04 NodeJS 16 설치 1. NodeSource PPA 추가 이 명령은 Ubuntu 20.04 설치에 NodeJS 16을 설치하는 데 필요한 PPA 소스를 추가합니다. curl -s https://deb.nodesource.com/setup_16.x | sudo bash 결과 ## Installing the NodeSource Node.js 16.x repo... ## Populating apt-get cache... + apt-get update Hit:1 http://ap-northeast-2.ec2.archive.ubuntu.com/ubuntu focal InRelease Hit:2 http://ap-northeast-2.ec2.archive.ubuntu.com/ubuntu focal-updates InRelease Hi.. 2022. 10. 20.
[Linux] Ubuntu NGINX 설치 1. NGINX 설치 sudo apt update sudo apt install nginx 기본 페이지 위치: /var/www/html 2. 방화벽 설정 - 목록 sudo ufw app list - HTTP 허용 sudo ufw allow 'Nginx HTTP' - 상태확인 sudo ufw status 3. 웹 서버 확인 # 상태확인 systemctl status nginx 4. NGINX 서버 블록 설정 - 앱 폴더 생성 sudo mkdir -p /var/www/[도메인]/html - User 설정 sudo chown -R [유저]:[유저] /var/www/[도메인]/html - 폴더 권한 설정 sudo chmod -R 755 /var/www/[도메인] - index.html 생성 이 내용은 별도로 진.. 2022. 9. 28.
[Linux] Ubuntu 현재 버전 확인 첫번째 방법 - 명령어 lsb_release -a - 결과 No LSB modules are available. Distributor ID: Ubuntu Description: Ubuntu 20.04.5 LTS Release: 20.04 Codename: focal 두번째 방법 - 명령어 cat /etc/issue - 결과 Ubuntu 20.04.5 LTS \n \l 세번째 방법 - 명령어 cat /etc/os-release - 결과 NAME="Ubuntu" VERSION="20.04.5 LTS (Focal Fossa)" ID=ubuntu ID_LIKE=debian PRETTY_NAME="Ubuntu 20.04.5 LTS" VERSION_ID="20.04" HOME_URL="https://www.ubun.. 2022. 9. 28.
[Linux] Ubuntu 20.04 zsh, oh-my-zsh 설치 1. zsh 설치 - 설치확인 zsh --version - 설치 sudo apt install zsh -y && chsh -s `which zsh` - 설정 (enter치면 ~/.zshrc 파일 생성) Your Hardware Enablement Stack (HWE) is supported until April 2023. Last login: ################## from ####### This is the Z Shell configuration function for new users, zsh-newuser-install. You are seeing this message because you have no zsh startup files (the files .zshenv, .zprofil.. 2022. 9. 28.
[Linux] Ubuntu 20.04 유저 생성 - 유저생성 {USER_NAME} 이 부분에 원하는 유저 이름을 넣으면 된다. # {USER_NAME}으로 신규 유저생성. sudo adduser {USER_NAME} # {USER_NAME} 유저에게 권한 부여. sudo usermod -aG sudo {USER_NAME} - 유저삭제 sudo deluser {USER_NAME} 2022. 9. 28.
[Linux] AWS Ubuntu 서버 재가동시 대처방안 정리 이슈 AWS EC2 1개 서버가 제기능을 못하고 있는걸 확인. AWS EC2 재부팅 진행. 기존 nginx, tomcat 웹서버 재가동 진행. nginx 계속 서버 구동이 안됨. apache 서버 구동 port와 충돌로 생긴 이슈. (port crash) apache 서버 종료 후 nginx 서버 구동. 정상 동작확인. Nginx 구동 에러 화면 - nginx 상태 확인 명령어. sudo service nginx status - nginx 상태 확인 화면. - 아래 내용 복사. ( ip 부분은 삭제 ) ● nginx.service - A high performance web server and a reverse proxy server Loaded: loaded (/lib/systemd/system/ngi.. 2022. 7. 25.