일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- red hearse
- 정은경 본부장님
- parasite
- 코로나
- 봉준호감독통역
- 미중
- 치앙마이
- 우한 코로나
- 확진자수
- 코로나바이러스
- cnn
- 코로나19
- 우한코로나바이러스
- 신종코로나
- 최성재
- 우한
- Bolton
- 봉준호감독통역사
- wuhan
- 조현병
- 필리핀사망
- 어서와한국은처음이지
- everybody wants you
- sharonchoi
- 창궐
- 우한코로나
- 중국외교부
- 전염병
- 웨일즈
- 진짜영웅
- Today
- Total
오지's blog
처음 연결세팅시 Driver properties에 들어가 allowPublicKeyRetrieval 을 false에서 TRUE로 변경후 접속가능 OS Version: Ubuntu 20.04.3 LTS DB Version: mysql Ver 8.0.26-0ubuntu0.20.04.3 for Linux on x86_64 ((Ubuntu))
OS version $ lsb_release -a No LSB modules are available. Distributor ID: Ubuntu Description: Ubuntu 20.04.3 LTS Release: 20.04 Codename: focal MYSQL version $ mysql --version mysql Ver 8.0.26-0ubuntu0.20.04.3 for Linux on x86_64 ((Ubuntu)) 설치 전 os패키지 업데이트 $ sudo apt-get update $ sudo apt-get upgrade MYSQL서버 설치 $ sudo apt-get install mysql-server 처음설치후 설정 $ sudo mysql_secure_installation $ sudo ..
모든 일이 마찬가지이겠지만 처음에만 해본적이 없어 헷갈리고 해멜수 있으나 한번 해보면 아무것도 아니다. 또한 아래 python document에 잘나와 있기 때문에 그대로 따로오기만 하면 된다. 이글도 파이썬 다큐멘트를 참고하여 설명을 추가하였다. 참고싸이트 https://packaging.python.org/tutorials/packaging-projects/ Packaging Python Projects — Python Packaging User Guide setup.cfg is the configuration file for setuptools. It tells setuptools about your package (such as the name and version) as well as which..
전체 코드 coninfo = get_info('secret.json') cnx = create_engine(f"mysql+pymysql://{coninfo['MYSQL_USER']}:{coninfo['MYSQL_PASSWORD']}@{coninfo['MYSQL_HOST']}:{coninfo['MYSQL_PORT']}/{coninfo['MYSQL_DBNAME']}") df = pd.read_csv('filename.csv', encoding='utf8') print(df.head(5)) df.to_sql(name=f"mayo", con=cnx, if_exists="replace", index=False) 코드 설명 coninfo = get_info('secret.json') secret.json파일이 외부..
$ sudo apt-get update $ sudo apt-get upgrade $ sudo apt-get install postgresql postgresql-contrib $ sudo -i -u postgres $ psql postgres-# create database airflow; postgres-# create user admin with encrypted password 'admin'; postgres-# grant all privileges on database airflow to admin; postgres-# \q 원격접속 허용 설정 루트계정으로 변경 1. postgresql.conf 설정파일 내용 변경 $ sudo vi /etc/postgresql/12/main/postgresql.c..