개발지식
-
Google Custom Search API 사용하기개발지식 2022. 1. 7. 13:20
https://developers.google.com/custom-search/v1/using_rest Using REST to Invoke the API | Programmable Search Engine | Google Developers Send feedback Using REST to Invoke the API This document describes how to use the Custom Search JSON API. Making a request REST, or Representational State Transfer, in the Custom Search JSON API is somewhat different from traditional REST. Instead of provi devel..
-
GitHub 사용하기개발지식 2022. 1. 7. 09:41
Repository 생성 GitHub에 로그인을 한다. Create Repository를 클릭해서 Repository name을 적고 Public을 선택한다. Public은 무료 Private은 유료 맨 밑 체크박스 3개는 무시해도됨. Repository를 만들고 나서 url을 복사한다. GItHub 초기 설정 후 로컬저장소 만들기 config --global user.name "GitHub 이름" git config --global user.email "GitHub 이메일" 로컬저장소로 지정하고 싶은 파일을 만든다. cd 폴더명을 터미널에 입력해서 폴더에 들어간다. 드래그를 이용해서 cd 까지 적고 넣을 수 있다. git init 명령어를 입력한다. 해당 폴더를 git 로컬 저장소로 설정하는 명령어 그..
-
EC2에 MySQL 서버 올리기개발지식 2022. 1. 5. 14:48
ssh - i / pem 키파일 / ubuntu@AWS ip 주소 sudo apt-get update sudo apt-get install mysql-server mysql --version mysql -u root -p 본인이 설정한 비밀번호를 입력하고 접속한다. mysql> 가 보이면 접속 성공. 외부 접속 허용을 위해서 mysql.cnf 파일 일부를 수정해준다. cd /etc/mysql/mysql.conf.d 명령어를 입력해서 mysqld.cnf 파일이 있는 디렉토리로 이동한다. vi mysqld.cnf vi 에디터로 mysqld.cnf 파일을 실행 한다. bind-address 를 0.0.0.0 으로 변경울 해준다. i 를 눌러서 수정을 한다. ctrl + c 를 이용해서 수정을 종료한다. :wq..
-
Homebrew를 이용한 MySQL 설치 방법개발지식 2021. 12. 27. 11:16
MySQL 설치 방법 "commend + spacebar"를 이용해서 터미널을 실행시킨다. 터미널 창에서 "brew update" 명령어를 입력해서 homebrew를 최신 버전으로 업데이트를 해준다. 터미널 창에서 "brew search mysql" 명령어를 입력해서 설치할 MySQL를 확인한다. 터미널 창에서 "brew install mysql" 명령어를 입력한다. 최신 버전은 그대로 입력한다. 원하는 버전 설치 시 "brew install mysql@5.5"이런 식으로 입력한다. 터미널 창에서 "brew list" 명령어를 입력해서 설치 목록을 조회해서 MySQL이 설치됐는지 확인한다. MySQL 설정 방법 터미널 창에서 "mysql.server start" 명령어를 입력해서 MySQL 서버를 실행시..