개발자의 노트
AWS 서비스의 기본 제한 값 정보

아마존 웹 서비스를 사용할 경우, 각 서비스들의 기본 제한 값이 궁금하다면 아래 링크를 참조하세요. http://docs.aws.amazon.com/general/latest/gr/aws_service_limits.html 예를 들어, SES 서비스의 제한은 아래와 같습니다. Amazon SES LimitsThe following are the default limits for Amazon SES in the sandbox environment.ResourceDefault LimitDaily sending quota200 messages per 24 hour period.Maximum send rate1 email per second.Recipient address verificationAll recip..

[AWS] EC2에 S3를 마운트 (s3fs)

1. s3fs 설치 https://code.google.com/p/s3fs/wiki/InstallationNotes 2. s3 bucket 마운트 aws accesskey / secretkey 등록$touch /etc/passwd-s3fs && chmod 640 /etc/passwd-s3fs && echo '[accesskey]:[secretkey]' > /etc/passwd-s3fs 마운트할 디렉토리를 생성$mkdir -p /mnt/s3/[bucketname] 마운트$s3fs [bucketname] -o use_cache=/tmp -o allow_other /mnt/s3/[bucketname] root가 아닌 일반 사용자의 접근을 위해 /etc/fuse.conf 에서 user_allow_other 옵션..