

기계 번역으로 제공되는 번역입니다. 제공된 번역과 원본 영어의 내용이 상충하는 경우에는 영어 버전이 우선합니다.

# memcached 속성
<a name="attributes-recipes-mem"></a>

**중요**  
이 AWS OpsWorks Stacks 서비스는 2024년 5월 26일에 수명이 종료되었으며 신규 및 기존 고객 모두에서 비활성화되었습니다. 가능한 한 빨리 워크로드를 다른 솔루션으로 마이그레이션하는 것이 좋습니다. 마이그레이션에 대한 질문이 있는 경우 [AWS re:Post](https://repost.aws/) 또는 [AWS Premium Support](https://aws.amazon.com/support)를 통해 AWS Support 팀에 문의하세요.

**참고**  
이러한 속성은 Linux 스택에서만 사용할 수 있습니다.

[`memcached` 속성](https://github.com/aws/opsworks-cookbooks/blob/release-chef-11.10/memcached/attributes/default.rb)은 [Memcached](http://memcached.org/) 서버 구성을 지정합니다. 내장 속성을 재정의해 사용자 지정 값을 지정하는 방법에 대한 자세한 정보는 [속성 재정의](workingcookbook-attributes.md) 단원을 참조하세요.


****  

|  |  |  | 
| --- |--- |--- |
| [메모리 ](#attributes-recipes-mem-memory) | [max\$1connections ](#attributes-recipes-mem-max) | [pid\$1file ](#attributes-recipes-mem-pid) | 
| [포트 ](#attributes-recipes-mem-port) | [start\$1command ](#attributes-recipes-mem-start) | [stop\$1command ](#attributes-recipes-mem-stop) | 
| [user ](#attributes-recipes-mem-user) |  |  | 

**메모리 **  <a name="attributes-recipes-mem-memory"></a>
사용할 최대 메모리 양(MB)(숫자). 기본값은 `512`입니다.  

```
node[:memcached][:memory]
```

**max\$1connections **  <a name="attributes-recipes-mem-max"></a>
연결의 최대 수(문자열). 기본값은 `'4096'`입니다.  

```
node[:memcached][:max_connections]
```

**pid\$1file **  <a name="attributes-recipes-mem-pid"></a>
데몬의 프로세스 ID가 포함된 파일(문자열). 기본값은 `'var/run/memcached.pid'`입니다.  

```
node[:memcached][:pid_file]
```

**포트 **  <a name="attributes-recipes-mem-port"></a>
수신 대기할 포트(숫자). 기본값은 `11211`입니다.  

```
node[:memcached][:port]
```

**start\$1command **  <a name="attributes-recipes-mem-start"></a>
시작 명령(문자열). 기본값은 `'/etc/init.d/memcached start'`입니다.  

```
node[:memcached][:start_command]
```

**stop\$1command **  <a name="attributes-recipes-mem-stop"></a>
중지 명령(문자열). 기본값은 `'/etc/init.d/memcached stop'`입니다.  

```
node[:memcached][:stop_command]
```

**user **  <a name="attributes-recipes-mem-user"></a>
사용자(문자열). 기본값은 `'nobody'`입니다.  

```
node[:memcached][:user]
```