반응형
Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- 시스템설계면접예시
- file not found Error
- cypressBDD
- 가상면접3장
- react
- 시스템설계면접팁
- 리액트구글애널리틱스
- s3이미지다운로드됨
- formik react-query submitting not working
- 리팩터링2판테스트
- 시스템설계면접
- git commit merge
- awss3
- 전략패턴
- formik submitting not working
- git commit 협업
- 디자인패턴
- 가상면접으로대규모시스템
- 시스템설계
- Git commit 합치기
- git squash
- 헤드퍼스트전략패턴
- 가상면접2장
- FirebaseAnalytics
- 리팩토링2판4장
- react-ga
- 시스템설계방법
- 테스트코드책
- cypress React
- gitsquash
Archives
- Today
- Total
mingg IT
[EC2] nohup: ignoring input and appending output to 'nohup.out' nohup: failed to run command 'java': No such file or directory 본문
BackEnd
[EC2] nohup: ignoring input and appending output to 'nohup.out' nohup: failed to run command 'java': No such file or directory
mingg123 2023. 9. 3. 21:18EC2 배포 ci/cd Actions를 구현하고 있던 와중에 아래와 같은 명령어가 발생했다.
nohup: failed to run command 'java': No such file or directory
원인은 사실 너무 간단했다.
우분투 환경에 java가 설치되어 있지 않았던 것.
해결 방법
$ sudo apt-get update
$ sudo apt-get install openjdk-17-jdk
난 17버전을 설치했다.
java -version 으로 확인이 가능하다.
'BackEnd' 카테고리의 다른 글
[Redis] "org.redisson.client.RedisException: MOVED redirection loop detected." (0) | 2023.09.26 |
---|---|
[AWS] org.postgresql.util.psqlexception: the connection attempt failed. (0) | 2023.09.23 |
[Spring Security Oauth2.0 Client] Apple 로그인 (10) | 2023.08.21 |
[MySql] 쿼리 속도 개선 (Virtual Column 및 인덱스 적용) Or 절 여러개 예시 (0) | 2023.07.28 |
[DBeaver] 내가 겪은 DB dump, restore시 발생한 에러 및 해결법(MySql) (1) | 2023.07.18 |
Comments