Access Keys in AWS IAM

By default AWS have made changes in that Access Keys and Secrets are not automatically created when you add a new user in IAM. However, it is quite simply to get these keys for CLI or automated access:
Goto IAM -> Users -> (User Name) -> Security Credentials -> Create Access Key -> CLI -> Click the checkbox -> Next -> Create Access Key

Getting Jenkins to log on Ubuntu/Debian

If you install Jenkins natively on Ubuntu or Debian you may find that logging is not working. Logs should be saved to /var/log/jenkins/jenkins.log
Steps to get it working. Edit the service:
sudo vi /etc/systemd/system/multi-user.target.wants/jenkins.service

And uncomment this line (remove the #):
Environment="JENKINS_LOG=%L/jenkins/jenkins.log"

Then reload systemd:
sudo systemctl daemon-reload

Then restart Jenkins:
sudo service jenkins restart

Then you can view the logs:
tail -F /var/log/jenkins/jenkins.log