- 필수 기능
- 시작하기
- Glossary
- 표준 속성
- Guides
- Agent
- 통합
- 개방형텔레메트리
- 개발자
- API
- Datadog Mobile App
- CoScreen
- Cloudcraft
- 앱 내
- 서비스 관리
- 인프라스트럭처
- 애플리케이션 성능
- APM
- Continuous Profiler
- 스팬 시각화
- 데이터 스트림 모니터링
- 데이터 작업 모니터링
- 디지털 경험
- 소프트웨어 제공
- 보안
- AI Observability
- 로그 관리
- 관리
Datadog recommends setting the local_infile
database flag for a Cloud SQL MySQL instance to off.
The local_infile
flag controls the server-side LOCAL capability for LOAD DATA statements. Depending on the local_infile
setting, the server refuses or permits local data loading by clients that have LOCAL enabled on the client side.
To explicitly cause the server to refuse LOAD DATA LOCAL statements (regardless of how client programs and libraries are configured at build time or runtime), start mysqld with local_infile
disabled. local_infile
can also be set at runtime.
Due to security issues associated with the local_infile
flag, Datadog recommends disabling it. This recommendation is applicable to MySQL database instances.
Disabling local_infile
causes the server to refuse local data loading by clients that have LOCAL enabled on the client side.
local_infile
flag from the dropdown menu, and set its value to off.`gcloud sql instances list`.
local_infile
database flag for every Cloud SQL MySQL database instance using`gcloud sql instances patch INSTANCE_NAME --database-flags local_infile=off`
=
.By default, local_infile
is on.
This patch modifies database flag values, which may require you to restart your instance. Check the list of supported flags to see if your instance will restart when this patch is submitted.