Skip to content

Instantly share code, notes, and snippets.

View ceagan's full-sized avatar

Christopher Eagan ceagan

View GitHub Profile
@ceagan
ceagan / 1-Instructions.md
Created August 6, 2018 17:43 — forked from robszumski/1-Instructions.md
CloudFormation Template OpenShift 3.9

Blog post to follow: https://sysdig.com/blog/deploy-openshift-aws/

Pre-reqs

AWS account must have accepted the CentOS terms via AWS marketplace See the AMI IDs in the CloudFormation file Upload the stack file to your own S3 bucket Replace your SSH key name, stack name, etc below:

aws cloudformation create-stack \
@ceagan
ceagan / Building iceScrum.md
Last active December 22, 2023 09:33
Building iceScrum from Source

Install SDKMAN!

See latest install instructions here: http://sdkman.io/install.html

curl -s "https://get.sdkman.io" | bash

Install Grails

I installed version 2.5.5, but had trouble using it directly, so I only used it to install the wrapper. Maybe other versions work too.

@ceagan
ceagan / CentOS 7 Review Board Install.md
Last active August 29, 2015 14:15
Install Review Board 2.x on CentOS 7

!! Incomplete !!

Install Review Board

Prerequisites

EPEL Provides some of the required packages, including Review Board itself.

yum install epel-release
@ceagan
ceagan / CentOS 7 AD Login.md
Last active May 28, 2022 05:25
Setup CentOS 7 for Password/Kerberos-based SSH Logins with Active Directory

Introduction

The intent of this document to is record one method of enabling Kerberos logins on a CentOS 7 system using Windows Active Directory. There are many way to do this. For a very detailed document on all of these options, check out the Red Hat Enterprise Linux 7 Windows Integration Guide.

Note: At the time of this writing, a kickstart installation does not work correctly, possibly due to using an older version of adcli. The /etc/krb5.keytab file ends up containing entries that look like HOST/hostname.domain.com@DOMAIN.COM which is not what sshd is expecting. The sshd service is expecting entrieds that look like host/hostname.domain.com@DOMAIN.COM. This causes ssh Kerberos logins to fail, printing No key table entry found matching host/hostname.domain.com@ in the error log.

Setting up CentOS 7 for Active Directory Logi