목록분류 전체보기 (39)
멍청해서 기록한다
모르면 고생하지만 알면 알수록 참 편하다.. 참조: https://mmonit.com/monit/ Easy, proactive monitoring of processes, programs, files, directories, filesystems and hosts | Monit Open Source Monit is free, open source software. You can redistribute Monit and/or modify Monit under the terms of the GNU Affero General Public License (AGPL). The license only applies if you plan to distribute Monit to third parties. The re..
하하. nvidia 드라이버 설치하고 nvidia-smi 치면 대충 gpu 달린놈들 나옴 서비스가 gpu사용하도록 물리려면 export CUDA_VISIBLE_DEVICE='GPU번호' 사용 후 서비스 실행 정리는 나중에 시간나면 ㅠ.............. 나겠지?
1. awk 명령어. 대부분의 리눅스 명령들이, 그 명령의 이름만으로 대략적인 기능이 예상되는 것과 다르게, awk 명령은 이름에 그 기능을 의미하는 단어나 약어가 포함되어 있지 않습니다. awk는 최초에 awk 기능을 디자인한 사람들의 이니셜을 조합하여 만든 이름이기 때문입니다. Aho + Weinberger + Kernighan. (A:Alfred V. Aho, W:Peter J. Weinberger, K:Brian W. Kernighan) awk는 파일로부터 레코드(record)를 선택하고, 선택된 레코드에 포함된 값을 조작하거나 데이터화하는 것을 목적으로 사용하는 프로그램입니다. 즉, awk 명령의 입력으로 지정된 파일로부터 데이터를 분류한 다음, 분류된 텍스트 데이터를 바탕으로 패턴 매칭 여부를..
소프트웨어를 잘하려면 하드웨어를 알아야한다. https://parksb.github.io/article/29.html 💵 캐시가 동작하는 아주 구체적인 원리 하드웨어로 구현한 해시 테이블 parksb.github.io
/etc/systemd/system/testtomcat.service 파일에 위와 같이 작성하였습니다. systemd의 서비스등록은 위와 같은 서비스파일을 만들어 안에 작성하며 Unit, Service, Install 세션으로 나눠집니다. 각 세션 마다 사용하는 옵션이 있으며 위의 사진에서 사용되는 옵션에 대해 알아보겠습니다. [Unit] 옵션 Description= 작성하는 유닛의 설명 및 용도나 내용을 작성합니다 Before= , After= 유닛 시작 시 전/후 유닛이 시작됩니다. Requires= 옵션을 같이 사용할 경우 이 옵션과 별개로 동작 합니다. Requires= 이 옵션에 설정된 유닛(상위 유닛)이 정상 작동중일때 지금 작성중인 유닛이 작동됩니다. [Service] Type= 유닛의 타입..
파일 위치 vi /etc/vsftpd/vsftpd.conf 리눅스 vsftpd.conf 설정 anonymous_enable = yes //익명 ftp 서비스 활성화 여부 설정 local_enable = yes //로컬 계정 사용자 접속 여부 설정 write_enable = yes //쓰기 가능 여부 설정 local_umask = 022 //파일 퍼미션 정의(파일의 퍼미션은 644) dirmessage_enable=yes //디렉토리 이동시 각 디렉토리 메시지 보여지게 할지 여부 anon_upload_enable = yes//익명 FTP 접속자의 파일 업로드 권한 설정 anon_mkdir_write_enable = yes //익명FTP 접속자의 디렉토리 생성 권한 설정 dirmessage_enagle = ..
• Use saved queries to share queries between different users, or to eliminate the need to rewrite a query that is run frequently. • Use saved queries to reduce the risk of SQL injection attacks Command Usage SELECT DROP_SAVED_QUERY Drop a saved query SELECT EXECUTE_SAVED_QUERY Executes a saved query SELECT LIST_SAVED_QUERIES Returns a list of saved queries SELECT RECOMPILE_SAVED_QUERY Recompiles..