Set up the hostname of ansible server to ansible.localdomain Install the ansible package yum install ansible Add servers (master,infra,worker) to /etc hosts. [root@ansible ~]# cat /etc/hosts 127.0.0.1 localhost localhost.localdomain localhost4 localhost4.localdomain4 ::1 localhost localhost.localdomain localhost6 localhost6.localdomain6 192.168.217.10 master 192.168.217.11 infra 192.168.217.12 worker1 Set up ansible.conf, uncomment the privilege_escalation parameters. [privilege_escalation] become=True become_method=sudo become_user=root become_ask_pass=False Create …
Category: Razorx.hu
jan 31
Preparation for openshit origin 3.7 install – part 1 – environment installation
Install Vmware workstation. Create a vm with nat network interfaces Install basic centos 7 Set up the network vi /etc/sysconfig/network-scripts/ifcfg-ens33 TYPE=Ethernet BOOTPROTO=none DEFROUTE=yes PEERDNS=yes PEERROUTES=yes IPADDR=<ip of ansible server> NETMASK=<your netmask> GATEWAY=<your gateway> NAME=ens33 UUID=cc1db5d0-d10e-463f-aac6-ea5a2140f3a1 DEVICE=ens33 ONBOOT=yes Set namserver on resolv.conf vi /etc/resolv.conf nameserver <your router ip address> Update the packages, add extra repos and …
jan 26
Fix missing intramfs on RHEL7
I found an interesting problem. After yum update, the kernel install run out error. After the reboot i received kernel panic. Solution: 1. Start the linux with the old kernel. 2. Create new initramfs with the following steps: 2.1 Create intirams: dracut -f -v –kver <kernel> (example: 3.10.0-693.11.6.el7.x86_64) 2.2 Update grub2: grub2-mkconfig -o /boot/grub2/grub.cfg 2.3 …
dec 28
Ansible and sed
febr 26
Windows8 + Debian 7.4 & KDE & VmWare Workstation 10.1 HU/EN/DE
Sziasztok! Ettől a poszttól 3 nyelven is fogok írni, nem azért mert annyi külföldi olvasóm lenne, hanem mert fokozni akarom a német tudásom és elkezdtem angolul is tanulni, így összeköthetem a kellemest a hasznossal. Aki eddig olvasta ezeket szerintem nem veszem el a kedvét, de ha annyira zavar titeket kommentben lehet savazni nyugodtan A Gép …
dec 09
Diszk foglaltság számoló
Sziasztok! Előfordulhat olyan eset, hogy a gépen valamilyen ok miatt nincs monitorozó rendszer, de azért valamilyen formában mégis szeretnétek a gép aktuális állapotáról képet kapni. Első körben erre írtam egy kis bash scriptet, ami a csatolt particiókról küld egy megfelelő limit felett emailt. a megadott helyre. Pl. a disk foglaltság a / partición 80% fölött …
szept 05