리눅스상에서 웹 호출 문제를 디버깅 하고 싶을 때 mysql 서버 로그를 봐도 부족하고 그럴 때는 패킷을 캡쳐해서 분석할 수 있다.
If you want to debug web call problems on Linux, you may not be able to view the mysql server logs, and you can capture and analyze the packets in such cases.
tpcdump는 기본으로 설치가 안되어 있으니 설치를 해야 한다.
tcpdump can not be installed by default.
그리고 루트 계정으로 실행해야 한다.
and, should run it as root.
tcpdump -i eth0 -s 0 -l -w - dst port 3306 | strings | perl -e '
while(<>) { chomp; next if /^[^ ]+[ ]*$/;
if(/^(SELECT|UPDATE|DELETE|INSERT|SET|COMMIT|ROLLBACK|CREATE|DROP|ALTER|CALL)/i)
{
if (defined $q) { print "$q\n"; }
$q=$_;
} else {
$_ =~ s/^[ \t]+//; $q.=" $_";
}
}'
AWS Lightsail에 갑자기 SSH로 연결이 되지 않을 때. (0) | 2019.03.09 |
---|---|
SFTP Connection timeout 문제 (0) | 2018.02.21 |
리눅스에서 HTTP 패킷 캡쳐를 이용한 디버깅 (Debugging with HTTP packet capture on Linux) (0) | 2016.11.16 |
CentOS, Redhat Linux에 EPEL, IUS, Remi 저장소 설치하기. (Install EPEL, IUS, and Remi repositories on CentOS and Red Hat) (0) | 2016.11.09 |
안드로이드 4.3 업데이트 방법 (0) | 2013.07.25 |