Skip to main content

Creating Local Repos in Server

Creating Local Repository on server.

mkdir -p /server/rpms

Copy 'rpms' which are downloaded and move to /server/rpms 

cp -rf from_rpms /server/rpms
createrepo /server/rpms

This will create all the necessary xml files in the directory. Next create a file called 'local_repos.repo

sudo vim /etc/yum/yum.repos.d/local_repos.repo

Add the below lines.
[LOCAL_REPO]
name=LOCAL_REPO
baseurl=file:///server/rpms
gpgcheck=0 
enabled=1 

Save the file in /etc/yum/yum.repos.d/ 

Comments