A Data Warehouse is a storage of an organization’s historical data. Usually, data warehouse is built to provide a decision support system to the management. Data warehouse can be mined (using data mining) and queried to collect overall and summarized business information that significantly helps in decision making. It can provide trends over many years. …
Category: FromSitesTree.com
Jul 26
Steps in Data Warehouse Design and Implementation #Data Warehouse #Data Warehouse – 001 #Data Warehouse #Data Warehouse Misc
Most BI projects usually fail. It is not due to the errors in the construction steps but due to the inappropriate design steps and methodologies. Waterfall method is not appropriate for BI. A method like developmental spiral may be more appropriate. Ref: [W. A. Giovinazzo ] Steps in developmental spiral: Definition, Analysis, Design, Development, …
Jul 25
AutoFS and Mounting in Linux/Redhat/CentOS #DevOps #RHCSA
AutoFS and Mounting in Linux/Redhat/CentOS echo “AutoFS – Automatic FS system Mounting – Dec 26th, 2017 by Sayed” check if Autofs installed or not yum list installed | grep autofs I just installed; hence it is there you can install with yum -y install autofs 944 yum -y install autofs then you can enable autofs …
Jul 25
Learn some Centos/Redhat Linux: RHCE: MariaDB Administration on Redhat/Fedora/CentOS #DevOps #RHCE
RHCE: MariaDB Administration on Redhat/Fedora/CentOS Check if mariaDB is installed or not 130 yum list installed | grep ^mariadb mariaDB originated from MySQL – after MySQL Got Bought by Oracle 133 yum list installed | grep ^mariadb I see – installed though not completely Output: mariadb-libs.x86_64 1:5.5.52-1.el7 @anaconda There are two other components: mariaDB – …
Jul 25
Experiment with SSH and TCP Wrappers #DevOps
The idea was : use two servers; server1, and server2 create user: user1 in both server1 and server2 use nmtui to assign IP Addresses to both use ifdown and ifup to check if IPs are assigned properly change /etc/hosts and add the server ips and names use ping to know that you can reach each …
Jul 25
Disk/Partition/Logical Volume (LVM) Management related commands in Centos/Redhat Linux #DevOps #RHCSA
echo “Dec 22nd 2017” 321 pvs 322 output 323 PV VG Fmt Attr PSize PFree 324 /dev/sda2 cl lvm2 a– 19.00g 0 325 pvs 326 vgs 327 lsblk 328 vgdisplay 329 vgdisplay | grep “PE Size” 330 PE Size 4.00 MiB 331 vgdisplay > vgdisplay20171222.txt 332 vgdisplay | grep ‘PE Size’> vgdisplay20171222.txt 333 lvs 334 …
Jul 25
Network Interface, Network Clients related Linux/Redhat/CentOS commands #DevOps #RHCSA
echo “Dec 24th, 2017” 532 echo “Basic Networking in Linux” 533 hostname 534 uname -a 535 uname -n 536 cat /etc/hostname 537 nmcli general hostname 538 changing hostname temporarily 539 hostname server10.example.com 540 for permanent change 541 hostnamectl set-hostname server100.example.com 542 or change /etc/hostname file 543 vim /etc/hostname 544 restart systemctl 545 systemctl restart systemd-hostnamed …
Jul 25
NTP related commands/Linux #DevOps #RHCSA
598 echo “dec 24th, 2017” 599 echo “NTP Client” 600 yum list ntp 601 yum list installed |grep ntp 602 To activate ntp 603 yum -y install ntp system-config-date 604 cat /etc/ntp.conf 605 grep ^server /etc/ntp.conf 606 systemctl restart ntpd 607 systemctl enable ntpd 608 systemctl start ntpd 609 ntpq -p 612 nmtui 613 ip …
Jul 25
Create your own yum repo in Centos/Redhat #DevOps #RHCSA
Yum is a software installation manager for Redhat Linux and Related. yum is a better tool than rpm. Here, we will take the rpm packages as come with Redhat/Centos and then we will host those packages on our own Repo Server for yum. i.e. yum will use this Repo to find installers rather than going …
Jul 25
Experiment with Firewalls in Linux (CentOS/RedHat) #DevOps #RHCSA
44 firewall-cmd –state 45 systemctl status firewalld 46 firewall-cmd –reload 47 systemctl restart firewalld.service systemctl restart firewalld 48 firewall-cmd –get-default-zone 49 firewall-cmd –get-active-zones 50 firewall-cmd –get-zones 51 firewall-cmd –get-zone-of-interface=ens33 52 firewall-cmd –list-all 53 firewall-cmd –list-all-zones 54 firewall-cmd –get-default-zone 55 firewall-cmd –get-active-zones 56 firewall-cmd –list-all 57 firewall-cmd –get-zones 58 firewall-cmd –list-all-zones 59 firewall-cmd –list-all –zone external …
