---
title: "changeCloudMysqlUserList"
slug: "cli-vmysql-changecloudmysqluserlist"
tags: ["Cloud DB for MySQL ", "DB User"]
updated: 2026-04-23T09:04:55Z
published: 2026-04-23T09:07:31Z
canonical: "cli-fin.ncloud-docs.com/cli-vmysql-changecloudmysqluserlist"
---

> ## Documentation Index
> Fetch the complete documentation index at: https://cli-fin.ncloud-docs.com/llms.txt
> Use this file to discover all available pages before exploring further.

# changeCloudMysqlUserList

## 개요

Cloud DB for MySQL 인스턴스의 DB User를 수정합니다.

## 요청

### 요청 파라미터

| 파라미터명 | 필수 여부 | 타입 | 제약 사항 | 설명 |
| --- | --- | --- | --- | --- |
| regionCode | No | String |  | - 리전 코드 regionCode는 [getRegionList](/docs/cli-vserver-server-common-getregionlist) 액션을 통해서 획득 가능 Default : getRegionList 조회 결과의 첫 번째 리전을 선택 |
| cloudMysqlInstanceNo | Yes | String |  | - Cloud DB for MySQL 인스턴스 번호 cloudMysqlInstanceNo는 [getCloudMysqlInstanceList](/docs/cli-vmysql-getcloudmysqlinstancelist) 액션을 통해서 획득 가능 |
| cloudMysqlUserList.N.name | Yes | List<String> | 영문자, 숫자, 언더바(_), 하이픈(-) 문자만 허용하며 반드시 영어로 시작해야 함 Min: 3 Max: 16 | - MySQL 유저 ID 변경 불가 |
| cloudMysqlUserList.N.hostIp | Yes | List<String> |  | - MySQL 유저 host 변경 불가 예제) 전체 접속 허용 : % 특정 IP 접속 허용 : 1.1.1.1 IP 대역 접속 허용 : 1.1.1.% |
| cloudMysqlUserList.N.password | No | List<String> | 영어, 숫자, 특수문자 3개 항목에 대해 1자 이상 포함되어야 함 특정 특수문자( ` & + " ' / 공백 )는 사용 불가 Password Plugin이 활성화된 상태에선 plugin으로 설정한 정책도 만족시켜야 함 Min: 8 Max: 20 | - MySQL 유저 패스워드 패스워드를 변경할 때만 입력 |
| cloudMysqlUserList.N.authority | Yes | List<String> |  | - MySQL 유저 권한 Options : READ \| CRUD \| DDL |
| cloudMysqlUserList.N.isSystemTableAccess | No | List<Boolean> |  | - 시스템 테이블 접근 가능 여부 Options: true \| false Default: true |
| output | No | String |  | - 응답 결과의 포맷 타입 Options : xml \| json Default : json |

## 예시

### 요청 예시

```
ncloud vmysql changeCloudMysqlUserList --regionCode FKR --cloudMysqlInstanceNo ****890 --cloudMysqlUserList "name='testuser', hostIp='%', password='********', authority='CRUD', isSystemTableAccess=true"
```

### 응답 예시

```
<changeCloudMysqlUserListResponse>
    <requestId>08bc2188-6a20-4129-9176-f85be77073dc</requestId>
    <returnCode>0</returnCode>
    <returnMessage>success</returnMessage>
</changeCloudMysqlUserListResponse>
```
