Why?


Search This Blog

Tuesday, October 25, 2016

CentOS 7 sshd server to server with no password using trusted keys

CentOS 7 sshd server to server with no password using trusted keys

I have two servers of 192.168.10.28 and 192.168.10.100. On 192.168.10.28 as root:

# ssh-keygen -t rsa
Generating public/private rsa key pair.
Enter file in which to save the key (/root/.ssh/id_rsa):
Enter passphrase (empty for no passphrase):
Enter same passphrase again:
Your identification has been saved in /root/.ssh/id_rsa.
Your public key has been saved in /root/.ssh/id_rsa.pub.
The key fingerprint is:
a3:ba:98:53:bc:8c:c9:b3:d8:3f:73:e2:61:a6:41:f7 root@rhtest.whittenberg.local
The key's randomart image is:
+--[ RSA 2048]----+
|                 |
|                 |
|                 |
|                 |
|  ...   S        |
| . .o. . .       |
| ..=+.E          |
| o*B*o.          |
|. **=*           |
+-----------------+

# ssh-copy-id root@192.168.10.100
/usr/bin/ssh-copy-id: INFO: attempting to log in with the new key(s), to filter out any that are already installed
/usr/bin/ssh-copy-id: INFO: 1 key(s) remain to be installed -- if you are prompted now it is to install the new keys
root@192.168.10.100's password:

Number of key(s) added: 1

Now try logging into the machine, with:   "ssh 'root@192.168.10.100'"
and check to make sure that only the key(s) you wanted were added.

# ssh root@192.168.10.100
Last login: Tue Oct 25 20:09:25 2016 from 192.168.10.28


Now do the same on 192.168.10.100 using the ssh-copy-id command to host 192.168.10.28 like the following:

# ssh-keygen -t rsa
Generating public/private rsa key pair.
Enter file in which to save the key (/root/.ssh/id_rsa):
Enter passphrase (empty for no passphrase):
Enter same passphrase again:
Your identification has been saved in /root/.ssh/id_rsa.
Your public key has been saved in /root/.ssh/id_rsa.pub.
The key fingerprint is:
a3:ba:98:53:bc:8c:c9:b3:d8:3f:73:e2:61:a6:41:f7 root@rhtest.whittenberg.local
The key's randomart image is:
+--[ RSA 2048]----+
|                 |
|                 |
|                 |
|                 |
|  ...   S        |
| . .o. . .       |
| ..=+.E          |
| o*B*o.          |
|. **=*           |
+-----------------+

# ssh-copy-id root@192.168.10.28
/usr/bin/ssh-copy-id: INFO: attempting to log in with the new key(s), to filter out any that are already installed
/usr/bin/ssh-copy-id: INFO: 1 key(s) remain to be installed -- if you are prompted now it is to install the new keys
root@192.168.10.100's password:

Number of key(s) added: 1

Now try logging into the machine, with:   "ssh 'root@192.168.10.28'"
and check to make sure that only the key(s) you wanted were added.

# ssh root@192.168.10.28
Last login: Tue Oct 25 20:09:25 2016 from 192.168.10.100


There you go. You you no longer need password to use the sshd protocol between your two servers. Try this on either server access the other. I will be on the .28 accessing the .100:

# sftp root@192.168.10.100
Connected to 192.168.10.100.
sftp> ls
anaconda-ks.cfg                    btrfs-progs                        dead.letter                        dump
fio-2.0.9.tar.gz                   go.sh                              idle3-tools-0.9.1                  idle3-tools-0.9.1.tar
linux-4.7.tar.xz                   list                               master.zip                         mylog.txt
phoronix-test-suite                phoronix-test-suite-6.4.0.tar      scrub.log                          sipp-3.5.1
sipp-3.5.1.tar.gz                  test.sh                            trantest                           wd5741x64
zfsstress-master
sftp>

Yup. No password needed. Enjoy!


Saturday, October 22, 2016

CentOS 7 rescue, backup, and restore using ReaR

CentOS 7 rescue, backup, and restore using ReaR

I will be using a server i have already setup as my backup server. The client server we are working on in this post will use the backup server to store its rescue image and tar file on. This backup server is connected via 10Gb Ethernet and has 8 WD 3TB NAS drives in btrfs Raid10 on a Supermicro SAS/SATA controller. The btrfs on this backup server is also replicated to another server. So if a Linux client crashed i have what i need to restore from my backup server. If the back server crashes before i get the client rebuilt i can fall back on the replicated files the other machine. I also have a disaster recovery document for the backup server that allows me to have it fully rebuilt and able to restore files back on to it in less than an hour.

Now on your client machine install files so we can create rescue images. lftp is needed to so we can sftp the image to the backup server if wanted. In this post i will be using nfs as i have this setup already on my backup server.

# yum -y install rear genisoimage syslinux lftp nfs-utils

ReaR is configured in the /etc/rear/local.conf file. Specify the rescue system configuration by
adding these lines:

OUTPUT=output format
OUTPUT_URL=output location


Substitute output format with rescue system format, for example, ISO for an ISO disk image or USB for a bootable USB.

Substitute output location with where it will be put, for example,
file:///mnt/rescue_system/ for a local filesystem directory or
sftp://backupuser:password@192.168.10.100/directory/ for an sftp directory or.
nfs://192.168.10.100/backup_dir/ for a nfs share.

Example1:
OUTPUT=ISO
OUTPUT_URL=sftp://backup:password@192.168.10.100/backup_dir/


Example2:
OUTPUT=ISO
OUTPUT_URL=nfs://192.168.10.100/backup_dir/


In the exmaple2 above i create the rescue ISO image on the server 192.168.10.100 using my nfs share /backup_dir.

Make rescure image with:

# rear -v mkrescue

Now look under /backup_dir on server 192.168.10.100 and you will see the newly created directory of your machine name with the ISO image in it.

If you like you can verify that you can boot from the ISO. Burn it to a CD/DVD, or like me, just create a new vm image and have this as the ISO CD/DVD and set to boot on start.

I can now boot off the rescue ISO but this does not do me much good if lets say i had a drive crash and all my files are gone. So say i have replaced the drive and I will also need to restore them to have a functional system again.

So lets add the option in the /etc/rear/local.conf file to tar a backup file. Our /etc/rear/local.conf file already contains the following:

OUTPUT=ISO
OUTPUT_URL=nfs://192.168.10.100/backup_dir/


Now lets append:

BACKUP=NETFS
BACKUP_PROG=tar
BACKUP_URL=nfs://192.168.10.100/backup_dir/
BACKUP_PROG_COMPRESS_OPTIONS="--gzip"
BACKUP_PROG_COMPRESS_SUFFIX=".gz"
BACKUP_PROG_EXCLUDE=( '/tmp/*' '/dev/shm/*' '/mnt/*' )
BACKUP_OPTIONS="nfsvers=3,nolock"


So the complete file looks like:

OUTPUT=ISO
OUTPUT_URL=nfs://192.168.10.100/backup_dir/
BACKUP=NETFS
BACKUP_PROG=tar
BACKUP_URL=nfs://192.168.10.100/backup_dir/
BACKUP_PROG_COMPRESS_OPTIONS="--gzip"
BACKUP_PROG_COMPRESS_SUFFIX=".gz"
BACKUP_PROG_EXCLUDE=( '/tmp/*' '/dev/shm/*' '/mnt/*' )
BACKUP_OPTIONS="nfsvers=3,nolock"


So i am using tar for my backup program, my backups will stored via nfs share to my backup server under the /backup_dir/, i will gzip the tar with extension .gz, and exclude /tmp/*, /dev/shm/*, and /mnt/* from the backups.

Lets test. Now run:

# rear -v mkbackup

After completed you should see the not only the rescue Image under /backup_dir/ on the backup server, but now the backup.tar.gz file as well.

Now to go through the rescue and restore procedure.

In this example i will use my vSphere ESXi 60 server and create a new image for this. I have uploaded the rescue ISO to a datastore and have the image mount this ISO at boot, so i can boot from it.

After the vm image is booted i am presented with the ReaR menu.

I choose Recover and press enter.
Login as root (no password required).
At the # prompt type in:

# rear recover
 
If asked if you want to restore your backup say y.

Now reboot server and login.

Enjoy!

Friday, October 21, 2016

RHCSA Lab setup using CentOS 7 with ipa server and ipa client

RHCSA Lab setup using CentOS 7 with ipa server and ipa client

This is in preparation of me studying for my RHCSA (Redhat Certified System Administrator)

------------------------------------
Now for the base server installs.
------------------------------------

I will using the CentOS-7-x86_64-Everything.iso for the installs in my VMware vSphere Client 6.0 and ESXi 6.0. Each Server gets 2 Cores, 2GB Ram, 25GB disk, and 1 NIC.

Servers names and IP addresses will be:
rh-ipa.whittenberg.local 192.168.10.30
rh-srv1.whittenberg.local 192.168.10.31
rh-srv2.whittenberg.local 192.168.10.32

My Local LAN router is 192.168.10.1 and i will use this for my gateway out and DNS server.

At the CentOS 7 install I set my Network and Hostname.

Click on Network and Hostname on home screen.
Hostname: rh-ipa.whittenberg.local
Click slider to turn ethernet adapter ON. This gives me an IP from my DHCP server from my local LAN router.
Click the Configure button.
[General]
click on Automatically connect to this network
[IPv4 Settings]
Method: Manual
Addresses, click add button
address: 192.168.10.30
netmask: 24

gateway: 192.168.10.1
DNS server: 192.168.10.1
Click Save button
Click Done button

You should now be able to ping 192.168.10.30 from your workstation on the LAN.

Click on  Date & Time from the home screen.
Chose your region and city.
Make sure Network Time slider shows ON.
Click on gears next to slider. Time servers should be green. If red then you are unable to reach them.
Click Done button.

Click on Software Selection from home screen.
Select Minimal Install under Base Environment and nothing under Add-Ons.
Click Done button.

Click on Installation Destination from home screen.
Make sure white check mark on your hard disk.
Select I will configure partitioning.
Click Done button.
Click the + button and setup as follows.
/boot = 500MB
swap = 1024MB
/root = 23.5GB
Click Done button.
Accept Changes.

Now click the Begin Installation button.

Supply root password while the installation is taking place.

When finished click the Reboot button.

Putty/SSH into your server from your workstation.

Disable selinux.

cp /etc/sysconfig/selinux /etc/sysconfig/selinux.bak
sed -i 's/^SELINUX=.*/SELINUX=disabled/g' /etc/sysconfig/selinux
cat /etc/sysconfig/selinux


reboot

Disable and turn off firewalld.
  
systemctl disable firewalld
systemctl stop firewalld


cat or edit your /etc/hostname file and add the following entree if not there already.

ipa.whittenberg.local

cat or edit your /etc/hosts file and add the following entries if not there already.

192.168.10.30    ipa.whittenberg.local ipa

cat or edit your /etc/resolv.conf file and add the following entries if not there already.

search whittenberg.local
nameserver 192.168.10.1


Install additional packages I need on normal basis.

yum -y install bind-utils traceroute net-tools ntp* gcc glibc glibc-common gd gd-devel make net-snmp openssl-devel xinetd unzip libtool* make patch perl bison flex-devel gcc-c++ ncurses-devel flex libtermcap-devel autoconf* automake* autoconf libxml2-devel cmake sqlite* wget ntp* lm_sensors ncurses-devel qt-devel hmaccalc zlib-devel binutils-devel elfutils-libelf-devel wget bc gzip uuid* libuuid-devel jansson* libxml2* sqlite* openssl* lsof NetworkManager-tui mlocate yum-utils kernel-devel nfs-utils tcpdump git

yum -y groupinstall "Development Tools"


Now update the server.

yum -y update

reboot

**Optional - Install of GNOME Desktop.
yum -y groups install "GNOME Desktop"
yum -y update
systemctl set-default graphical.target
systemctl get-default


reboot and make sure GNOME Desktop starts.
**END Optional - Install of GNOME Desktop.

**Optional - Turn off console screen saver and display all boot messages.
vi /etc/default/grub and on the line starting with GRUB_CMDLINE_LINUX= remove 'rhgb' and 'quiet'. Now add 'consoleblank=0' just before the last " on the line. DO NOT include the ' in the 'consoleblank=0' add.

Now make a new grub.cfg using the line below.

grub2-mkconfig -o /boot/grub2/grub.cfg

If using efi then use this line to make new grub.cfg

grub2-mkconfig -o /boot/efi/EFI/centos/grub.cfg


Now when you boot your server you will see all the boot messages.
**END Optional - Turn off console screen saver and display all boot messages.


NOW REPEAT all the steps above under base server installs for the other two server of rh-srv1 and rh-srv2, of course using the correct IP and hostname for each server.

------------------------------------
Now for the ipa server install
------------------------------------

Now its time to setup ipa on the ipa server and we will user srv1 as our first client.

On your ipa server.

# yum -y install ipa-server bind-dyndb-ldap ipa-server-dns

# ipa-server-install --setup-dns


The log file for this installation can be found in /var/log/ipaserver-install.log
==============================================================================
This program will set up the IPA Server.

This includes:
  * Configure a stand-alone CA (dogtag) for certificate management
  * Configure the Network Time Daemon (ntpd)
  * Create and configure an instance of Directory Server
  * Create and configure a Kerberos Key Distribution Center (KDC)
  * Configure Apache (httpd)
  * Configure DNS (bind)

To accept the default shown in brackets, press the Enter key.

WARNING: conflicting time&date synchronization service 'chronyd' will be disabled
in favor of ntpd

Enter the fully qualified domain name of the computer
on which you're setting up server software. Using the form
<hostname>.<domainname>
Example: master.example.com.


Server host name [rh-ipa.whittenberg.local]:

Warning: skipping DNS resolution of host rh-ipa.whittenberg.local
The domain name has been determined based on the host name.

Please confirm the domain name [whittenberg.local]:

The kerberos protocol requires a Realm name to be defined.
This is typically the domain name converted to uppercase.

Please provide a realm name [WHITTENBERG.LOCAL]:
Certain directory server operations require an administrative user.
This user is referred to as the Directory Manager and has full access
to the Directory for system management tasks and will be added to the
instance of directory server created for IPA.
The password must be at least 8 characters long.

Directory Manager password:
Password (confirm):

The IPA server requires an administrative user, named 'admin'.
This user is a regular system account used for IPA server administration.

IPA admin password:
Password (confirm):

Existing BIND configuration detected, overwrite? [no]: yes
Do you want to configure DNS forwarders? [yes]:
Enter an IP address for a DNS forwarder, or press Enter to skip: 8.8.8.8
DNS forwarder 8.8.8.8 added. You may add another.
Enter an IP address for a DNS forwarder, or press Enter to skip:
Checking DNS forwarders, please wait ...
Do you want to configure the reverse zone? [yes]:
Please specify the reverse zone name [10.168.192.in-addr.arpa.]:
Using reverse zone(s) 10.168.192.in-addr.arpa.

The IPA Master Server will be configured with:
Hostname:       rh-ipa.whittenberg.local
IP address(es): 192.168.10.30
Domain name:    whittenberg.local
Realm name:     WHITTENBERG.LOCAL

BIND DNS server will be configured to serve IPA domain with:
Forwarders:    8.8.8.8
Reverse zone(s):  10.168.192.in-addr.arpa.

Continue to configure the system with these values? [no]: yes

Install info scrolls by then at the end we see.

Setup complete

Next steps:
        1. You must make sure these network ports are open:
                TCP Ports:
                  * 80, 443: HTTP/HTTPS
                  * 389, 636: LDAP/LDAPS
                  * 88, 464: kerberos
                  * 53: bind
                UDP Ports:
                  * 88, 464: kerberos
                  * 53: bind
                  * 123: ntp

        2. You can now obtain a kerberos ticket using the command: 'kinit admin'
           This ticket will allow you to use the IPA tools (e.g., ipa user-add)
           and the web user interface.

Be sure to back up the CA certificates stored in /root/cacert.p12
These files are required to create replicas. The password for these
files is the Directory Manager password

# kinit admin
Password for admin@WHITTENBERG.LOCAL:

# ipa user-find admin

--------------
1 user matched
--------------
  User login: admin
  Last name: Administrator
  Home directory: /home/admin
  Login shell: /bin/bash
  UID: 1546000000
  GID: 1546000000
  Account disabled: False
  Password: True
  Kerberos keys available: True
----------------------------
Number of entries returned 1
----------------------------

# ipa user-add
First name: ldapuser1
Last name: ldapuser1
User login [lldapuser1]: ldapuser1
----------------------
Added user "ldapuser1"
----------------------
  User login: ldapuser1
  First name: ldapuser1
  Last name: ldapuser1
  Full name: ldapuser1 ldapuser1
  Display name: ldapuser1 ldapuser1
  Initials: ll
  Home directory: /home/ldapuser1
  GECOS: ldapuser1 ldapuser1
  Login shell: /bin/sh
  Kerberos principal: ldapuser1@WHITTENBERG.LOCAL
  Email address: ldapuser1@whittenberg.local
  UID: 1546000001
  GID: 1546000001
  Password: False
  Member of groups: ipausers
  Kerberos keys available: False
 
# ls -lsa /etc/ipa/
total 24
 0 drwxr-xr-x.   6 root root   89 Oct 20 20:02 .
12 drwxr-xr-x. 147 root root 8192 Oct 20 20:02 ..
 4 -r--r--r--.   1 root root 1337 Oct 20 20:01 ca.crt
 4 -rw-r--r--.   1 root root  321 Oct 20 20:00 default.conf
 0 drwxr-xr-x.   2 root root   76 Oct 20 20:02 dnssec
 4 drwxr-xr-x.   2 root root 4096 Oct 20 19:52 html
 0 drwxr-xr-x.   2 root root   51 Oct 20 20:01 kdcproxy
 0 drwxr-xr-x.   2 root root   69 Oct 20 20:02 nssdb

# cat /etc/ipa/ca.crt
-----BEGIN CERTIFICATE-----
MIIDoDCCAoigAwIBAgIBATANBgkqhkiG9w0BAQsFADA8MRowGAYDVQQKDBFXSElU
VEVOQkVSRy5MT0NBTDEeMBwGA1UEAwwVQ2VydGlmaWNhdGUgQXV0aG9yaXR5MB4X
DTE2MTAyMTAzMDAwNFoXDTM2MTAyMTAzMDAwNFowPDEaMBgGA1UECgwRV0hJVFRF
TkJFUkcuTE9DQUwxHjAcBgNVBAMMFUNlcnRpZmljYXRlIEF1dGhvcml0eTCCASIw
DQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANC2wYqkiEwRY/YUY5cyDTEh+OaK
tU8KtPEeyAOhE8COugNYUZhx8bvoJyM7c7KGzxU/nuY4MAYF6sMOslIcaAHR7S4A
Wi+1URBFI8xsCoO7YktVoyTkV0sNY93dUlK+dpKNnL7P1oDJlcqDWflne/BG0h4i
gq5NRRdWQvh33yJAriBNSw2AIYvuQMiMQ1kdFqQ/T5VjQUU+L20QGE2Ox7AnHkYd
Tovn+Alok8FIqbDNqIn4VNsz0Zy010eHC7zmRK/kiWrnauf+r/JHi3zGz9GVKtUE
3swEE4dXejA7SAd03ZnmF2oruJ+o5u3ZwK4bN8S9dKuZZTaXxjSbT+FbM3MCAwEA
AaOBrDCBqTAfBgNVHSMEGDAWgBRO+0W/EXt3Qbkun00PARxow2PUvjAPBgNVHRMB
Af8EBTADAQH/MA4GA1UdDwEB/wQEAwIBxjAdBgNVHQ4EFgQUTvtFvxF7d0G5Lp9N
DwEcaMNj1L4wRgYIKwYBBQUHAQEEOjA4MDYGCCsGAQUFBzABhipodHRwOi8vcmgt
aXBhLndoaXR0ZW5iZXJnLmxvY2FsOjgwL2NhL29jc3AwDQYJKoZIhvcNAQELBQAD
ggEBAGGiKMrGrcCAtRVfKdA2f4Ko1FpIKKUsEMG4yyBxio//HxDja8X0MUzG7RWQ
3xKvkcNO08zFNd5/5YCiboy5RRrz4N/fIVFZDjJhLjwT9UQx1nktETLl/oirVSp4
e3z7Tc6m+4gpPABM7ryVNkQfdNCka82rLnzny5+U/YsZ2mGcl86MQ6T2U/0RXBHj
9QZVmVRJe7mTJzNW62rSsh6D7u2RBffZIQ7I/Huk5HFiDI9mogtizpb1Miwr5Vhb
uy+bVmPaHJfy/bHbVv8Vg3m0dKbP6bhS0lafnfWXF1iCmako0n0v2+T7IzwScW2Y
G94EkYeftqGg9LiFAogEEKZnuGg=
-----END CERTIFICATE-----

# klist
Ticket cache: KEYRING:persistent:0:0
Default principal: admin@WHITTENBERG.LOCAL

Valid starting       Expires              Service principal
10/20/2016 20:09:13  10/21/2016 20:07:42  HTTP/rh-ipa.whittenberg.local@WHITTENBERG.LOCAL
10/20/2016 20:07:48  10/21/2016 20:07:42  krbtgt/WHITTENBERG.LOCAL@WHITTENBERG.LOCAL

# cat /etc/resolv.conf
search whittenberg.local
nameserver 127.0.0.1


vi /etc/resolv.conf (change to nameserver 192.168.10.30)

# cat /etc/resolv.conf
search whittenberg.local
nameserver 192.168.10.30


Next you can use the Firefox browser on your ipa server and browse the server.

https://rh-ipa.whittenberg.local

Supply username and password. User name is admin.

Click on Network Services then DNS->DNS Zones, then click on whittenberg.local.

Click Add button. Add your servers here like rh-srv1 and rh-srv2. include name, IP address, and select Create Reverse. Like:

name = rh-srv1
Address = 192.168.10.31
Check mark on Create Reverse

and

name = rh-srv2
Address = 192.168.10.32
Check mark on Create Reverse

------------------------------------
Now for the ipa client installs
------------------------------------

On rh-srv1.whittenberg.local server.

[root@rh-srv1 ~]# cat /etc/hostname
rh-srv1.whittenberg.local

[root@rh-srv1 ~]# cat /etc/hosts
127.0.0.1   localhost localhost.localdomain localhost4 localhost4.localdomain4
::1         localhost localhost.localdomain localhost6 localhost6.localdomain6
192.168.10.31   rh-srv1.whittenberg.local rh-srv1

[root@rh-srv1 ~]# cat /etc/resolv.conf
# Generated by NetworkManager
search whittenberg.local
nameserver 192.168.10.1
nameserver 2001:578:3f::30
nameserver 2001:578:3f:1::30

Now change the nameserver in /etc/resolv.conf from 192.168.10.1, as shown above, to 192.168.10.30, as shown below.

[root@rh-srv1 ~]# cat /etc/resolv.conf
# Generated by NetworkManager
search whittenberg.local
nameserver 192.168.10.30
nameserver 2001:578:3f::30
nameserver 2001:578:3f:1::30


Install the ipa client.

[root@rh-srv1 ~]# yum -y install ipa-client

Now run the install/setup of the ipa client.

[root@rh-srv1 ~]# ipa-client-install
WARNING: ntpd time&date synchronization service will not be configured as
conflicting service (chronyd) is enabled
Use --force-ntpd option to disable it and force configuration of ntpd

Discovery was successful!
Client hostname: rh-srv1.whittenberg.local
Realm: WHITTENBERG.LOCAL
DNS Domain: whittenberg.local
IPA Server: rh-ipa.whittenberg.local
BaseDN: dc=whittenberg,dc=local

Continue to configure the system with these values? [no]: yes
Skipping synchronizing time with NTP server.
User authorized to enroll computers: admin
Password for admin@WHITTENBERG.LOCAL:
Successfully retrieved CA cert
    Subject:     CN=Certificate Authority,O=WHITTENBERG.LOCAL
    Issuer:      CN=Certificate Authority,O=WHITTENBERG.LOCAL
    Valid From:  Fri Oct 21 03:00:04 2016 UTC
    Valid Until: Tue Oct 21 03:00:04 2036 UTC

Enrolled in IPA realm WHITTENBERG.LOCAL
Created /etc/ipa/default.conf
New SSSD config will be created
Configured sudoers in /etc/nsswitch.conf
Configured /etc/sssd/sssd.conf
Configured /etc/krb5.conf for IPA realm WHITTENBERG.LOCAL
trying https://rh-ipa.whittenberg.local/ipa/json
Forwarding 'ping' to json server 'https://rh-ipa.whittenberg.local/ipa/json'
Forwarding 'ca_is_enabled' to json server 'https://rh-ipa.whittenberg.local/ipa/json'
Systemwide CA database updated.
Added CA certificates to the default NSS database.
Adding SSH public key from /etc/ssh/ssh_host_rsa_key.pub
Adding SSH public key from /etc/ssh/ssh_host_ecdsa_key.pub
Adding SSH public key from /etc/ssh/ssh_host_ed25519_key.pub
Forwarding 'host_mod' to json server 'https://rh-ipa.whittenberg.local/ipa/json'
SSSD enabled
Configured /etc/openldap/ldap.conf
Configured /etc/ssh/ssh_config
Configured /etc/ssh/sshd_config
Configuring whittenberg.local as NIS domain.
Client configuration complete.



Setup the server to auto create home directories for ipa users when first login from the server.

[root@rh-srv1 ~]# authconfig --enablemkhomedir --update
getsebool:  SELinux is disabled



Now logout as local user root and back in as ipa user admin.

[root@rh-srv1 ~]# logout

login as: admin
admin@192.168.10.31's password:
Creating home directory for admin.
[admin@rh-srv1 ~]$

[admin@rh-srv1 ~]$ pwd
/home/admin

[admin@rh-srv1 ~]$ whoami
admin

[admin@rh-srv1 ~]$ ping rh-ipa
PING rh-ipa.whittenberg.local (192.168.10.30) 56(84) bytes of data.
64 bytes from rh-ipa.whittenberg.local (192.168.10.30): icmp_seq=1 ttl=64 time=0.084 ms
64 bytes from rh-ipa.whittenberg.local (192.168.10.30): icmp_seq=2 ttl=64 time=0.084 ms
^C
--- rh-ipa.whittenberg.local ping statistics ---
2 packets transmitted, 2 received, 0% packet loss, time 999ms
rtt min/avg/max/mdev = 0.084/0.084/0.084/0.000 ms

Now you should be able to ssh into the rh-ipa server without supplying credentials if still login as admin on rh-srv1.

[admin@rh-srv1 ~]$ ssh rh-ipa
Could not chdir to home directory /home/admin: No such file or directory
-bash-4.2$


It worked! Looks like we have home dir issue for ipa user admin on the ipa server though. Lets try and take care of that. First exit back to rh-srv1.

-bash-4.2$ exit
logout
Connection to rh-ipa closed.
[admin@rh-srv1 ~]$


Now ssh to rh-ipa as local user root.

[admin@rh-srv1 ~]$ ssh root@rh-ipa
root@rh-ipa's password:
Last failed login: Fri Oct 21 22:40:19 MST 2016 from 192.168.10.31 on ssh:notty
There was 1 failed login attempt since the last successful login.
Last login: Thu Oct 20 21:19:20 2016 from 192.168.10.5
[root@rh-ipa ~]#


Setup the server to auto create home directories for ipa users when first login from the server.

[root@rh-srv1 ~]# authconfig --enablemkhomedir --update
Now exit back to rh-srv1.

[root@rh-ipa ~]# exit
logout
Connection to rh-ipa closed.
[admin@rh-srv1 ~]$


Now ssh back in to rh-ipa as ipa user admin.

[admin@rh-srv1 ~]$ ssh rh-ipa
Creating home directory for admin.
Last login: Fri Oct 21 22:36:53 2016 from 192.168.10.31
[admin@rh-ipa ~]$ pwd
/home/admin
[admin@rh-ipa ~]$



That solved the problem!!


NOW REPEAT all the steps above in ipa client install section for rh-srv2, of course using the correct IP and hostname for each server.

Thats it folks. Enjoy!















RHCSA Lab setup using CentOS 7 with ipa server and ipa client

RHCSA Lab setup using CentOS 7 with ipa server and ipa client

This is in preparation of me studying for my RHCSA (Redhat Certified System Administrator)

------------------------------------
Now for the base server installs.
------------------------------------

I will using the CentOS-7-x86_64-Everything.iso for the installs in my VMware vSphere Client 6.0 and ESXi 6.0. Each Server gets 2 Cores, 2GB Ram, 25GB disk, and 1 NIC.

Servers names and IP addresses will be:
rh-ipa.whittenberg.local 192.168.10.30
rh-srv1.whittenberg.local 192.168.10.31
rh-srv2.whittenberg.local 192.168.10.32

My Local LAN router is 192.168.10.1 and i will use this for my gateway out and DNS server.

At the CentOS 7 install I set my Network and Hostname.

Click on Network and Hostname on home screen.
Hostname: rh-ipa.whittenberg.local
Click slider to turn ethernet adapter ON. This gives me an IP from my DHCP server from my local LAN router.
Click the Configure button.
[General]
click on Automatically connect to this network
[IPv4 Settings]
Method: Manual
Addresses, click add button
address: 192.168.10.30
netmask: 24

gateway: 192.168.10.1
DNS server: 192.168.10.1
Click Save button
Click Done button

You should now be able to ping 192.168.10.30 from your workstation on the LAN.

Click on  Date & Time from the home screen.
Chose your region and city.
Make sure Network Time slider shows ON.
Click on gears next to slider. Time servers should be green. If red then you are unable to reach them.
Click Done button.

Click on Software Selection from home screen.
Select Minimal Install under Base Environment and nothing under Add-Ons.
Click Done button.

Click on Installation Destination from home screen.
Make sure white check mark on your hard disk.
Select I will configure partitioning.
Click Done button.
Click the + button and setup as follows.
/boot = 500MB
swap = 1024MB
/root = 23.5GB
Click Done button.
Accept Changes.

Now click the Begin Installation button.

Supply root password while the installation is taking place.

When finished click the Reboot button.

Putty/SSH into your server from your workstation.

Disable selinux.

cp /etc/sysconfig/selinux /etc/sysconfig/selinux.bak
sed -i 's/^SELINUX=.*/SELINUX=disabled/g' /etc/sysconfig/selinux
cat /etc/sysconfig/selinux


reboot

Disable and turn off firewalld.
  
systemctl disable firewalld
systemctl stop firewalld


cat or edit your /etc/hostname file and add the following entree if not there already.

ipa.whittenberg.local

cat or edit your /etc/hosts file and add the following entries if not there already.

192.168.10.30    ipa.whittenberg.local ipa

cat or edit your /etc/resolv.conf file and add the following entries if not there already.

search whittenberg.local
nameserver 192.168.10.1


Install additional packages I need on normal basis.

yum -y install bind-utils traceroute net-tools ntp* gcc glibc glibc-common gd gd-devel make net-snmp openssl-devel xinetd unzip libtool* make patch perl bison flex-devel gcc-c++ ncurses-devel flex libtermcap-devel autoconf* automake* autoconf libxml2-devel cmake sqlite* wget ntp* lm_sensors ncurses-devel qt-devel hmaccalc zlib-devel binutils-devel elfutils-libelf-devel wget bc gzip uuid* libuuid-devel jansson* libxml2* sqlite* openssl* lsof NetworkManager-tui mlocate yum-utils kernel-devel nfs-utils tcpdump git

yum -y groupinstall "Development Tools"


Now update the server.

yum -y update

reboot

**Optional - Install of GNOME Desktop.
yum -y groups install "GNOME Desktop"
yum -y update
systemctl set-default graphical.target
systemctl get-default


reboot and make sure GNOME Desktop starts.
**END Optional - Install of GNOME Desktop.

**Optional - Turn off console screen saver and display all boot messages.
vi /etc/default/grub and on the line starting with GRUB_CMDLINE_LINUX= remove 'rhgb' and 'quiet'. Now add 'consoleblank=0' just before the last " on the line. DO NOT include the ' in the 'consoleblank=0' add.

Now make a new grub.cfg using the line below.

grub2-mkconfig -o /boot/grub2/grub.cfg

If using efi then use this line to make new grub.cfg

grub2-mkconfig -o /boot/efi/EFI/centos/grub.cfg


Now when you boot your server you will see all the boot messages.
**END Optional - Turn off console screen saver and display all boot messages.


NOW REPEAT all the steps above under base server installs for the other two server of rh-srv1 and rh-srv2, of course using the correct IP and hostname for each server.

------------------------------------
Now for the ipa server install
------------------------------------

Now its time to setup ipa on the ipa server and we will user srv1 as our first client.

On your ipa server.

# yum -y install ipa-server bind-dyndb-ldap ipa-server-dns

# ipa-server-install --setup-dns


The log file for this installation can be found in /var/log/ipaserver-install.log
==============================================================================
This program will set up the IPA Server.

This includes:
  * Configure a stand-alone CA (dogtag) for certificate management
  * Configure the Network Time Daemon (ntpd)
  * Create and configure an instance of Directory Server
  * Create and configure a Kerberos Key Distribution Center (KDC)
  * Configure Apache (httpd)
  * Configure DNS (bind)

To accept the default shown in brackets, press the Enter key.

WARNING: conflicting time&date synchronization service 'chronyd' will be disabled
in favor of ntpd

Enter the fully qualified domain name of the computer
on which you're setting up server software. Using the form
<hostname>.<domainname>
Example: master.example.com.


Server host name [rh-ipa.whittenberg.local]:

Warning: skipping DNS resolution of host rh-ipa.whittenberg.local
The domain name has been determined based on the host name.

Please confirm the domain name [whittenberg.local]:

The kerberos protocol requires a Realm name to be defined.
This is typically the domain name converted to uppercase.

Please provide a realm name [WHITTENBERG.LOCAL]:
Certain directory server operations require an administrative user.
This user is referred to as the Directory Manager and has full access
to the Directory for system management tasks and will be added to the
instance of directory server created for IPA.
The password must be at least 8 characters long.

Directory Manager password:
Password (confirm):

The IPA server requires an administrative user, named 'admin'.
This user is a regular system account used for IPA server administration.

IPA admin password:
Password (confirm):

Existing BIND configuration detected, overwrite? [no]: yes
Do you want to configure DNS forwarders? [yes]:
Enter an IP address for a DNS forwarder, or press Enter to skip: 8.8.8.8
DNS forwarder 8.8.8.8 added. You may add another.
Enter an IP address for a DNS forwarder, or press Enter to skip:
Checking DNS forwarders, please wait ...
Do you want to configure the reverse zone? [yes]:
Please specify the reverse zone name [10.168.192.in-addr.arpa.]:
Using reverse zone(s) 10.168.192.in-addr.arpa.

The IPA Master Server will be configured with:
Hostname:       rh-ipa.whittenberg.local
IP address(es): 192.168.10.30
Domain name:    whittenberg.local
Realm name:     WHITTENBERG.LOCAL

BIND DNS server will be configured to serve IPA domain with:
Forwarders:    8.8.8.8
Reverse zone(s):  10.168.192.in-addr.arpa.

Continue to configure the system with these values? [no]: yes

Install info scrolls by then at the end we see.

Setup complete

Next steps:
        1. You must make sure these network ports are open:
                TCP Ports:
                  * 80, 443: HTTP/HTTPS
                  * 389, 636: LDAP/LDAPS
                  * 88, 464: kerberos
                  * 53: bind
                UDP Ports:
                  * 88, 464: kerberos
                  * 53: bind
                  * 123: ntp

        2. You can now obtain a kerberos ticket using the command: 'kinit admin'
           This ticket will allow you to use the IPA tools (e.g., ipa user-add)
           and the web user interface.

Be sure to back up the CA certificates stored in /root/cacert.p12
These files are required to create replicas. The password for these
files is the Directory Manager password

# kinit admin
Password for admin@WHITTENBERG.LOCAL:

# ipa user-find admin

--------------
1 user matched
--------------
  User login: admin
  Last name: Administrator
  Home directory: /home/admin
  Login shell: /bin/bash
  UID: 1546000000
  GID: 1546000000
  Account disabled: False
  Password: True
  Kerberos keys available: True
----------------------------
Number of entries returned 1
----------------------------

# ipa user-add
First name: ldapuser1
Last name: ldapuser1
User login [lldapuser1]: ldapuser1
----------------------
Added user "ldapuser1"
----------------------
  User login: ldapuser1
  First name: ldapuser1
  Last name: ldapuser1
  Full name: ldapuser1 ldapuser1
  Display name: ldapuser1 ldapuser1
  Initials: ll
  Home directory: /home/ldapuser1
  GECOS: ldapuser1 ldapuser1
  Login shell: /bin/sh
  Kerberos principal: ldapuser1@WHITTENBERG.LOCAL
  Email address: ldapuser1@whittenberg.local
  UID: 1546000001
  GID: 1546000001
  Password: False
  Member of groups: ipausers
  Kerberos keys available: False
 
# ls -lsa /etc/ipa/
total 24
 0 drwxr-xr-x.   6 root root   89 Oct 20 20:02 .
12 drwxr-xr-x. 147 root root 8192 Oct 20 20:02 ..
 4 -r--r--r--.   1 root root 1337 Oct 20 20:01 ca.crt
 4 -rw-r--r--.   1 root root  321 Oct 20 20:00 default.conf
 0 drwxr-xr-x.   2 root root   76 Oct 20 20:02 dnssec
 4 drwxr-xr-x.   2 root root 4096 Oct 20 19:52 html
 0 drwxr-xr-x.   2 root root   51 Oct 20 20:01 kdcproxy
 0 drwxr-xr-x.   2 root root   69 Oct 20 20:02 nssdb

# cat /etc/ipa/ca.crt
-----BEGIN CERTIFICATE-----
MIIDoDCCAoigAwIBAgIBATANBgkqhkiG9w0BAQsFADA8MRowGAYDVQQKDBFXSElU
VEVOQkVSRy5MT0NBTDEeMBwGA1UEAwwVQ2VydGlmaWNhdGUgQXV0aG9yaXR5MB4X
DTE2MTAyMTAzMDAwNFoXDTM2MTAyMTAzMDAwNFowPDEaMBgGA1UECgwRV0hJVFRF
TkJFUkcuTE9DQUwxHjAcBgNVBAMMFUNlcnRpZmljYXRlIEF1dGhvcml0eTCCASIw
DQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANC2wYqkiEwRY/YUY5cyDTEh+OaK
tU8KtPEeyAOhE8COugNYUZhx8bvoJyM7c7KGzxU/nuY4MAYF6sMOslIcaAHR7S4A
Wi+1URBFI8xsCoO7YktVoyTkV0sNY93dUlK+dpKNnL7P1oDJlcqDWflne/BG0h4i
gq5NRRdWQvh33yJAriBNSw2AIYvuQMiMQ1kdFqQ/T5VjQUU+L20QGE2Ox7AnHkYd
Tovn+Alok8FIqbDNqIn4VNsz0Zy010eHC7zmRK/kiWrnauf+r/JHi3zGz9GVKtUE
3swEE4dXejA7SAd03ZnmF2oruJ+o5u3ZwK4bN8S9dKuZZTaXxjSbT+FbM3MCAwEA
AaOBrDCBqTAfBgNVHSMEGDAWgBRO+0W/EXt3Qbkun00PARxow2PUvjAPBgNVHRMB
Af8EBTADAQH/MA4GA1UdDwEB/wQEAwIBxjAdBgNVHQ4EFgQUTvtFvxF7d0G5Lp9N
DwEcaMNj1L4wRgYIKwYBBQUHAQEEOjA4MDYGCCsGAQUFBzABhipodHRwOi8vcmgt
aXBhLndoaXR0ZW5iZXJnLmxvY2FsOjgwL2NhL29jc3AwDQYJKoZIhvcNAQELBQAD
ggEBAGGiKMrGrcCAtRVfKdA2f4Ko1FpIKKUsEMG4yyBxio//HxDja8X0MUzG7RWQ
3xKvkcNO08zFNd5/5YCiboy5RRrz4N/fIVFZDjJhLjwT9UQx1nktETLl/oirVSp4
e3z7Tc6m+4gpPABM7ryVNkQfdNCka82rLnzny5+U/YsZ2mGcl86MQ6T2U/0RXBHj
9QZVmVRJe7mTJzNW62rSsh6D7u2RBffZIQ7I/Huk5HFiDI9mogtizpb1Miwr5Vhb
uy+bVmPaHJfy/bHbVv8Vg3m0dKbP6bhS0lafnfWXF1iCmako0n0v2+T7IzwScW2Y
G94EkYeftqGg9LiFAogEEKZnuGg=
-----END CERTIFICATE-----

# klist
Ticket cache: KEYRING:persistent:0:0
Default principal: admin@WHITTENBERG.LOCAL

Valid starting       Expires              Service principal
10/20/2016 20:09:13  10/21/2016 20:07:42  HTTP/rh-ipa.whittenberg.local@WHITTENBERG.LOCAL
10/20/2016 20:07:48  10/21/2016 20:07:42  krbtgt/WHITTENBERG.LOCAL@WHITTENBERG.LOCAL

# cat /etc/resolv.conf
search whittenberg.local
nameserver 127.0.0.1


vi /etc/resolv.conf (change to nameserver 192.168.10.30)

# cat /etc/resolv.conf
search whittenberg.local
nameserver 192.168.10.30


Next you can use the Firefox browser on your ipa server and browse the server.

https://rh-ipa.whittenberg.local

Supply username and password. User name is admin.

Click on Network Services then DNS->DNS Zones, then click on whittenberg.local.

Click Add button. Add your servers here like rh-srv1 and rh-srv2. include name, IP address, and select Create Reverse. Like:

name = rh-srv1
Address = 192.168.10.31
Check mark on Create Reverse

and

name = rh-srv2
Address = 192.168.10.32
Check mark on Create Reverse

------------------------------------
Now for the ipa client installs
------------------------------------

On rh-srv1.whittenberg.local server.

[root@rh-srv1 ~]# cat /etc/hostname
rh-srv1.whittenberg.local

[root@rh-srv1 ~]# cat /etc/hosts
127.0.0.1   localhost localhost.localdomain localhost4 localhost4.localdomain4
::1         localhost localhost.localdomain localhost6 localhost6.localdomain6
192.168.10.31   rh-srv1.whittenberg.local rh-srv1

[root@rh-srv1 ~]# cat /etc/resolv.conf
# Generated by NetworkManager
search whittenberg.local
nameserver 192.168.10.1
nameserver 2001:578:3f::30
nameserver 2001:578:3f:1::30

Now change the nameserver in /etc/resolv.conf from 192.168.10.1, as shown above, to 192.168.10.30, as shown below.

[root@rh-srv1 ~]# cat /etc/resolv.conf
# Generated by NetworkManager
search whittenberg.local
nameserver 192.168.10.30
nameserver 2001:578:3f::30
nameserver 2001:578:3f:1::30


Install the ipa client.

[root@rh-srv1 ~]# yum -y install ipa-client

Now run the install/setup of the ipa client.

[root@rh-srv1 ~]# ipa-client-install
WARNING: ntpd time&date synchronization service will not be configured as
conflicting service (chronyd) is enabled
Use --force-ntpd option to disable it and force configuration of ntpd

Discovery was successful!
Client hostname: rh-srv1.whittenberg.local
Realm: WHITTENBERG.LOCAL
DNS Domain: whittenberg.local
IPA Server: rh-ipa.whittenberg.local
BaseDN: dc=whittenberg,dc=local

Continue to configure the system with these values? [no]: yes
Skipping synchronizing time with NTP server.
User authorized to enroll computers: admin
Password for admin@WHITTENBERG.LOCAL:
Successfully retrieved CA cert
    Subject:     CN=Certificate Authority,O=WHITTENBERG.LOCAL
    Issuer:      CN=Certificate Authority,O=WHITTENBERG.LOCAL
    Valid From:  Fri Oct 21 03:00:04 2016 UTC
    Valid Until: Tue Oct 21 03:00:04 2036 UTC

Enrolled in IPA realm WHITTENBERG.LOCAL
Created /etc/ipa/default.conf
New SSSD config will be created
Configured sudoers in /etc/nsswitch.conf
Configured /etc/sssd/sssd.conf
Configured /etc/krb5.conf for IPA realm WHITTENBERG.LOCAL
trying https://rh-ipa.whittenberg.local/ipa/json
Forwarding 'ping' to json server 'https://rh-ipa.whittenberg.local/ipa/json'
Forwarding 'ca_is_enabled' to json server 'https://rh-ipa.whittenberg.local/ipa/json'
Systemwide CA database updated.
Added CA certificates to the default NSS database.
Adding SSH public key from /etc/ssh/ssh_host_rsa_key.pub
Adding SSH public key from /etc/ssh/ssh_host_ecdsa_key.pub
Adding SSH public key from /etc/ssh/ssh_host_ed25519_key.pub
Forwarding 'host_mod' to json server 'https://rh-ipa.whittenberg.local/ipa/json'
SSSD enabled
Configured /etc/openldap/ldap.conf
Configured /etc/ssh/ssh_config
Configured /etc/ssh/sshd_config
Configuring whittenberg.local as NIS domain.
Client configuration complete.



Setup the server to auto create home directories for ipa users when first login from the server.

[root@rh-srv1 ~]# authconfig --enablemkhomedir --update
getsebool:  SELinux is disabled



Now logout as local user root and back in as ipa user admin.

[root@rh-srv1 ~]# logout

login as: admin
admin@192.168.10.31's password:
Creating home directory for admin.
[admin@rh-srv1 ~]$

[admin@rh-srv1 ~]$ pwd
/home/admin

[admin@rh-srv1 ~]$ whoami
admin

[admin@rh-srv1 ~]$ ping rh-ipa
PING rh-ipa.whittenberg.local (192.168.10.30) 56(84) bytes of data.
64 bytes from rh-ipa.whittenberg.local (192.168.10.30): icmp_seq=1 ttl=64 time=0.084 ms
64 bytes from rh-ipa.whittenberg.local (192.168.10.30): icmp_seq=2 ttl=64 time=0.084 ms
^C
--- rh-ipa.whittenberg.local ping statistics ---
2 packets transmitted, 2 received, 0% packet loss, time 999ms
rtt min/avg/max/mdev = 0.084/0.084/0.084/0.000 ms

Now you should be able to ssh into the rh-ipa server without supplying credentials if still login as admin on rh-srv1.

[admin@rh-srv1 ~]$ ssh rh-ipa
Could not chdir to home directory /home/admin: No such file or directory
-bash-4.2$


It worked! Looks like we have home dir issue for ipa user admin on the ipa server though. Lets try and take care of that. First exit back to rh-srv1.

-bash-4.2$ exit
logout
Connection to rh-ipa closed.
[admin@rh-srv1 ~]$


Now ssh to rh-ipa as local user root.

[admin@rh-srv1 ~]$ ssh root@rh-ipa
root@rh-ipa's password:
Last failed login: Fri Oct 21 22:40:19 MST 2016 from 192.168.10.31 on ssh:notty
There was 1 failed login attempt since the last successful login.
Last login: Thu Oct 20 21:19:20 2016 from 192.168.10.5
[root@rh-ipa ~]#


Setup the server to auto create home directories for ipa users when first login from the server.

[root@rh-srv1 ~]# authconfig --enablemkhomedir --update
Now exit back to rh-srv1.

[root@rh-ipa ~]# exit
logout
Connection to rh-ipa closed.
[admin@rh-srv1 ~]$


Now ssh back in to rh-ipa as ipa user admin.

[admin@rh-srv1 ~]$ ssh rh-ipa
Creating home directory for admin.
Last login: Fri Oct 21 22:36:53 2016 from 192.168.10.31
[admin@rh-ipa ~]$ pwd
/home/admin
[admin@rh-ipa ~]$



That solved the problem!!


NOW REPEAT all the steps above in ipa client install section for rh-srv2, of course using the correct IP and hostname for each server.

Thats it folks. Enjoy!















Thursday, October 20, 2016

RHCSA Lab setup using CentOS 7

RHCSA Lab setup using CentOS 7

I will using the CentOS-7-x86_64-Everything.iso for the installs in my VMware vSphere Client 6.0 and ESXi 6.0. Each Server gets 2 Cores, 2GB Ram, 25GB disk, and 1 NIC.

Servers names and IP addresses will be:
ipa.whittenberg.local 192.168.10.39
srv1.whittenberg.local 192.168.10.40
srv2.whittenberg.local 192.168.10.41

My Local LAN router is 192.168.10.1 and i will use this for my gateway out and DNS server.

At the CentOS 7 install I set my Network and Hostname.

Click on Network and Hostname on home screen.
Hostname: rh-ipa.whittenberg.local
Click slider to turn ethernet adapter ON. This gives me an IP from my DHCP server from my local LAN router.
Click the Configure button.
[General]
click on Automatically connect to this network
[IPv4 Settings]
Method: Manual
Addresses, click add button
address: 192.168.10.39
netmask: 24
gateway: 192.168.10.1
DNS server: 192.168.10.1
Click Save button
Click Done button

You should now be able to ping 192.168.10.39 from your workstation on the LAN.

Click on  Date & Time from the home screen.
Chose your region and city.
Make sure Network Time slider shows ON.
Click on gears next to slider. Time servers should be green. If red then you are unable to reach them.
Click Done button.

Click on Software Selection from home screen.
Select Minimal Install under Base Environment and nothing under Add-Ons.
Click Done button.

Click on Installation Destination from home screen.
Make sure white check mark on your hard disk.
Select I will configure partitioning.
Click Done button.
Click the + button and setup as follows.
/boot = 512MB
swap = 1024MB
/root = 24.5GB
Click Done button.
Accept Changes.

Now click the Begin Installation button.

Supply root password while the installation is taking place.

When finished click the Reboot button.

Putty/SSH into your server from your workstation.

Disable selinux.

cp /etc/sysconfig/selinux /etc/sysconfig/selinux.bak
sed -i 's/^SELINUX=.*/SELINUX=disabled/g' /etc/sysconfig/selinux
cat /etc/sysconfig/selinux

reboot

Disable and turn off firewalld.
   
systemctl disable firewalld
systemctl stop firewalld

cat or edit your /etc/hostname file and add the following entree if not there already.

ipa.whittenberg.local

cat or edit your /etc/hosts file and add the following entries if not there already.

192.168.10.39    ipa.whittenberg.local ipa

cat or edit your /etc/resolv.conf file and add the following entries if not there already.

search whittenberg.local
nameserver 192.168.10.1

Install additional packages I need on normal basis.

yum -y install bind-utils traceroute net-tools ntp* gcc glibc glibc-common gd gd-devel make net-snmp openssl-devel xinetd unzip libtool* make patch perl bison flex-devel gcc-c++ ncurses-devel flex libtermcap-devel autoconf* automake* autoconf libxml2-devel cmake sqlite* wget ntp* lm_sensors ncurses-devel qt-devel hmaccalc zlib-devel binutils-devel elfutils-libelf-devel wget bc gzip uuid* libuuid-devel jansson* libxml2* sqlite* openssl* lsof NetworkManager-tui mlocate yum-utils kernel-devel nfs-utils tcpdump git

yum -y groupinstall "Development Tools"

Now update the server.

yum -y update

reboot

**Optional - Install of GNOME Desktop.
yum -y groups install "GNOME Desktop"
yum -y update
systemctl set-default graphical.target
systemctl get-default

reboot and make sure GNOME Desktop starts.
**END Optional - Install of GNOME Desktop.

**Optional - Turn off console screen saver and display all boot messages.
vi /etc/default/grub and on the line starting with GRUB_CMDLINE_LINUX= remove 'rhgb' and 'quiet'. Now add 'consoleblank=0' just before the last " on the line. DO NOT include the ' in the 'consoleblank=0' add.

Now make a new grub.cfg using the line below.

grub2-mkconfig -o /boot/grub2/grub.cfg

If using efi then use this line to make new grub.cfg

grub2-mkconfig -o /boot/efi/EFI/centos/grub.cfg

Now when you boot your server you will see all the boot messages.
**END Optional - Turn off console screen saver and display all boot messages.


NOW REPEAT all the steps above for the other two servers, of course using the correct IP and hostname for each server.

Now its time to setup ipa on the ipa server and we will user srv1 as our first client. TO BE CONTINUED.

CentOS 7 clear cache

CentOS 7 clear cache

Clear dentries and inodes.

# sync; echo 2 > /proc/sys/vm/drop_caches

Clear PageCache, dentries and inodes.

# sync; echo 3 > /proc/sys/vm/drop_caches

Wednesday, October 19, 2016

CentOS 7 tigervnc install

CentOS 7 tigervnc install

This will get you basic remote access to your GUI desktop as user root.

# yum -y install tigervnc-server

Now run vncserver and supply the password you will use.

# vncserver

You will require a password to access your desktops.

Password:
Verify:
xauth:  file /root/.Xauthority does not exist

New 'server1.example.com:1 (root)' desktop is server1.example.com:1

Creating default startup script /root/.vnc/xstartup
Starting applications specified in /root/.vnc/xstartup
Log file is /root/.vnc/server1.example.com:1.log


Now from your client run your VNC viewer and use like the following for the server address

192.168.1.15:1

Saturday, October 15, 2016

CentOS 7 kernel upgrade using ELRepo. 4.8.1 as of 10/15/2016

CentOS 7 kernel upgrade using ELRepo. 4.8.1 as of 10/15/2016

AS root install the elrepo public key and RPM

rpm --import https://www.elrepo.org/RPM-GPG-KEY-elrepo.org
rpm -Uvh http://www.elrepo.org/elrepo-release-7.0-2.el7.elrepo.noarch.rpm

Enable the elrepo-kerenel

yum --enablerepo=elrepo-kernel

Install new kerenel

yum install kernel-ml

Reboot and run uname -r to see if on new kernel-ml

# uname -r
3.10.0-327.28.2.el7.x86_64


If still on old kernel, like above, make sure your default menu entry is on the correct entry.

Change default menu entry.

cat /boot/grub2/grub.cfg | grep menuentry

or

cat /boot/efi/EFI/centos/grub.cfg | grep menuentry (if using EFI)

And look for your 4.7 entry. My menu entry is the first one (or 0) so set it to that.

grub2-set-default 0

reboot

Now check version.

# uname -r
4.8.1-1.el7.elrepo.x86_64


If using btrfs remember to upgrade your btrfs-progs to current version as well

First check current version

# btrfs --version
btrfs-progs v3.19.1

Your btrfs-progs should match your kernel.

Uninstall you current btrfs-progs

yum -y remove btrfs-progs

Now install packages for new btrfs-progs

yum install libuuid-devel libattr-devel zlib-devel libacl-devel e2fsprogs-devel libblkid-devel lzo2-devel lzo-devel asciidoc xmlto git
yum -y groupinstall "Development Tools"

Now download, compile, and install new btrfs-progs

cd /root
git clone git://git.kernel.org/pub/scm/linux/kernel/git/kdave/btrfs-progs.git
cd btrfs-progs
./autogen.sh
./configure && make
make install

Now reboot and check versions

# uname -r
4.8.1-1.el7.elrepo.x86_64
# btrfs --version
btrfs-progs v4.8.1













Saturday, October 8, 2016

owncloud 9.1 install on CentOS 7


Fresh install CentOS 7 minimal.

Disable selinux and reboot server.

Update OS and then reboot.

yum -y update
reboot

Run the below command to install MariaDB server and client, httpd server, and PHP. We will use MariaDB to connect ownCloud to its own MySQL database.

yum -x php-mysqlnd -y install mariadb-server mariadb* httpd php* wget

Enable the services.

systemctl enable mariadb
systemctl enable httpd
systemctl start mariadb
systemctl start httpd

Check that these are installed and running.

php -v
systemctl status mariadb
systemctl status httpd

Secure you MySQL server (mariadb). In this example i set the password as mypassword.

mysql_secure_installation
Remove anonymous users? [Y/n] y
 ... Success!
Disallow root login remotely? [Y/n] n
 ... skipping.
Remove test database and access to it? [Y/n] y
 - Dropping test database...
 ... Success!
 - Removing privileges on test database...
 ... Success!
Reload privilege tables now? [Y/n] y
 ... Success!


Now log into mysql.

mysql -u root -p
Enter password:
Welcome to the MariaDB monitor.  Commands end with ; or \g.
Your MariaDB connection id is 10
Server version: 5.5.50-MariaDB MariaDB Server

Copyright (c) 2000, 2016, Oracle, MariaDB Corporation Ab and others.

Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.

MariaDB [(none)]> show databases;
+--------------------+
| Database           |
+--------------------+
| information_schema |
| mysql              |
| performance_schema |
+--------------------+
3 rows in set (0.00 sec)

MariaDB [(none)]> quit
Bye


Check the httpd service with your we browser.

http://your_ip_here/


Install owncloud 9.1

Run the following commands as root to trust the repository, install the repo, and install owncloud.

rpm --import https://download.owncloud.org/download/repositories/9.1/CentOS_7/repodata/repomd.xml.key
wget http://download.owncloud.org/download/repositories/9.1/CentOS_7/ce:9.1.repo -O /etc/yum.repos.d/ce:9.1.repo
yum clean expire-cache
yum -y install owncloud-files

Once done with the installation, browse to http://your_ip_here/owncloud/

At the bash shell cli create directory to store your data and change the permissions to that directory.

mkdir /owncloud
chown apache:apache /owncloud
chmod 771 /owncloud

Now back to the web UI of owncloud

Supply admin login and admin password.
Click on Storage & database drop down and supply path for data files, select MySQL/MariaDB and supply user root and root password for your MySQL database and choose owncloud for your database.


Install your clients and enjoy!