We use different AWS accounts for production and development. We also use encrypted AMI’s. Writing some ansible code, I kept erroring out on a known-good AMI. The reason was I could not share AMI across encrypted accounts.
[Read More]
Workaround for Terraform Error DBParameterGroup not found
The terraform destroy command outputs a false error as it is not able to delete an AWS RDS MySQL DB.
[Read More]
Which-Is-Kerberos-Admin-Server
To see which keytab server your client is trying to authenticate, you can run these commands.
[Read More]
Redirecting standard error into standard output from your unix commands into log files
Sometimes, we’re not able to view the output of standard error, or we’d like to keep this in a log file to search later. Saving the results of standard output can be useful for troublshooting issues the future.
[Read More]
In Centos, manually add user and add ssh keys
Manual steps to add a user with sudo accecss in centos
```
adduser -U -G adm,wheel username -s /bin/bash && su -l username && mkdir .ssh && chmod 0700 .ssh && cd .ssh/
[Read More]