OS/Ubuntu
-
Ubuntu Server / jdk + Tomcat 설치OS/Ubuntu 2023. 11. 27. 00:01
다운 받은 파일을 모아놓을 디렉토리 생성 후 이동 mkdir /home/zhyun/download $ cd /home/zhyun/download 운영체제 파악 file /lib/systemd/systemd file = 지정된 파일의 종류를 확인하는 명령어 jdk 설치 ( 보고 배운 곳 :https://i5i5.tistory.com/266 ) sudo apt update $ sudo apt install openjdk-8-jdk 설치 확인 java -version java_home , path 설정 4-1. 자바 경로 확인 readlink -f $(which java) 4-2. /etc/profile 파일에 경로 등록 export JAVA_HOME=/usr/lib/jvm/java-8-openjdk-amd6..
-
crontab 로그 남기기OS/Ubuntu 2023. 11. 24. 07:09
참고 : https://ojava.tistory.com/154 [Linux] crontab 설정 및 로그 확인 crontab 설정 요청만 해봤지 이걸 내가 할 줄은 몰랐네 22222 까지만 쓰다가 케케묵은 작성중인 글로 남아있길래 완성시켜서 하나의 포스팅으로 작성하기 벌써 2021년이니까 재작년에 linux 설정을 위 ojava.tistory.com crontab을 통해 스케줄러 실행 시 기본적으로 시스템 로그에 함께 로그가 기록된다. 스케줄러 실행 로그만 확인하기 위한 설정을 해주면 조금 더 보기가 편하다. 1. 시스템 로그 설정 파일 실행 vi /etc/rsyslog.d/50-default.conf 2. cron 설정 주석 해제 10번째 줄 cron.*이 적혀있는 주석을 해제해 준 다음 rsyslog..
-
ubuntu 22.04 + nginx + certbot 사용으로 https 설정하기OS/Ubuntu 2023. 11. 24. 03:52
참고 https://retromakers.tistory.com/27 https://stackoverflow.com/questions/53223914/issue-using-certbot-with-nginx Certbot, Let's Encrypt로 SSL 인증서 발급받기(Ubuntu, NGINX) Let's Encrypt로 SSL 인증서를 발급받아 Https를 사용하는 방법을 알아보겠습니다. 우분투에 NGINX를 이용하여 홈페이지가 설정되어있다고 가정하겠습니다. 우선 certbot이 설치되어있느지 확인해 보면, retromakers.tistory.com Issue using certbot with nginx I'm actually working on a webapp, I use Reactjs for the..
-
ubuntu 22.04에 nginx 설치하기OS/Ubuntu 2023. 11. 24. 03:48
참고 : https://velog.io/@mero/ubuntu-22.04에-Nginx-설치하기 https://jminie.tistory.com/105 AWS Nginx 서브 도메인 및 Domain Redirection 적용 📌 ip란? 인터넷에 연결되어 있는 장치(컴퓨터, 스마트폰, 타블릿, 서버 등등)들은 각각의 장치를 식별할 수 있는 주소를 가지고 있는데 이를 ip라고 한다. 📌 도메인이란? ip는 사람이 이해하고 jminie.tistory.com ubuntu 22.04에 Nginx 설치하기 참고 링크 : https://www.digitalocean.com/community/tutorials/how-to-install-nginx-on-ubuntu-22-04Nginx는 세계에서 가장 유명한 웹서버 중 ..
-
ubuntu 22.04 - timezone 설정OS/Ubuntu 2023. 11. 24. 00:01
Linux 운영체제에서 시스템의 시간과 날짜를 확인 / 수정할 수 있는 명령줄 유틸리티인 timedatectl을 이용하여 ubuntu 서버의 시간을 변경한다. 참고 : https://jjeongil.tistory.com/1955 Linux : Ubuntu 20.04 : Timezone 설정, 변경 방법, 예제, 명령어 많은 시스템 관련 작업 및 프로세스에는 정확한 시간대를 사용하는 것이 필수적입니다. 예를 들어, 크론 대몬은 크론 작업을 실행하기 위해 시스템의 시간대를 사용하고 로그 파일의 타임스탬 jjeongil.tistory.com 1. 현재 설정되어있는 기준 시간 확인 timedatectl 2. 서울 시간 기준으로 변경 timedatectl set-timezone Asia/Seoul 3. 적용된 현..
-
ubuntu 22.04에 oh-my-bash 적용하기OS/Ubuntu 2023. 11. 23. 02:28
ubuntu 22.04.3 LTS 환경 oh my bash - github https://github.com/ohmybash/oh-my-bash GitHub - ohmybash/oh-my-bash: A delightful community-driven framework for managing your bash configuration, and an auto-update t A delightful community-driven framework for managing your bash configuration, and an auto-update tool so that makes it easy to keep up with the latest updates from the community. - GitHub ..