Passive mode로 변경 하니 해결

http://php.net/manual/kr/function.ftp-pasv.php

'PHP' 카테고리의 다른 글

[PHP] insert작업으로 생성된 id반환  (0) 2015.06.08
[PHP] getimagesize()함수가 실행되지 않을때  (0) 2015.04.24

CLI를 쓰던가 로컬에서 개발용으로 access / secret키를 쓸때

~/.aws/credentials 파일에 access / secret키들을 적어놓고쓰는데 멀티로 쓸 경우 사용방법은 아래와 같다.

http://docs.aws.amazon.com/cli/latest/userguide/cli-chap-getting-started.html


[default]
aws_access_key_id = 0000000000000000
aws_secret_access_key = 0000000000000000

[test]
aws_access_key_id = 0000000000000000
aws_secret_access_key = 0000000000000000


test AWS계정으로 작업을 할 경우

터미널에서 aws ec2 describe-instances --profile test 이렇게 하시면 됩니다.

+ Recent posts