본문 바로가기

728x90

리눅스

ethtool을 사용하여 랜 카드의 속도 및 전송 모드를 설정하는 방법 ethtool을 사용하여 랜 카드의 속도 및 전송 모드를 설정하는 방법 1. ethtool 설치 CentOS sudo yum install -y ethtool Ubuntu sudo apt-get install -y ethtool 2. LAN 카드(Ethernet) 정보 확인 Ethernet 카드 정보 확인 lspci -m | grep -i Ethernet $ lspci -m | grep -i Ethernet 02:00.0 "Ethernet controller" "Broadcom Corporation" "NetXtreme BCM5719 Gigabit Ethernet PCIe" -r01 "Hewlett-Packard Company" "Device 22be" 02:00.1 "Ethernet controller.. 더보기
[vnc] vnc-server 설정 vnc-server 설정 ~/.vnc 디렉토리 생성 # vncpasswd vnc 에서 사용할 사용자 패스워드를 생성, ~/.vnc에 passwd 파일이 생긴다. /etc/sysconfig/vncservers 파일 수정 VNCSERVERS="디스플레이 번호:사용자 계정" 더보기
[PHP] PHP Credits 페이지 통제 PHP Credits 페이지 통제 php.ini 파일에서 expose_php = off 로 설정 더보기
[리눅스] 아파치 웹 서버에서 디렉토리 리스팅을 막기 아파치 웹 서버에서 디렉토리 리스팅을 막기 1. 아파치 웹 서버에서 디렉토리 리스팅을 막으려면 Options 지시어에서 Indexes 옵션을 제거하면 됩니다. 2. Apache 설정 파일(httpd.conf)을 열어서 디렉토리 설정 부분을 찾습니다. 해당 디렉토리 설정에 대한 Options 지시어를 찾습니다. 일반적으로 아래와 같은 형태로 되어 있습니다. Options Indexes FollowSymLinks AllowOverride None Require all granted 3. Options 지시어에서 Indexes 옵션을 제거합니다. Options FollowSymLinks AllowOverride None Require all granted 4. 변경 사항을 저장하고 Apache를 재시작합니다... 더보기
[Apache] 아파치 버전정보 노출 막기 아파치 버전정보 노출 막기 # # ServerTokens # This directive configures what you return as the Server HTTP response # Header. The default is 'Full' which sends information about the OS-Type # and compiled in modules. # Set to one of: Full | OS | Minor | Minimal | Major | Prod # where Full conveys the most information, and Prod the least. # ServerTokens Prod => 주석 처리 #ServerTokens Prod # # Optionally add a l.. 더보기
[MySQL] mysql max_allowed_packet 설정 mysql max_allowed_packet 설정 WARNING: The user you typed does not seem to be root If you encounter any problem with files insertion, try setting the global max_allowed_packet MySQL value to at least 2MB in your server config file. [root@itms bin]# mysql -u root -p Enter password: Welcome to the MySQL monitor. Commands end with ; or \g. Your MySQL connection id is 3 Server version: 5.1.69 Source d.. 더보기
zip 명령어, unzip 명령어 zip 명령어, unzip 명령어 zip과 unzip은 유닉스(리눅스) 시스템에서 사용되는 명령어로, 파일들을 압축하거나 해제하는데 사용됩니다. zip 명령어의 기본 구문 zip [옵션] [압축 파일명] [파일 또는 디렉토리] unzip 명령어의 기본 구문 unzip [압축 파일명] 주요 옵션 -r: 디렉토리를 재귀적으로 압축 또는 해제 -d: 압축을 해제할 디렉토리 지정 -v: 상세 정보 출력 -q: 출력을 덜 자세하게 -l: 압축 파일의 내용 목록 출력 사용 예시 파일들을 archive.zip으로 압축 zip archive.zip file1.txt file2.txt dir/ archive.zip: 새로운 압축 파일의 이름 file1.txt, file2.txt: 압축할 파일들 dir/: 압축할 디렉토리.. 더보기
SSL 인증서의 개인키에 설정된 비밀번호를 제거하는 방법 SSL 인증서의 개인키에 설정된 비밀번호를 제거하는 방법 1. OpenSSL을 사용하여 SSL 인증서(crt)와 개인 키(key)를 생성하는 방법 openssl req -subj '/CN=sangchul.kr/O=Infrastructure Team/C=KR' -new -newkey rsa:2048 -sha256 -days 365 -nodes -x509 -keyout node1.key -out node1.crt $ openssl req -subj '/CN=sangchul.kr/O=Infrastructure Team/C=KR' -new -newkey rsa:2048 -sha256 -days 365 -nodes -x509 -keyout node1.key -out node1.crt ...+.............. 더보기

반응형