amrit_3327
amrit_3327
@amrit_3327
Trusted Member
Joined: Dec 5, 2019
Last seen: May 30, 2021
Topics: 0 / Replies: 65
Reply
RE: How to provide access to enable termination protection through AWS policy

{"Sid": "AllowTerminationProtectionDisable","Effect": "Allow","Action": "ec2:ModifyInstanceAttribute","Resource": "*","Condition": {"ForAnyValue:Strin...

3 years ago
Reply
RE: Kernel Panic to AWS instance. How can we bring back aws ec2 instance

There may be multiple reason. Follow the steps which are generic for every case: 1.) Bring impacted instance in stopped state. 2.) Detach the root...

3 years ago
Reply
Reply
RE: eksctl command failing

One of the reason for this error is time out of sync issue between clients. Make sure ntpstat is showing synchronized. ntpstatsynchronised to NTP se...

3 years ago
Reply
RE: How can we find the yum variables been declared in linux ?

python -c 'import yum, pprint; yb = yum.YumBase(); pprint.pprint(yb.conf.yumvar, width=1)' Above command will provide the detailed out put for yb...

4 years ago
Reply
RE: Minimum permissions required to retrive credentials for secret manager for particular prefix in AWS

To retrieve a secret in the console, you must have these permissions: secretsmanager:ListSecrets – Use to navigate to the secret to retrieve. ...

4 years ago
Reply
RE: How to mount the multiUSER SMB share in linux ?

# mount -F smbfs -o user=user1,fileperms=770,dirperms=770,uid=aaa\ //solarsystem/sales-tools /salesAdd the UID of other user you want to give acce...

4 years ago
Reply
RE: How can we find maillogs from last one hour in Linux ?

Use following command. i=`date -d "1 hour ago"| awk '{print $2}'`; j=`date -d "1 hour ago"| awk '{print $3}'`;k=`date -d "1 hour ago"| awk '{pri...

4 years ago
Reply
RE: How to isolate the ec2 instances if code deploy failure is continuously terminating the ec2 instance in AWS ?

We can use following command on aws cli to isolate the ec2 instance. $ aws autoscaling complete-lifecycle-action --profile account-name --auto-s...

4 years ago
Reply
RE: How to find if my linux machine i physical, vm or cloud

In case of physical dmidecode -t system # dmidecode 2.11 SMBIOS 2.6 present. Handle 0x0100, DMI type 1, 27 bytes System Informatio...

4 years ago
Reply
RE: Check thread count per process in linux

Hello Friends, There are multiple way one can do the thread count analysis per process in Linux. 1.) One can use the PID - cat /pr...

4 years ago
Reply
RE: How to make sure we have package install using puppet only once and it doesn't upgrade the package ?

There are two possible solution which are coming across my mind. 1.) Use ensure => installed as part of resource type package and it will be inst...

4 years ago
Reply
RE: Can we update the stack without changing any parameter in AWS ?

No until we change any parameter in AWS we cant update the stack. For ECS we can select option force new deployment and can still update service witho...

4 years ago
Reply
RE: Can we create AMI on running ec2 instance in AWS ?

Hello Guys, This is little dicey. Yes you can have AMI created without shutting down the AWS EC2 instance. But disk consistency for journal is n...

4 years ago
Page 1 / 3