전체 글 65

mysql 설치시 0000-00-00 에러 + 함수생성.

sudo apt install mysql-serversudo ufw allow mysqlsudo systemctl enable mysqlsudo systemctl start mysqlsudo mysql -u rootCREATE DATABASE DB명 default CHARACTER SET UTF8;CREATE USER '유저명'@'localhost' IDENTIFIED BY '패스워드';GRANT ALL PRIVILEGES ON *.* TO '유저명’@‘%’ WITH GRANT OPTION;FLUSH PRIVILEGES;  [HY000][1418] This function has none of DETERMINISTIC, NO SQL, or READS SQL DATA in its declaration an..

CSP/akamai-linodes 2024.08.16

cent 설치 후 https, mysql 설치

cent 7을 선택 후 설치.해당 리눅스에 접속 후 http, mysql 서버 설치.  에러 1.[root@localhost ~]# sudo yum install -y httpd24 php72 mysql57-server php72-mysqlndhttp://mirrors.linode.com/centos/7/os/x86_64/repodata/repomd.xml: [Errno 14] HTTP Error 404 - Not FoundTrying other mirror.To address this issue please refer to the below wiki article  에러 2.sudo yum install -y httpd24 php72 mysql57-server php72-mysqlndNo package..

CSP/akamai-linodes 2024.08.11

linodes 에서 리눅스 생성 및 ssh 접속.

계정 생성시 $500 크래딧을 받아서 사용해 보기로 함. 1. VPC 생성. 오사카에 생성. (region이 많지 않음)  2. firewall 만들고 정책 추가.  3. ssh-keygen 명령어로 공개키 생성. 4. 서버 선택타 업체처럼 region에 한국과 free tier가 안보여서 vpc와 같은 osaka에, 제일 싼 plan 선택. ...  외부에서 접속을 해야 하므로 Assign a public IPv4 address for this Linode 를 체크했다. (체크안하면 안주나?)  Launch LISH Console 선택시 아래와 console. 접속 환경을 제공하지만, public 으로  외부 접속을 위해 add an ip address 를 선택해서 IP를 추가함.  추가한 다음 ssh..

CSP/akamai-linodes 2024.08.09

AWS do-release-upgrade

aws ubuntu 20.04 버전이 필요한데 quick start엔 없다.마켓에서 사긴전에 생각해보니 우리가 18버전이 있었음.18버전을 ami 로 만들고, 가져다가 업그레이드를 실행하려고 함.New release '20.04.6 LTS' available.Run 'do-release-upgrade' to upgrade to it. do-release-upgrade 를 치니깐 아래 메시지가 나옴 ubuntu@ip-172-31-9-206:~$ do-release-upgradeChecking for a new Ubuntu releasePlease install all available updates for your release before upgrading. 뭐지 검색....sudo apt updates..

카테고리 없음 2024.06.12

온프레미스 DB 를 AWS로 마이그레이션

관련자료https://docs.aws.amazon.com/ko_kr/prescriptive-guidance/latest/patterns/migrate-an-on-premises-postgresql-database-to-aurora-postgresql.html 목적 : 온프레미스 PostgreSQL 데이터베이스 -> Aurora PostgreSQL-Compatibleselect version();PostgreSQL 12.15 (Ubuntu 12.15-1.pgdg20.04+1) on x86_64-pc-linux-gnu, compiled by gcc (Ubuntu 9.4.0-1ubuntu1~20.04.1) 9.4.0, 64-bitshow server_version;12.15 (Ubuntu 12.15-1.pgd..

Database 2024.05.21

구글 서버에 php, mysql 설치.

# sudo yum install -y httpd24 php72 mysql57-server php72-mysqlnd  # ln -sf /usr/share/zoneinfo/Asia/Seoul /etc/localtime# dateSat May 11 00:32:23 KST 2024#  # yum -y install mariadb-server# systemctl stop mariadb# systemctl start mariadb# mysql -u root -pEnter password: Welcome to the MariaDB monitor.  Commands end with ; or \g.Your MariaDB connection id is 2Server version: 5.5.68-MariaDB MariaD..

System 2024.05.11

구글 클라우드.

https://console.cloud.google.com/ 카드 정보 입력해야 됩니다.아래 일반 계정 활성화를 클릭하는 자동 결제가 된다고 합니다.    메뉴 -> Compute Engine -> VM 인스턴스    사용 클릭 알림 (상단 종모양)이 진행중으로 보이고, 완료되면 .  Compute Engine -> VM인스턴스 -> 인스턴스 만들기  이름은 내가 원하는 이름으로 변경. 부팅디스크에서 변경을 클릭하고 원하는 OS 선택, 부팅 디스크 유형을 표준 영구 디스크로 선택크기를 30G로 변경.   HTTP, HTTPS 선택 후 만들기 클릭.   원격접속키 생성 : ssh-keygen -t rsa -f ~/.ssh/gcpkey -C [아이디]@gmail.com -b 2048ssh-keygen -t ..

System 2024.05.10