Available in VPC
Send Cloud DB for MySQL instance DB server log files to Object Storage. To send DB server log files to Object Storage, Object Storage buckets for storing and searching DB server log files must be created in advance. For more information, see Object Storage user guide.
Syntax
The exportDbServerLogToObjectStorage syntax is as follows:
./ncloud vmysql exportDbServerLogToObjectStorage \
--cloudMysqlServerInstanceNo <server-instance-no> \
--logType <BINARY|ERROR|SLOW|GENERAL|AUDIT> \
--fileName <log-file-name> \
--bucketName <bucket-name> \
[--folderPath <folder-path>] \
[--regionCode <KR|SGN|JPN>] \
[--output <json|xml>]
Options
This section describes the options available when running exportDbServerLogToObjectStorage.
Required options
The following options are required for exportDbServerLogToObjectStorage.
| Options | Type | Required | Description |
|---|---|---|---|
--cloudMysqlServerInstanceNo |
String | Required | Cloud DB for MySQL server instance number |
--logType |
String | Required | DB server log file type
|
--fileName |
String | Required | DB server log file name
|
--bucketName |
String | Required | Name of the Object Storage bucket the DB server log file will be sent to
|
Optional options
These are the optional options for exportDbServerLogToObjectStorage. Options that are not specified will use their default values.
| Options | Type | Required | Description |
|---|---|---|---|
--folderPath |
String | Optional | Folder path where DB server log files will be sent |
Common options
For information about the options common to all vmysql subcommands, see Cloud DB for MySQL (VPC) options.
Examples
If the DB server log file transfer request is successful, the log file will be transferred to the specified Object Storage bucket.
Command
The command example is as follows:
./ncloud vmysql exportDbServerLogToObjectStorage \
--cloudMysqlServerInstanceNo 34567890 \
--logType ERROR \
--fileName mysqld.err \
--bucketName my-test-bucket \
--folderPath cloud-db-for-mysql/ \
--regionCode KR \
--output json
Output
The output example is as follows:
{
"exportDbServerLogToObjectStorageResponse": {
"requestId": "b2c3d4e5-f6a7-8901-bcde-f23456789012",
"returnCode": "0",
"returnMessage": "success"
}
}