How To Install drupal7-xmlsitemap on CentOS 7
Introduction
In this tutorial we learn how to install drupal7-xmlsitemap
on CentOS 7.
What is drupal7-xmlsitemap
The XML sitemap module creates a sitemap that conforms to the sitemaps.org specification [1]. This helps search engines to more intelligently crawl a website and keep their results up to date. The sitemap created by the module can be automatically submitted to Ask, Google, Bing (formerly Windows Live Search), and Yahoo! search engines. The module also comes with several submodules that can add sitemap links for content, menu items, taxonomy terms, and user profiles. Please read the included README.txt [2], the handbook documentation [3], and the current list of known issues [4]for more information before using the module. This package provides the following Drupal modules * xmlsitemap * xmlsitemap_custom * xmlsitemap_engines * xmlsitemap_i18n * xmlsitemap_menu * xmlsitemap_node * xmlsitemap_taxonomy * xmlsitemap_user [1] http [2] https [3] https [4] https
We can use yum
or dnf
to install drupal7-xmlsitemap
on CentOS 7. In this tutorial we discuss both methods but you only need to choose one of method to install drupal7-xmlsitemap.
Install drupal7-xmlsitemap on CentOS 7 Using yum
Update yum database with yum
using the following command.
sudo yum makecache
After updating yum database, We can install drupal7-xmlsitemap
using yum
by running the following command:
sudo yum -y install drupal7-xmlsitemap
Install drupal7-xmlsitemap on CentOS 7 Using dnf
If you don’t have dnf installed you can install DNF on CentOS 7 first.
Update yum database with dnf
using the following command.
sudo dnf makecache
After updating yum database, We can install drupal7-xmlsitemap
using dnf
by running the following command:
sudo dnf -y install drupal7-xmlsitemap
How To Uninstall drupal7-xmlsitemap on CentOS 7
To uninstall only the drupal7-xmlsitemap
package we can use the following command:
sudo dnf remove drupal7-xmlsitemap
References
Summary
In this tutorial we learn how to install drupal7-xmlsitemap
on CentOS 7 using yum
and dnf
.