반응형 분류 전체보기3276 [오늘아침] CCTV에 찍힌 훈훈한 장면!! 민망할까봐 가서 도와줌 !! 2022. 1. 20. [추천] 삼성전자 매일 1주씩 사면 안되는 이유!! https://www.youtube.com/watch?v=O5V8h3hFoBc 2022. 1. 20. GUCCI - 택배 포장!! 2022. 1. 20. 월 250~300만원 벌면 재테크 '이렇게' 하세요. 큰돈 됩니다!! https://www.youtube.com/watch?v=DXXgVBEvTZk 2022. 1. 19. 애플(apple) 난리났다!! 우려했던일 터졌다!! 삼성전자 어떻게 되나!! https://www.youtube.com/watch?v=GLNT_IY9ct4 2022. 1. 19. 18. Centralize images in S3 OK so in this video let us see how to create a bucket. Right. This is the S3 bucket and here we want to upload an image the image that we have in our application. The AWS icon image. And then we also need to make the image public so that we can access it because remember S3 has a security layer. Right. And by default all content is private, the access is denied. So we need do we need to make thi.. 2022. 1. 19. 17. Separate db tier OK so in this video let's launch our RDS instance this one. And once we launch this will connect to the instance from our EC2 instance using my sql client I'm using my sql client. So let's start with this launch and then once we verify the connectivity then we can configure this RDS instance in our application. In a later step in this module and then test out our application as well. OK. So the .. 2022. 1. 19. 16. Intro: Fault tolerance - multi-tier architecture Welcome to module 3, in this module we want to look at fault tolerance But for a multi-tier stack. Right. So in the previous module we looked at a single instance stack. Right. And this was a Essentially the PHP application with the mysql database in the same server. Right. And here we saw that although we have some options for recovering from different kinds of failures in in many of these opti.. 2022. 1. 19. LG에너지 솔루션정말 놀랍습니다!!특별 보너스!!삼성전자 어떻게 되나! https://www.youtube.com/watch?v=-LXEA-GyGHo 2022. 1. 19. 삼성전자대형소식 터졌습니다!난리 났습니다!!정말 대단합니다!! https://www.youtube.com/watch?v=0rl2N04QXJs 2022. 1. 19. 모건스탠리 엄청난보고서 나왔다!! 어떻게 이럴수가!! 삼성전자 난리난다!! https://www.youtube.com/watch?v=D_VTsX3th1U 2022. 1. 19. [마이크로소프트(MS)난리났다!!] 대박M&A터졌다!! 삼성전자 어떻게 되나!! https://www.youtube.com/watch?v=pnEjFyllmRo 2022. 1. 19. 15. Recovery: Availability zone failure In this video let's see how to recover from an AZ failure. So the AZ availability is on has failed. Right. And this could be because of say a power supply problem or say the Internet connection into the availabilities on has failed or something like that. Right. And we're not able to access our services in this availability. So OK. And so we have to do something where we recover into a different.. 2022. 1. 19. 14. Recovery: Volume failure This video let's see how to recover from a volume failure. Right. And specifically we're talking about the data volume failure because this has are available data right we don't care so much about the root volume because the Rupali is already backed up in the AMI. Right. And the software doesn't change so much that the data is what changes very frequently and and the snapshotting that they do is.. 2022. 1. 19. [가족] 아내의 손!! 2022. 1. 19. 13. Recovery: Instance failure All right so in this video let's see how to recover from of instance failure. So. So here let's say are EC2 instance fails. But the obvious one to you especially the data was fine. Right. Also the easy availability zone is fine as well. So how do we recover in this scenario. So what we have to do is we have to create a replacement instance. Right. And this instance has to be in the same zone. Ri.. 2022. 1. 18. 모르면 못 받는 돈 너무나 많이 있습니다!! "시민 안전 보험금" 들어 보셨나요?? 최대 2000만원 보상! 이제 다쳐도 걱정 없습니다! https://www.youtube.com/watch?v=NJ81PzYdeJU 2022. 1. 18. 삼성전자 개미 64만주 폭풍매수!!이러면 안됩니다 !!결국 이렇게 됩니다!! https://www.youtube.com/watch?v=pYlyImaKVSo 2022. 1. 18. 12. Prep for recovery: Create AMI & EBS snapshot All right in this video let's see how to do the last two items in our list of checklist here. It's all for preparation as preparation for recovery. And these are create the AMI and also create the EBS snapshot. Right. So remember the purpose of the AMI is to help us create a replacement server so we can use this AMI and we can create a replacement for instance. And this could be in the same avai.. 2022. 1. 18. 삼성전자 좋은소식 나왔습니다!! 인도에서 수주협상 시작!! 대박 수주 나온다!! https://www.youtube.com/watch?v=nIitD9sqsVg 2022. 1. 18. 천만원이라도 종잣돈 있다면 '이렇게' 하세요. 부자 됩니다!! https://www.youtube.com/watch?v=IpR9kSpZHEc 2022. 1. 18. 11. Prep for recovery: Configure Elastic IP address All right in this video let's see how to configure the elastic IP address right so this one here and it's a very simple thing. It's a two step process. The first step is to allocate so we allocate which means we request AWS to issue an elastic IP address to our account. Right so this is always allocated to our account which means that we can attach this elastic IP address or associate the elasti.. 2022. 1. 18. 10. Prep for recovery: Configure MySQL to use data volume # SSH into your EC2 instance and run following commands: #Stop mysql: sudo systemctl stop mysql # Copy mysql db to /data, mount point of data vol, note that file permissions are also copied: sudo rsync -av /var/lib/mysql /data # Edit mysql config to change datadir, edit /etc/mysql/mysql.conf.d/mysqld.cnf: sudo vi /etc/mysql/mysql.conf.d/mysqld.cnf datadir=/data/mysql # change datadir to this # E.. 2022. 1. 18. 9. Prepare for recovery: Configure data volume # SSH into your server, after you have attached the data volume to the instance # Check if data volume exists, device with name xvdf should exist: lsblk # Install file system on data volume sudo mkfs -t ext4 /dev/xvdf # Create mount point: sudo mkdir /data # Mount the volume to the mount point: sudo mount /dev/xvdf /data # Add this line to /etc/fstab, so volume is mounted after reboot: sudo vi /.. 2022. 1. 18. 향후 10년, 돈을 쓸어담는 미래 기술!! https://www.youtube.com/watch?v=LcEqWnlyX0U&t=578s 2022. 1. 18. 결국! 성공했습니다!삼성전자인텔 무너집니다!!충격적인 사실 입니다! https://www.youtube.com/watch?v=_FZNm0mZNwE 2022. 1. 18. 삼성전자 좋은소식 나왔습니다!! 대박 난리났다!! 여기와 손잡았다!! https://www.youtube.com/watch?v=fQtQ8LfNpZo 2022. 1. 18. [추천] 앞으로 10년, 생존하려면 2가지 공부를 하세요!! https://www.youtube.com/watch?v=aS0g0EbqXTA&t=982s 2022. 1. 18. 8. Install MySQL server on EC2 instance # Run following commands after you SSH into your server # install mysql-server package, you will need to enter a password, twice. Remember this password sudo apt-get install mysql-server # test mysql server installation mysql -u root -p # exit mysql mysql> exit # edit localdb.php page with mysql server user and password, user should be root and password will be what you setup in the installation.. 2022. 1. 18. 추천 - 연금과 삼성전자, 무엇이 좋을까? https://www.youtube.com/watch?v=TWE-bA4CrCw 2022. 1. 18. 이전 1 ··· 32 33 34 35 36 37 38 ··· 110 다음 반응형