Skip to main content

Managing & Configuring YUM [Centos 6.0]

Yum Configuration


Hi Friends, we all have faced problems while configuring yum in RedHat, Fedora and Centos. Please find the below mention steps to use all the RPM packages come along with your distribution. Yum configuration will allow you to use them with proper dependency resolution.

To configure yum you must have two packages,
1. yum
2. createrepo

To obtain the same do the below mention just after you have mounted you disk.

There could be two conditions

a.) You have the distribution disk i.e. DVD. Please follow the below mention instructions to manage the same.
Your system mush have the greater or equal space of DVD.
# df -ah
User the partition which has the space and create a directory. In my case /mnt has the space.# mount /dev/dvdwriter /mnt
# cd /mnt/Packages/
# rpm -ivh yum-* --nodeps –force
# rpm -ivh vsftps* -y
# rpm -ivh createrepo* --nodeps --force
# cp -rpvf /mnt/* /var/ftp/pub

It will create the dump on /var/ftp/pub now we need to unmount the disk.
# umount /mnt
b.) You have an iso of you distribution. In that condition you need to mount it with loop so,
cd to iso location
It will mount the ISO to /mnt#mount -o loop rhel.iso /mnt
# cd /mnt/Packages/
# rpm -ivh yum-* --nodeps –force
# rpm -ivh vsftps* -y
# rpm -ivh createrepo* --nodeps --force

Copy packages folder to /var/ftp/pub
# cp -rpvh /mnt/Packages/* /var/ftp/pub


Now you have the dump of your distribution and you are ready to configure yum. To configure the same you must be aware of your hostname. Run the following command to know your hostname,

# hostname
CentOs

Now you have your host name create directories at /var/ftp/pub i.e. Server and VT by following command,

#mkdir -p Server; mkdir -p VT


You are ready to configure your Server and VT repos. Run the following command in order to generate the repos,

# createrepo -v Server ; createrepo -v VT

It will create the directory structure like /var/ftp/pub/Server/repodata & /var/ftp/pub/VT/repodata and a file repomd.xml under each. Configuration of yum is just a step ahead. Search a file like *debuginfo.repo* under /etc/yum/yum.repos.d/. Keep a copy of it for disaster and rename the same with a different command name,

# cp -rf *debuginfo.repo* `hostname`.repo

Edit the hostname.repo using your editor. I will you vim and will comment all the lines that are UN-commented and write new lines on it.# vim `hostname`.repo

#[debug]
#name=CentOS-6 - Debuginfo
#baseurl=http://debuginfo.centos.org/6/$basearch/
#gpgcheck=1
#gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-Debug-6
#enabled=0
#

[Server]
name=CentOs
baseurl=file:///var/ftp/pub/Server/
gpgcheck=0


[VT]
name=CentOs
baseurl=file:///var/ftp/pub/VT/
gpgcheck=0




Run yum clean all and you are done.

Thanks

Comments

Popular posts

Change password of mysql users

Change MySQL user's password in bulk Sometimes we need to change the password of mysql users at bulk. Lets say your company has fired a group of peoples or dissolved a project. This requirement can be supplied as : We can achieve the same by changing the password field in mysql.user table. Password() is a predifined method in mysql which generates encrypted value of a certain string. host update mysql.user set password = PASSWORD("passwd") where host IN (<Comma separated list of HostName/IP>); user update mysql.user set password = PASSWORD("passwd") where user IN (<Comma separated list of ‘user’@’host’>);

Hipchat and Icinga

Hipchat Notify 2.0 Hipchat notification with API 2.0 to be used with ICINGA/Nagios Table of Contents Table of Contents Author Audience Introduction Ruby Script Script used on server Service notification Host notification Change in command.conf for Icinga server Example notification Roadmap Author Shubhamkr619@gmail.com Audience System Engineers and operation engineers Introduction Change the default mail notification of Icinga server to hipchat notification using ruby code. This will allow a single place of management of all the notification and alerts across organization. Let that be service,host or business level alerts all can be managed and monitored using hipchat and hubot will give certain advantage over traditional alerting system. Proactive and reactive alerting Managed monitoring Single place of all the alerts Better communication and collaboration Integration with multiple tools in CI cycle Jenkins Chef ...

A few useful sql functions

Start mysql in Ubuntu without having root privilege:- If you want to use mysql in Ubutu you can use following command which will use a root level privilege   $ mysql -u root -p Enter password: Welcome to the MySQL monitor.  Commands end with ; or \g. Your MySQL connection id is 147 Server version: 5.1.49-1ubuntu8.1-log (Ubuntu) When it demands to enter the password fill it with 'root' and hopefully you'll get logged in .   Last_insert_id():- (with no argument) returns the first automatically generated value that was set for an AUTO_INCREMENT column by the most recently executed INSERT statement to affect such a column. For example, after inserting a row that generates an AUTO_INCREMENT value, you can get the value like this:   mysql> SELECT LAST_INSERT_ID(); Database():- Database() method returns the current selected database and you can use it in your communication and your queries. The syntax is :   mysql>select Database (); User():- It a...

Allowing users to have ssh access

Allowing users to have ssh access Hi Readers, It is one of the tasks we need to complete in order to allow users to log-in into your server without compromising your security. We are going to accomplish the following tasks, 1.) Allow the users for given domain only 2.) Must allow access to a given domain 3.) Block access for a specific domain. These questions are asked in RedHat certification examination RHCE6 We are going to complete the above mention task using iptables To give proper example we are taking 192.168.20.0/255.255.255.0 as our domain and 192.168.21.0/255.255.255.0 as other domain. Assuming that your system is a fresh installation we can remove all rules previously applied. # iptables -F  The above mention command will flush all the previously applied rules. Insert a rule in your input chain by below mention command, # iptables -I INPUT -s <ip of your domain>/<subnet mask> -p <protocal tcp/udp> --dport <port> -...

Add user in Sudoer file

The command sudo provides other users to run a command as a root. To use sudo user must have their level of privilege in /etc/sudoer file. In some cases this file is set for read only and others can edit that file and add their user name in Sudoer for this case such as Fedora 12 users need to provide this syntax as a root on their terminal. Syntax for adding a user in Sudoer file is: echo "username ALL=(ALL) NOPASSWD:ALL" >> /etc/sudoers And to gain the writing privilege you can use the following code in your terminal : chmod 755 /etc/sudoers This code will be enough to give permissions to the user and his user group. If you are an ubuntu user you can easily add your user in this file like: vi /etc/sudoers And you will get a text file. Afterward you need to press 'i' for edit and edit by adding your username just below "root ALL=(ALL) ALL" "username ALL=(ALL) ALL"

Enter your email address: