반응형 반응형 전체 글130 반응형 ec2 port 8080 was already in use $ netstat -tnlp | grep "8080" $ kill -9 "process ID" //ec2 $ netstat -tnlp | grep "8080"$ kill -9 "process ID" //윈도우 netstat -ano | findstr 8080 taskkill /f /pid 8080 2022. 4. 17. VSCODE 파일명으로 파일찾기 컨트롤 + P 컨트롤 +쉬프트 + R 2022. 4. 13. Android ExoPlayer gradle에 두줄 추가 public class MyVideoView { private static final String TAG = "MyVideoView"; private MainActivity mActivity; ViewGroup videoParentView; //videoParentView FrameLayout videoFrameView; //videoFrameView PlayerView playerView; //PlayerView SimpleExoPlayer player; //SimpleExoPlayer : 실제 비디오를 플레이하는 객체의 참조 변수 public MyVideoView (MainActivity activity) { mActivity = activity; videoParentView.. 2022. 4. 8. git nothing to commit, working tree clean git push 오류 - 오류메시지 1 : Updates were rejected because the remote contains work that you do (깃에서 프로젝트 만들 떄 README.md 파 일생성해서 나는 오류 ) 2 : git nothing to commit, working tree clean - 해결방법 - git pull origin master 3 : fatal: refusing to merge unrelated histories ( 커밋 히스토리 연관성이없어서 merge 거절) - 해결방법 - git pull origin master --allow-unrelated-histories - 마지막으로 해주면 올라간다 git status git add . git push -u o.. 2022. 4. 7. 이전 1 ··· 13 14 15 16 17 18 19 ··· 33 다음 반응형