분류 전체보기47 RDS aws Access denied for user 'admin'@'%' (using password: YES) 에러 권한에러 계속 나서 grant도 못해줌 ! RDS 서비스메뉴 - parameters Groups 에서 loh_bin_trust_function_creators 를 0 -> 1 값으로 변경해줬다 그리고 default값은 안바뀌기 때문에 다른 거 새로 파서 그 그룹으로 만들어서 기존에 있는 디비 파라미터 그룹을 새로 만든 것으로 바꿔줬다 그러니 넘나 잘됨 2019. 7. 18. TDD Validation 적용 UserControllerAPI package com.cafe24.mysite.controller.api; import java.util.List; import javax.validation.Valid; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.http.HttpStatus; import org.springframework.http.ResponseEntity; import org.springframework.stereotype.Controller; import org.springframework.validation.BindingResult; import org.springframework.. 2019. 7. 15. The superclass "javax.servlet.http.HttpServlet" was not found on the Java Build Path JSP 파일 만들었는데 에러 뜸 JSP파일에 빨강색! 프로젝트 -> 프로퍼티 -> target runtimes 이클립스 타겟 런타임 체크해주면 됨! 2019. 7. 11. mariadb 리눅스에서 유저, 디비 만들기 mysql 접속하기 [root@localhost ~]# mysql -u root -p mysql UTF8 인코딩으로 데이터베이스 생성 MariaDB [mysql]> create database asd default character set UTF8; 유저생성 (192.168.1. 으로 시작하는 ip로 접근할 수 있는 유저와 비밀번호를 생성) create user 'asd'@'192.168.1.%' identified by 'asd'; 유저에게 권한 부여 grant all privileges on malldb.* to 'malldb'@'192.168.1.%'; flush privileges; (refresh를 위해 flush) 모든 유저 계정들 보기 select user, host from user; DB.. 2019. 7. 11. 이전 1 ··· 4 5 6 7 8 9 10 ··· 12 다음