Author Archives: vicki

About vicki

Welcome to the Sovereign Republic of Vickistan. I am the President here. Lucky me! No taxes or laws yet. Lucky you!

How to determine the RHEL version

[root@vickistan ~]# cat /etc/redhat-release CentOS release 6.6 (Final) If that doesn’t produce results, try this: [root@vickistan ~]# lsb_release -i -r Distributor ID: RedHatEnterpriseServer Release: 5.5

Posted in Linux | Comments Off on How to determine the RHEL version

How to check the version of an installed package

Ubuntu: dpkg -s PKGNAME Red Hat: rpm -q PKGNAME Arch Linux: pacman -Si PKGNAME

Posted in Linux | Comments Off on How to check the version of an installed package

Systemd

This is how to stop a running service temporarily: # systemctl stop servicename.service This stops it from starting at boot, but does not stop a running service: # systemctl disable servicename.service That also prevents it from being started by anything … Continue reading

Posted in Linux | Comments Off on Systemd

MySQL Indexing Stuff

#Determine whether a table is indexed show index from [table name] #Display a table’s index mysql> show index from mysql.user; +——-+————+———-+————–+————-+———–+————-+———-+——–+——+————+———+—————+ | Table | Non_unique | Key_name | Seq_in_index | Column_name | Collation | Cardinality | Sub_part | Packed | … Continue reading

Posted in Linux, MySQL | Comments Off on MySQL Indexing Stuff

How to create a local yum repository

Yum Server Side Take a look at the available repositories with the repolist option to yum: $yum repolist Loaded plugins: fastestmirror Loading mirror speeds from cached hostfile epel/metalink | 13 kB 00:00 * base: mirror.symnds.com * epel: epel.mirror.constant.com * extras: … Continue reading

Posted in Linux | Comments Off on How to create a local yum repository

Understanding rpm Verify output

rpm -V output: S file Size differs M Mode differs (includes permissions and file type) 5 MD5 sum differs D Device major/minor number mismatch L readLink(2) path mismatch U User ownership differs G Group ownership differs T mTime differs

Posted in Linux | Comments Off on Understanding rpm Verify output

Differences in useradd command in different Linux Distributions

In Ubuntu and Debian: By default, each user in Debian GNU/Linux is given a corresponding group with the same name. In RedHat/CentOS,Gentoo If not specified, the behavior of useradd will depend on the USERGROUPS_ENAB variable in /etc/login.defs. If this variable … Continue reading

Posted in Linux | Comments Off on Differences in useradd command in different Linux Distributions

Basic GIT stuff

Git stuff Conceptual description: http://www.sbf5.com/~cduan/technical/git/git-1.shtml **HEAD is the name given to the commit from which the working tree’s current state was initialized. git rebase allows you to pull changes from master into your development branch, but leave all of your … Continue reading

Posted in Linux | Comments Off on Basic GIT stuff

Lsyncd installation and configuration

Overview This article describes how to use lsyncd as a sync’ing mechanism for multiple web servers data directories. This is only one scenario in which this program could be very useful for our customers. These notes will provide instructions on … Continue reading

Posted in Linux | Comments Off on Lsyncd installation and configuration

Allow ssh only as a single user or from specific IPs

The following are the relevant config bits in /etc/ssh/sshd_config # disable password authentication globally PasswordAuthentication no Either by username: # now re-enable it down at the very end of the sshd_config file like thus Match User rack PasswordAuthentication yes or … Continue reading

Posted in Linux, SSH | Comments Off on Allow ssh only as a single user or from specific IPs