본문 바로가기

Cloud/Azure6

[2021.07.19] 인턴 +140 How to connect Mysql on Azure? (+Workbench connect, ADD data DB) [2021.07.19] 인턴 +140 How to connect Mysql on Azure? (+Workbench connect, ADD data DB) 해당 게시글은 클라우드(Azure)에서 가상머신을 만든 후, 그 가상머신에 MySQL을 설치 하여, 로컬 PC에 설치한 Workbench로 접속하는 방법에 대해 알려주기 위해서 작성하였다. # AWS DB 연동(AWS) def get_db(): db = pymysql.connect( host='ec2-13-125-144-25.ap-northeast-2.compute.amazonaws.com', port=3306, user='admin', passwd='1/zw;GytAwx*', db='KABL', charset='utf8' ) return db # AW.. 2021. 7. 19.
[2021.06.16] 인턴 +107 How to solve port 22: Connection timed out in Azure [2021.06.16] 인턴 +107 How to solve port 22: Connection timed out in Azure 예전에 만든 Azure VM에 접속하려고 한다. 하지만, 접속하려고 하니, 아래와 같은 에러가 발생하였다. $ ssh -i elastic.pem injekim97@20.194.60.15 ssh: connect to host 20.194.60.15 port 22: Connection timed out ------------------------------------------------------------------------------------------------------------------------------- 이제, 해당 에러가 발생했을 때, 해결하는 방법을 알.. 2021. 6. 16.
[2021.04.21] 인턴 +51 Data Lake Storage Gen2 생성 방법 [2021.04.21] 인턴 +51 Data Lake Storage Gen2 생성 방법 portal.azure.com/ Microsoft Azure portal.azure.com -> 처음에 Azure에서 Data Lake Storage Gen2를 만들려고 하였으나, 도저히 보이지 않아 Data Lake Storage Gen1로 만들었습니다. -> 하지만, Q&A를 통해 만드는 법을 알게 되어, Data Lake Storage Gen2를 생성해보겠습니다. * Data Lake Storage Gen2 생성 방법 순서 1. Storage accounts -> add 클릭 2. advanced 탭에 -> Data Lake Storage Gen2 (Hierarchical namespace) 체크 -> searc.. 2021. 4. 21.
[2021.04.20] 인턴 +50 Linux (VM - Azure) 데이터 디스크 마운트 방법 [2021.04.20] 인턴 +50 Linux (VM - Azure) 데이터 디스크 마운트 방법 portal.azure.com/#blade/HubsExtension/BrowseResource/resourceType/Microsoft.Compute%2FVirtualMachines Microsoft Azure portal.azure.com * 마운트(Mount) 란? -> 하드디스크의 파티션, CD/DVD, USB 메모리 등을 사용하려면 특정한 위치에 연결을 해 줘야 하는데. 특정한 위치(디렉터리)에 연결시켜 주는 과정을 마운트라 함. -> 실제 공간인 디스크를 사용하기 위해서 현재 사용하고 있는 운영체제에 연결하는 것 기차는 서울역에서 정차한다. (=디스크를 디렉토리에 마운팅) 홍길동은 서울역에서 기차를 .. 2021. 4. 20.
[2021.04.16~19] 인턴 +46 Data Lake Storage Gen1 생성 방법 (Azure - PowerShell 2GB file upload & download method) [2021.04.16~19] 인턴 +46 Data Lake Storage Gen1 생성 방법 (Azure - PowerShell 2GB file upload & download method) digitalbourgeois.tistory.com/72 -> 해당 게시글의 내용을 정리함. * 데이터 레이크(data lake)란? -> 모든 정형 및 비정형 데이터를 모든 규모로 저장할 수 있는 중앙 집중식 저장소 -> 빅데이터를 효율적으로 분석하고 사용하고자 다양한 영역의 Raw 데이터(가공되지 않은 데이터)를 한 곳에 모아서 관리하고자 하는 것을 바로 Data Lake라 함. 즉, 가공되지 않은 다양한 종류의 데이터를 한 곳에 모아둔 저장소의 집합 * Data Lake 주요 기술 이점 1. 데이터의 종류 무한.. 2021. 4. 16.
[2021.04.15] 인턴 +45 Ubuntu에서 MySQL 설치 방법 [2021.04.15] 인턴 +45 Ubuntu에서 MySQL 설치 방법 나의 실습환경은 Azure에서 제공해주는 가상머신(Ubuntu)를 만든 상태이다. dev.mysql.com/doc/mysql-apt-repo-quick-guide/en/ MySQL :: A Quick Guide to Using the MySQL APT Repository Steps for a Fresh Installation of MySQL Adding the MySQL APT Repository First, add the MySQL APT repository to your system's software repository list. Follow these steps: Go to the download page for the My.. 2021. 4. 15.