<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Fedora &#8211; lifeLinux: Linux Tips, Hacks, Tutorials, Ebooks</title>
	<atom:link href="https://lifelinux.com/tag/fedora/feed/" rel="self" type="application/rss+xml" />
	<link>https://lifelinux.com</link>
	<description>All About Linux !</description>
	<lastBuildDate>Fri, 30 Dec 2011 17:14:15 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=5.5.3</generator>
	<item>
		<title>How Do I Configure Apache Server To Listen Multiple Ports ?</title>
		<link>https://lifelinux.com/how-do-i-configure-apache-server-to-listen-multiple-ports/</link>
					<comments>https://lifelinux.com/how-do-i-configure-apache-server-to-listen-multiple-ports/#respond</comments>
		
		<dc:creator><![CDATA[lifeLinux]]></dc:creator>
		<pubDate>Fri, 30 Dec 2011 17:10:32 +0000</pubDate>
				<category><![CDATA[Apache]]></category>
		<category><![CDATA[WebServer]]></category>
		<category><![CDATA[/etc/httpd/conf/httpd.conf]]></category>
		<category><![CDATA[apache web server]]></category>
		<category><![CDATA[Fedora]]></category>
		<category><![CDATA[incoming requests]]></category>
		<category><![CDATA[number 80]]></category>
		<category><![CDATA[port 8080]]></category>
		<category><![CDATA[ports]]></category>
		<category><![CDATA[restart apache]]></category>
		<category><![CDATA[restart httpd]]></category>
		<category><![CDATA[tcp port 80]]></category>
		<guid isPermaLink="false">http://www.lifelinux.com/?p=1288</guid>

					<description><![CDATA[<p>By default Apache server listens on TCP port 80 but I&#8217;d like an Apache Web Server to listen on port 80 and port 8080. The following article explains how do I configure Apache server to listen multiple ports under CentOS Linux Server? To configure Apache server to listen multiple ports, you need to login as [&#8230;]</p>
<p>The post <a rel="nofollow" href="https://lifelinux.com/how-do-i-configure-apache-server-to-listen-multiple-ports/">How Do I Configure Apache Server To Listen Multiple Ports ?</a> appeared first on <a rel="nofollow" href="https://lifelinux.com">lifeLinux: Linux Tips, Hacks, Tutorials, Ebooks</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p></p><p>By default Apache server listens on TCP port 80 but I&#8217;d like an Apache Web Server to listen on port 80 and port 8080. The following article explains how do I configure Apache server to listen multiple ports under CentOS Linux Server?<br />
<span id="more-1288"></span><br />
To configure Apache server to listen multiple ports, you need to login as root and open configure file <strong>/etc/httpd/conf/httpd.conf</strong> and modify the Listen directive tells the server to accept incoming requests on the specified port.</p>
<pre># vi /etc/httpd/conf/httpd.conf</pre>
<p>Find line that read as follows:</p>
<pre>Listen 80</pre>
<p>Force Apache server to listen on both port 80 and 8080:</p>
<pre>Listen 80
Listen 8080</pre>
<p>And find the VirtualHost portion for your website config and add *:8080 as shown below:</p>
<pre>&lt;VirtualHost *:80 *:8080&gt;
...
&lt;/VirtualHost&gt;</pre>
<p>Save and close the file. Restart apache server:</p>
<pre># service httpd restart</pre>
<g:plusone href="https://lifelinux.com/how-do-i-configure-apache-server-to-listen-multiple-ports/" size="standard"  annotation="none"   ></g:plusone><p>The post <a rel="nofollow" href="https://lifelinux.com/how-do-i-configure-apache-server-to-listen-multiple-ports/">How Do I Configure Apache Server To Listen Multiple Ports ?</a> appeared first on <a rel="nofollow" href="https://lifelinux.com">lifeLinux: Linux Tips, Hacks, Tutorials, Ebooks</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://lifelinux.com/how-do-i-configure-apache-server-to-listen-multiple-ports/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>How To Restart Networking Service In Linux</title>
		<link>https://lifelinux.com/how-to-restart-networking-service-in-linux/</link>
					<comments>https://lifelinux.com/how-to-restart-networking-service-in-linux/#comments</comments>
		
		<dc:creator><![CDATA[lifeLinux]]></dc:creator>
		<pubDate>Fri, 16 Sep 2011 15:29:19 +0000</pubDate>
				<category><![CDATA[Networking]]></category>
		<category><![CDATA[Sys Admin]]></category>
		<category><![CDATA[/etc/init.d/network restart]]></category>
		<category><![CDATA[/etc/init.d/networking restart]]></category>
		<category><![CDATA[/etc/rc.d/rc.inet1 eth0_restart]]></category>
		<category><![CDATA[/etc/rc.d/rc.inet1 restart]]></category>
		<category><![CDATA[Fedora]]></category>
		<category><![CDATA[linux operating systems]]></category>
		<category><![CDATA[network interface]]></category>
		<category><![CDATA[networking service]]></category>
		<category><![CDATA[novell]]></category>
		<category><![CDATA[opensuse]]></category>
		<category><![CDATA[rhel]]></category>
		<category><![CDATA[root user]]></category>
		<category><![CDATA[slackware]]></category>
		<guid isPermaLink="false">http://www.lifelinux.com/?p=1220</guid>

					<description><![CDATA[<p>How to start/stop/restart networking service under Linux operating systems after making changes to IP configuration from a shell prompt ? Use the following commands as per your Linux distribution to start/stop/restart the networking service. RedHat / CentOS / Fedora To start networking service, enter # /etc/init.d/network start Or, # service network start To stop networking [&#8230;]</p>
<p>The post <a rel="nofollow" href="https://lifelinux.com/how-to-restart-networking-service-in-linux/">How To Restart Networking Service In Linux</a> appeared first on <a rel="nofollow" href="https://lifelinux.com">lifeLinux: Linux Tips, Hacks, Tutorials, Ebooks</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p></p><p>How to start/stop/restart networking service under Linux operating systems after making changes to IP configuration from a shell prompt ?<br />
<span id="more-1220"></span><br />
Use the following commands as per your Linux distribution to start/stop/restart the networking service.</p>
<h2>RedHat / CentOS / Fedora</h2>
<p>To start networking service, enter</p>
<pre># /etc/init.d/network start</pre>
<p>Or,</p>
<pre># service network start</pre>
<p>To stop networking service, enter</p>
<pre># /etc/init.d/network stop</pre>
<p>Or,</p>
<pre># service network stop</pre>
<p>To restart networking service, enter</p>
<pre># /etc/init.d/network restart</pre>
<p>Or,</p>
<pre># service network restart</pre>
<h2>Ubuntu / Debian</h2>
<p>To start networking service, enter</p>
<pre># sudo /etc/init.d/networking start</pre>
<p>Or,</p>
<pre># sudo service networking start</pre>
<p>To stop networking service, enter</p>
<pre># sudo /etc/init.d/networking stop</pre>
<p>Or,</p>
<pre># sudo service networking stop</pre>
<p>To restart networking service, enter</p>
<pre># sudo /etc/init.d/networking restart</pre>
<p>Or,</p>
<pre># service networking restart</pre>
<g:plusone href="https://lifelinux.com/how-to-restart-networking-service-in-linux/" size="standard"  annotation="none"   ></g:plusone><p>The post <a rel="nofollow" href="https://lifelinux.com/how-to-restart-networking-service-in-linux/">How To Restart Networking Service In Linux</a> appeared first on <a rel="nofollow" href="https://lifelinux.com">lifeLinux: Linux Tips, Hacks, Tutorials, Ebooks</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://lifelinux.com/how-to-restart-networking-service-in-linux/feed/</wfw:commentRss>
			<slash:comments>1</slash:comments>
		
		
			</item>
		<item>
		<title>Install RPM File On CentOS / RedHat</title>
		<link>https://lifelinux.com/install-rpm-file-on-centos-redhat/</link>
					<comments>https://lifelinux.com/install-rpm-file-on-centos-redhat/#respond</comments>
		
		<dc:creator><![CDATA[lifeLinux]]></dc:creator>
		<pubDate>Sun, 08 May 2011 10:53:15 +0000</pubDate>
				<category><![CDATA[Sys Admin]]></category>
		<category><![CDATA[Fedora]]></category>
		<category><![CDATA[grep command]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[linux system administrator]]></category>
		<category><![CDATA[linux yum commands]]></category>
		<category><![CDATA[package management system]]></category>
		<category><![CDATA[rhn]]></category>
		<category><![CDATA[rpm -ev]]></category>
		<category><![CDATA[rpm -ivh]]></category>
		<category><![CDATA[rpm -qa]]></category>
		<category><![CDATA[rpm -ql]]></category>
		<category><![CDATA[rpm command]]></category>
		<category><![CDATA[rpm uvh]]></category>
		<category><![CDATA[system updates]]></category>
		<category><![CDATA[yum]]></category>
		<category><![CDATA[yum command]]></category>
		<guid isPermaLink="false">http://www.lifelinux.com/?p=339</guid>

					<description><![CDATA[<p>rpm is a powerful Package Manager, which can be used to build, install, query, verify, update, and erase individual software packages. A package consists of an archive of files and meta-data used to install and erase the archive files. The meta-data includes helper scripts, file attributes, and descriptive information about the package. Packages come in [&#8230;]</p>
<p>The post <a rel="nofollow" href="https://lifelinux.com/install-rpm-file-on-centos-redhat/">Install RPM File On CentOS / RedHat</a> appeared first on <a rel="nofollow" href="https://lifelinux.com">lifeLinux: Linux Tips, Hacks, Tutorials, Ebooks</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p></p><p><strong>rpm</strong> is a powerful <strong>Package Manager</strong>, which can be used to build, install, query, verify, update, and erase individual software packages. A package consists of an archive of files and meta-data used to install and erase the archive files. The meta-data includes helper scripts, file attributes, and descriptive information about the package. Packages come in two varieties: binary packages, used to encapsulate software to be installed, and source packages, containing the source code and recipe necessary to produce binary packages.<br />
<span id="more-339"></span></p>
<h3>Install RPM File</h3>
<p>To install an rpm file, open a terminal and then type the following command:</p>
<pre>
[root@server2 ~]# rpm -ivh file.rpm
</pre>
<p><strong>Note:</strong><br />
-i: Installs a new package<br />
-v: Print verbose information &#8211; normally routine progress messages will be displayed.<br />
-h: Print 50 hash marks as the package archive is unpacked. Use with -v|&#8211;verbose for a nicer display.</p>
<h3>Upgrade RPM File</h3>
<pre>
[root@server2 ~]# rpm -Uvh file.rpm
</pre>
<p><strong>Note:</strong><br />
-U: Upgrades or installs the package currently installed to a newer version. This is the same as install, except all other version(s) of the package are removed after the new package is installed.</p>
<h3>Erase RPM File</h3>
<pre>
[root@server2 ~]# rpm -ev ile.rpm
</pre>
<p><strong>Note:</strong><br />
-e: Erase command<br />
The following options may also be used:</p>
<pre>
--nodeps
</pre>
<p>Don&#8217;t check dependencies before uninstalling the packages.</p>
<h3>List of all install packages</h3>
<p>Type the following command:</p>
<pre>
[root@server2 ~]# rpm -qa 
</pre>
<p>Sample outputs:</p>
<pre>
...
libxslt-devel-1.1.17-2.el5_2.2
perl-libwww-perl-5.805-1.1.1
libc-client-devel-2004g-2.2.1
libidn-devel-0.6.5-1.1
libjpeg-devel-6b-37
gmp-devel-4.1.4-10.el5
libmcrypt-devel-2.5.8-4.el5.centos
libtidy-0.99.0-12.20070228.el5.centos
libtool-ltdl-1.5.22-7.el5_4
gpg-pubkey-1aa78495-3eb24301
openssl-0.9.8e-12.el5_5.7
NetworkManager-glib-0.7.0-10.el5_5.2
perl-XML-NamespaceSupport-1.09-1.2.1
perl-XML-Filter-BufferText-1.01-1.2.el5.rf
perl-XML-Simple-2.14-4.fc6
rsnapshot-1.3.1-1.el5.rf
</pre>
<p>List the files and state the installed version of the package called package. Example</p>
<pre>
[root@server2 ~]# rpm -ql mysql-5.0.77-4.el5_5.5
</pre>
<p>Sample outputs:</p>
<pre>
/etc/ld.so.conf.d/mysql-i386.conf
/etc/my.cnf
/usr/bin/msql2mysql
/usr/bin/my_print_defaults
/usr/bin/mysql
/usr/bin/mysql_config
/usr/bin/mysql_find_rows
/usr/bin/mysql_tableinfo
/usr/bin/mysql_waitpid
/usr/bin/mysqlaccess
/usr/bin/mysqladmin
/usr/bin/mysqlbinlog
/usr/bin/mysqlcheck
/usr/bin/mysqldump
/usr/bin/mysqlimport
/usr/bin/mysqlshow
/usr/lib/mysql
</pre>
<p><strong>Read the man page</strong></p>
<pre>
[root@server2 ~]# man rpm
</pre>
<g:plusone href="https://lifelinux.com/install-rpm-file-on-centos-redhat/" size="standard"  annotation="none"   ></g:plusone><p>The post <a rel="nofollow" href="https://lifelinux.com/install-rpm-file-on-centos-redhat/">Install RPM File On CentOS / RedHat</a> appeared first on <a rel="nofollow" href="https://lifelinux.com">lifeLinux: Linux Tips, Hacks, Tutorials, Ebooks</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://lifelinux.com/install-rpm-file-on-centos-redhat/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>chkconfig Command</title>
		<link>https://lifelinux.com/chkconfig-command/</link>
					<comments>https://lifelinux.com/chkconfig-command/#comments</comments>
		
		<dc:creator><![CDATA[lifeLinux]]></dc:creator>
		<pubDate>Tue, 23 Nov 2010 17:24:13 +0000</pubDate>
				<category><![CDATA[Bash Shell]]></category>
		<category><![CDATA[CentOS]]></category>
		<category><![CDATA[chkconfig command]]></category>
		<category><![CDATA[enterprise linux]]></category>
		<category><![CDATA[Fedora]]></category>
		<category><![CDATA[init script]]></category>
		<category><![CDATA[rhel 5]]></category>
		<category><![CDATA[system administrators]]></category>
		<category><![CDATA[update-rc.d]]></category>
		<guid isPermaLink="false">http://www.lifelinux.com/?p=103</guid>

					<description><![CDATA[<p>chkconfig provides a  simple  command-line  tool  for  maintaining  the/etc/rc[0-6].d  directory  hierarchy by relieving system administrators of the task of directly manipulating the  numerous  symbolic  links  in those directories. chkconfig has five distinct functions: adding new services for  management,  removing  services  from management, listing the current startup information for services, changing the  start-up  information  for  services, [&#8230;]</p>
<p>The post <a rel="nofollow" href="https://lifelinux.com/chkconfig-command/">chkconfig Command</a> appeared first on <a rel="nofollow" href="https://lifelinux.com">lifeLinux: Linux Tips, Hacks, Tutorials, Ebooks</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p></p><p><strong>chkconfig</strong> provides a  simple  command-line  tool  for  maintaining  the/etc/rc[0-6].d  directory  hierarchy by relieving system administrators of the task of directly manipulating the  numerous  symbolic  links  in those directories.<span id="more-103"></span></p>
<p>chkconfig has five distinct functions: adding new services for  management,  removing  services  from management, listing the current startup information for services, changing the  start-up  information  for  services, and checking the start-up state of a particular service.</p>
<h2>Synopsis</h2>
<pre>chkconfig --list [name]
chkconfig --add name
chkconfig --del name
chkconfig [--level levels] name &lt;on|off|reset&gt;
chkconfig [--level levels] name
</pre>
<h2>Example</h2>
<p>List status for all services</p>
<pre>chkconfig --list
</pre>
<p>List status for test service</p>
<pre>chkconfig --list test
</pre>
<p>Add service called test</p>
<pre>chkconfig --add test
</pre>
<p>Delete service called test</p>
<pre>chkconfig --del test
</pre>
<p>Turn on &amp; Turn off service</p>
<pre>chkconfig --level 3 5 httpd off
</pre>
<p>The command above will turn off httpd service in <a href="http://www.lifelinux.com/linux-runlevels/">run levels</a> 3 and 5.</p>
<g:plusone href="https://lifelinux.com/chkconfig-command/" size="standard"  annotation="none"   ></g:plusone><p>The post <a rel="nofollow" href="https://lifelinux.com/chkconfig-command/">chkconfig Command</a> appeared first on <a rel="nofollow" href="https://lifelinux.com">lifeLinux: Linux Tips, Hacks, Tutorials, Ebooks</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://lifelinux.com/chkconfig-command/feed/</wfw:commentRss>
			<slash:comments>1</slash:comments>
		
		
			</item>
	</channel>
</rss>
