Linux find 명령어 주요 사용법 find ---주어진 파일명과 동일한 파일을 찾고, 그 경로를 출력한다. # find / -name newbie -print 최상위 루트 디렉토리부터 검색하여 검색된 파일을 한 행에 하나씩 표준 출력 # find . -name newbie -print 현제의 작업 디렉토리에서 검색 # find / -size +1000 -print 최상위 루트에서 크기가 1000블록 이상인 파일 검색 # find . -size -1000 -print 현 디렉토리에서 크기가 1000블록 이하인 파일 검색 # find . -mtime +10 -print 10일 이전에 수정된 파일 검색 # find . -mtime -10 exec rm {} \: 10일 이내에 수정한 파일을 검색하여 모두 지운다 # find / -cmin 5 .. 더보기 [MySql] is not allowed to connect to this MySQL server localhost로는 접속이 가능하고 IP로는 접속이 불가능한 이유는 접속가능한 IP로 등록이 되어 있지 않기 때문입니다. select * from mysql.user 로 보시면 localhost는 보이나 IP는 보이지 않을것입니다. '' -> 싱글쿼테이션도 넣어주세요. mysql> grant all privileges on db명.* to 사용자계정@'IP주소' identified by '비밀번호' with grant option; mysql> grant reload,process on *.* to admin@localhost; mysql> FLUSH PRIVILEGES; 위의 명령어로 접속가능한 IP로 등록해 주면됩니다. 더보기 이전 1 ··· 6 7 8 9 10 11 12 ··· 77 다음