일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- Android Jcenter
- 페이스아이디 마스크
- Basic Fragment
- Android Button 대문자
- Android Intent Bundle Data
- Android Intent Bundle
- Android Admob Test ID
- Android 광고
- Android 값전달
- Admob Banner
- 현재 버전
- 애플워치 완충
- Android Intent data
- Kotlin 형변환
- Android Fragment Sample
- 아이폰 알림 워치
- Android Jcenter Warning
- Android
- Android LiveData
- mac java
- Android Progressbar
- Android 프로젝트명 변경
- Android Bundle
- Android 화면 꺼짐 방지
- Chrome Dark
- 애플워치
- Chrome Dark Mode
- Basic Android
- Android 외부브라우저
- 혼자 만들었다!
- Today
- Total
목록Developer (40)
배고파
1. Ubuntu 에 설치한 Nginx Conf 파일 경로 : /etc/nginx/sites-available 수정 : vim default 재시작 : sudo service nginx restart 2. .jar 실행 $ nohup java -jar 이름.jar & 3. 열린 포트 확인 netstat -anp | grep "LISTEN "
https://lucaskim.tistory.com/11 [linux] 열린 port 및 pid 확인 netstat : 열린 포트 정보를 확인하는 명령어 netstat 옵션 -a(--all) : listen 되는 소켓정보와 listen 되지 않는 소켓 정보를 모두 출력 -c(--continuous) : 결과를 연속적으로 출력 -i(--interface=iface) : 모.. lucaskim.tistory.com
https://shlee0882.tistory.com/240 mysql 설치 와 기본 설정 (on Ubuntu) Ubuntu에 mysql을 설치해 보겠습니다. 언제나 그렇듯이 Ubuntu 버전부터 살펴보겠습니다. $ lsb_release -a No LSB modules are available. Distributor ID: Ubuntu Description: Ubuntu 18.04.2 LTS Release: 18... dejavuqa.tistory.com https://dejavuqa.tistory.com/317 mysql 설치 와 기본 설정 (on Ubuntu) Ubuntu에 mysql을 설치해 보겠습니다. 언제나 그렇듯이 Ubuntu 버전부터 살펴보겠습니다. $ lsb_release -a No LSB..
스터디- 서버 2019년 12월 05일 장비 - i-Mac 램 업그레이드. 2020년 01월 08일 00:17 프로그램 - 개발 툴 - intelliJ 1년 2020년 01월 08일 08:27
github : https://github.com/hungry7013/CustomButton.git hungry7013/CustomButton click status button color change. Contribute to hungry7013/CustomButton development by creating an account on GitHub. github.com
Eclipse 사용. build.gradle plugins { id 'org.springframework.boot' version '2.2.2.RELEASE' id 'io.spring.dependency-management' version '1.0.8.RELEASE' id 'java' id 'war' } group = 'com.study' version = '0.0.1-SNAPSHOT' sourceCompatibility = '1.8' configurations { compileOnly { extendsFrom annotationProcessor } } repositories { mavenCentral() } bootWar.enabled = false war.enabled = true dependenci..
Dockerfile 사용하여 이미지와 컨테이너를 만들고 실행해보자. Dockerfile 을 만들자. # Start with a base image containing Java runtime FROM java:8 # Add Author info LABEL maintainer="hungry7013@gmail.com" # Add a volume to /tmp VOLUME /tmp # The application's jar file ARG JAR_FILE=build/libs/HelloSpringboot8092-0.0.1-SNAPSHOT.jar # Add the application's jar to the container ADD ${JAR_FILE} helloSpring8092.jar # Run the jar ..
글쓴이가 자주 사용하는 Docker 명령어 정리 했습니다. 실행되고 있는 컨테이너 보기 1 : docker ps -a 실행되고 있는 컨테이너 보기 2 : docker ps 두개의 차이는 전체를 보여주느냐 vs 정말 구동중인것만 볼것이냐. 이미지들 보기 : docker images 이미지 삭제 : docker rmi [ NAMES ] 컨테이너 시작 : docker start [ NAMES ] 컨테이너 멈추기 : docker stop [ NAMES ] 컨테이너 삭제 : docker rm [ NAMES ] 삭제 명령어 (이미지 / 컨테이너) 캡쳐를 하지 않았습니다. 참고 블로그 : https://brunch.co.kr/@hopeless/10 [Docker] 도커 이미지와 컨테이너 삭제 방법 도커 이미지는 do..