분류 전체보기
-
[ AWS ] IAM Policy 특정 S3만 읽기 / 쓰기 권한 부여AWS Infra 2021. 11. 4. 19:26
IAM에서 특정 S3만 접근 위한 Policy (json) { "Version": "2012-10-17", "Statement": [ { "Sid": "ListObjectsInBucket", "Effect": "Allow", "Action": [ "s3:ListBucket" ], "Resource": [ "arn:aws:s3:::S3BucketName1", "arn:aws:s3:::S3BucketName2" ] }, { "Sid": "AllObjectActions", "Effect": "Allow", "Action": "s3:*Object", "Resource": [ "arn:aws:s3:::S3BucketName1/*", "arn:aws:s3:::S3BucketName2/*" ] } ] } * S3Bu..
-
[ AWS ] Linux AWS S3 설치AWS Infra 2021. 11. 1. 23:13
1. AWS Cli 설치방법 https://docs.aws.amazon.com/cli/latest/userguide/install-cliv2-linux.html Installing, updating, and uninstalling the AWS CLI version 2 on Linux - AWS Command Line Interface AWS CLI versions 1 and 2 use the same aws command name. If you have both versions installed, your computer uses the first one found in your search path. If you previously installed AWS CLI version 1, we recomm..
-
[ AWS ] Lambda와 CloudWatch를 이용한 EC2 Start, StopAWS Infra 2021. 10. 31. 09:49
1. IAM 정책생성을 생성 (Sample : EC2_Control) { "Version": "2012-10-17", "Statement": [ { "Effect": "Allow", "Action": [ "logs:CreateLogGroup", "logs:CreateLogStream", "logs:PutLogEvents" ], "Resource": "arn:aws:logs:*:*:*" }, { "Effect": "Allow", "Action": [ "ec2:Start*", "ec2:Stop*" ], "Resource": "*" } ] } 2. IAM 역할생성 (Sample : EC2_Start_Lambda) 1. Lambda 함수생성 2. 소스코드 생성 * region : 현재 사용하는 리전명 * ins..
-
-
[ Zabbix 5.0 ] Template DB MSSQL by ODBC MonitoringOpen Source 2021. 4. 5. 23:59
- Zabbix Version : 5.0 LTS - 운영체제 : CentOS 7 Zabbix 5.0에서는 Template DB MSSQL by ODBC 템플릿이 기본적으로 내장되어 있다. ODBC는 Zabbix 서버에서 ODBC로 DB 인증을 받기 때문에, Agent에서는 별도의 작업은 없다. ODBC를 연결하는 방법에는 freeTDS와 MSSQL 드라이버를 이용하는 방법이 있는데, 이번 포스팅에서는 MSSQL 드라이브를 이용하여 ODBC를 이용하겠다. Step 1 https://docs.microsoft.com/ko-kr/sql/connect/odbc/linux-mac/installing-the-microsoft-odbc-driver-for-sql-server?view=sql-server-ver15 M..
-
[ CentOS 7 ] freetds를 이용하여 MSSQL에 연결Linux/RedHat, CentOS, ubuntu 2021. 4. 2. 19:26
freetds : MSSQL과 통신을 할 수 있는 리눅스 라이브러리 패키지 설치 # yum install freetds unixODBC /etc/freetds.conf 수정 [mssql] host = x.x.x.x Port = 1433 tds version = 8.0 tsql을 이용하여 접속 테스트 # tsql -S 'x.x.x.x' -U sa Password: locale is "en_US.UTF-8" locale charset is "UTF-8" using default charset "UTF-8" 1> select @@version 2> go Microsoft SQL Server 2012 .....
-
Windows Server, CentOS EOL (End Of Life)Python/Etc 2021. 3. 29. 00:09
Windows Server 제품명 일반 지원 종료 연장 지원 종료 Windows Server 2019 Datacenter 2024-01-09 2029-01-09 Windows Server 2019 Essentials 2024-01-09 2029-01-09 Windows Server 2019 Standard 2024-01-09 2029-01-09 Windows Server 2016 Datacenter 2022-01-11 2027-01-11 Windows Server 2016 Essentials 2022-01-11 2027-01-11 Windows Server 2016 Standard 2022-01-11 2027-01-11 Windows Server 2012 Standard 2018-10-09 2023-10..