반응형
반응형
[root@mysop httpd]# systemctl status httpd.service ● httpd.service - The Apache HTTP Server Loaded: loaded (/usr/lib/systemd/system/httpd.service; enabled; vendor preset: disabled) Active: failed (Result: exit-code) since Tue 2021-06-22 00:07:37 UTC; 13s ago Docs: man:httpd.service(8) Process: 9081 ExecStart=/usr/sbin/httpd $OPTIONS -DFOREGROUND (code=exited, status=1/FAILURE) Main PID: 9081 (co..
출처 : https://zetawiki.com/wiki/%EB%A6%AC%EB%88%85%EC%8A%A4_fio 리눅스 fio - 제타위키 다음 문자열 포함... zetawiki.com 읽기 성능 (16k랜덤) # fio --directory=폴더명 --name fio_test_file --direct=1 --rw=randread --bs=16k --size=100M --numjobs=16 --time_based --runtime=180 --group_reporting --norandommap 쓰기성능 (16k랜덤) # fio --directory=temp --name fio_test_file --direct=1 --rw=randwrite --bs=16k --size=100M --numjobs=16 --..
putty로 ssh 터널링 문서는 많은데 윈도우 putty기준이다보니 putty 없이 터널링 하는 방법은 찾기 힘들었다. 방법은 간단하다. # ssh 사용자명@서버명 -p 22 -L 로컬포트:연결할내부아이피:연결할서버포트 -L 로컬포트:연결내부아이피:연결할포트 예시) # ssh ec2-user@3.36.xx.xx7 -p 22 -L 70215:172.31.0.100:22 -L 2045:172.31.0.105:22 스크립트 만들어 써도 된다. 다만 개 불편.. 필요할때마다 호스트명을 일일이 넣어야 하는건 보안상 좋은건지 아니면 불편하게 만든건지.. VPN연결이 더 편하다.
1. 영구적 변경 # hostnamectl set-hostname 호스트이름 2. 로그인시 잠시 변경 # hostname 호스트명 간단함
간단한 삭제 팁 이름이 깨져서 삭제할수 없는 파일은 inode 번호로 삭제 가능하다 먼저 inode 번호 확인 # ls -i 번호확인후 아래와 같이 목록 확인 # find -inum 아이노드번호 삭제처리 # find -inum 아이노드번호 -exec rm {} \; 끝~