[aws ubuntu18.04LTS] Let's Encrypt 사용 하여 https 적용하기
·
내맘대로/웹
사용환경 aws , ubuntu18.04LTS mysql5.7 php7.3 apache2 root 계정으로 접속 //설치 1)apt-get update 2)apt-get install sofrware-properities-common 3)add-apt-repository universe 4) add-apt-repository ppa:certbot/certbot 5) app-get install certbot 6) apt-get install python3-certobt-apache > 2 //인증서 자동 갱신 //인증서는 90일 후면 만료 됨, 주기적으로 입력하여 만료전에 갱신하자 10) certbot renew --dry-run 인증서가 설치된 파일 경로 /etc/letsencrypt/live/신청한 ..
구글 검색 등록하기
·
내맘대로/웹
1.사이트맵에 들어가서 도메인 주소 입력 2.create 생성 3.xml 파일 다운로드 4.아파치 기본 루트경로에 sitemap.xml 파일 복사 후 넣어주기 5.구글 서치 콘솔 - sitemap - 새 사이트맵 추가 - sitemap.xml 제출 6.인증 완료 끝! 사이트맵 만든 사이트 http://www.web-site-map.com/ XML Sitemap Generator - creates Free Google site-maps online Our news: (see more on !) Newest long TLDs are fully supported now This Web-Site-Map.com service is named by Web Hosting Search one of the Best We..
[aws ubuntu18.04LTS]aws route 53을 이용한 도메인 연결, 무료 도메인 얻기
·
내맘대로/서버
참고 블로그 http://blog.naver.com/PostView.nhn?blogId=joongi1978&logNo=220921417928 내도메인.한국으로 나만의 도메인을 무료로 만들고 네이버 블로그에 연결시켜 보자! 시작내도메인.한국으로 나만의 도메인을 무료로 만들자!안녕하세요! 상자군입니다! 즐거운 설 연휴는 잘 지... blog.naver.com https://m.blog.naver.com/PostView.nhn?blogId=pjt3591oo&logNo=221158301798&proxyReferer=https%3A%2F%2Fwww.google.com%2F [aws] route 53을 활용한 도메인 연결 안녕하세요 멍개입니다. 오늘은 외부에서 구매한 도메인으로 aws에 있는 서버로 연결하는 방법에..
aws mysql Can't start MySQL server (database corruption)
·
내맘대로/오류모음
aws apm 자동 설치 후 - etc/mysql/mysql.conf 경로에서 nano mysqld.cnf 파일을 편집해주는데 데이터베이스가 손상되었다고 재실행이 안됨 내가 추가로 작성했던 코드들을 삭제해주고 재시작하니 잘됨 주석 부분도 #추가 이렇게 한글을 적었는데 오류 난 듯함 db에 데이터베이스 저장 할 때 utf8오류 때문에 //이것은 리눅스에 mysql 설치 1) my.cnf 파일 설정 변경 $ whereis my.cnf $ sudo vi /usr/local/mysql/my.cnf [mysqld] ... default-character-set=utf8 default-collation=utf8_general_ci ... 2) database, table character set 설정 mysql> ..
failed to connect to mysql: php_network_getaddresses: getaddrinfo failed: Name or service not known
·
내맘대로/오류모음
원인 aws에서 apache2, mysql5.7.28 , php7.3 설치 후 mysql php 연동이 제대로 되었는지 확인 하려고 php mysqli 연동 코드를 쳤는데 저 오류가 뜸 다른 연동예제로 바꿔서 접속하니 잘됨
이미지 Uri -> String
·
내맘대로/안드로이드
https://codeday.me/ko/qa/20190315/44953.html android – URI를 의도에 전달하는 방법 - 코드 로그 그 URI를 사용하기 위해 URI-Object를 Intent에 전달하려고합니다.다른 활동에서 … URI를 어떻게 전달합니까? private Uri imageUri; .... Intent intent = new Intent(this, GoogleActivity.class); intent.putExtra("imageUri", imageUri); startActivity(intent); this.finish(); 다른 활동에서이 URI를 어떻게 사용합니까? i codeday.me https://stackoverflow.com/questions/8017374/how-to..