설정12 [Docker] 사용 권한 설정 root 계정이 아닌 계정으로 docker 실행 시 permission 문제로 인해 ERROR Couldn't connect to Docker daemon 에러를 발생시키며 제대로 실행이 되지 않는다. 이 경우 sudo를 붙여 실행을 해야하는데 매번 sudo를 붙이는 것보다는 현재 사용 계정에 docker에 한해 root 권한을 주는 것이 현명하다. - 해결 방법 1. sudo usermod -aG docker ${USER} 2. sudo service docker restart 3. 로그아웃 후 재로그인 2021. 3. 18. MySQL 동일명 데이터 중복 제거 한 파일만 남기고 중복 제거 delete from where id not in ( select id from ( select id from group by image) as id); 중복 데이터 전체 제거 delete from WHERE image IN ( SELECT image FROM (SELECT image FROM GROUP BY image HAVING count(*) > 1) temp_table) ;select count(image) from ;select count(distinct image) from ; 2021. 1. 8. MySQL 백업 및 복원 명령어 데이터베이스 전체 백업mysqldump -u root -p test > test.sqlmysql -u root -p test_2 test.sqlmysql -u root -p testDB < test.sql 2021. 1. 8. 리눅스 디렉토리 전체 압축 명령어 zip -r test.zip ./* 2021. 1. 8. crontab 실행 명령어 sudo vi /etc/crontab or crontab -e 2021. 1. 8. intellij 자바 버전 설정 intellij 자바 버전 설정 File -> Project Structure -> Project -> Project SDK 2020. 11. 8. 이전 1 2 다음