[Mac] Can't read dir of '/usr/local/etc/my.cnf.d' (Errcode: 2 "No such file or directory")
오류 내용을 보면 환경설정 파일이 사라졌다는 의미이므로, 이 파일들을 생성 및 작성하면 됩니다.my.cnf 파일 생성 /usr/local/etc/ 경로에 my.cnf라는 파일을 생성한 뒤, 다음과 같이 작성합니다.# # This group is read both both by the client and the server # use it for options that affect everything # [client-server] # # include all files from the config directory # !includedir /usr/local/etc/my.cnf.dBash my.cnf.d 폴더 생성 후 mariadb.cnf 파일 생성 및 작성 /usr/local/etc/ 경로에 my.cn..
Mac
2019. 11. 9. 14:11
[Mac] brew로 mariadb 설치 후 서버 작동 키워드
mysql.server startmysql.server stop
Mac
2019. 11. 9. 14:10
[Mac] ERROR 1698 (28000): Access denied for user 'root'@'localhost'
mac에서 brew로 mariadb를 설치후 mysql -uroot로 접근할때 에러가 발생하면 sudo mysql -uroot로 접근하면 된다 들어간후 password를 원하느걸로 바꿀려면 use mysql;set password for 'root'@'localhost' = PASSWORD('원하는 비밀번호'); 위 쿼리들을 실행 후 mysql -u root -p password 입력하면 접속가능
Mac
2019. 11. 9. 14:09