<?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>How to Do Things &#187; How to Find</title>
	<atom:link href="http://www.howany.com/c/how-to-find/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.howany.com</link>
	<description></description>
	<lastBuildDate>Sun, 29 Jan 2012 18:32:28 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.5</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>How to Find DNS</title>
		<link>http://www.howany.com/how-to-find-dns/</link>
		<comments>http://www.howany.com/how-to-find-dns/#comments</comments>
		<pubDate>Sat, 12 Dec 2009 05:19:58 +0000</pubDate>
		<dc:creator>editor</dc:creator>
				<category><![CDATA[How to Find]]></category>
		<category><![CDATA[DNS server]]></category>
		<category><![CDATA[finding DNS address on *nix system]]></category>
		<category><![CDATA[finding DNS on your windows system]]></category>
		<category><![CDATA[Finding you DNS]]></category>

		<guid isPermaLink="false">http://www.howany.com/?p=264</guid>
		<description><![CDATA[


A hierarchical naming system used for computers, resources, or any services connected to a private network or the internet is called the Domain Name System (DNS). It is used to associate various information for domain names which are assigned to each of the participants in the network. It translates the domain names to meaningful numerical identifiers (binary) which can [...]


Related posts:<ol><li><a href='http://www.howany.com/how-to-find-a-global-catalog-server/' rel='bookmark' title='Permanent Link: How to Find a Global Catalog Server'>How to Find a Global Catalog Server</a></li>
<li><a href='http://www.howany.com/how-to-register-nick-on-irc/' rel='bookmark' title='Permanent Link: How to Register Nick on IRC'>How to Register Nick on IRC</a></li>
<li><a href='http://www.howany.com/how-to-create-a-network/' rel='bookmark' title='Permanent Link: How to Create a Network'>How to Create a Network</a></li>
<li><a href='http://www.howany.com/how-to-run-chkdsk/' rel='bookmark' title='Permanent Link: How to Run Chkdsk'>How to Run Chkdsk</a></li>
<li><a href='http://www.howany.com/how-to-be-a-rockhopper/' rel='bookmark' title='Permanent Link: How to be a Rockhopper'>How to be a Rockhopper</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p style="float: right;margin: 4px;"><script type="text/javascript"><!--
google_ad_client = "pub-5750997503157155";
google_alternate_ad_url = "";
google_ad_width = 336;
google_ad_height = 280;
google_ad_format = "336x280_as";
google_ad_channel ="";
google_color_border = "FFFFFF";
google_color_bg = "FFFFFF";
google_color_link = "027AC6";
google_color_url = "494949";
google_color_text = "494949";
//--></script>
<script type="text/javascript" src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script>
</p><p style="text-align: justify;">A hierarchical naming system used for computers, resources, or any services connected to a private network or the internet is called the Domain Name System (DNS). It is used to associate various information for domain names which are assigned to each of the participants in the network. It translates the domain names to meaningful numerical identifiers (binary) which can be easily understood by humans enabling them to locate and connect to these addresses anywhere in the world. A good and often used analogy to understand Domain Name System is to think of it as a &#8216;phone book&#8217; of the internet, which translates computer host names into Internet Protocol addresses. Example www.howany.com translates to 216.75.9.92.</p>
<p><img src="/wp-content/uploads/2009/12/how-to-find-DNS.jpg" alt="how to find DNS" width="130" height="97" align="right"/><br />
<span id="more-264"></span></p>
<p style="text-align: justify;">Enabling people and applications to lookup addresses and records in the DNS table is the primary purpose of a DNS server. Most of the DNS servers in the world are private which means they can only be accessed by the internal network, that is, providing service only to the people inside the organizations who maintain or own them. Only a few DNS on the internet enable resolutions for any person who request it. Such Domain Name Servers are popularly called &#8216;Public DNS servers&#8217;. Most of the DNS servers which are public are public on purpose although some might have been accidentally mis configured by the system administrator. Such DNS servers are usually fixed quickly.</p>
<p style="text-align: justify;">To find your DNS you can follow these steps.</p>
<ul style="text-align: justify;">
<li>For *nix users (Linux/UNIX/Mac systems)</li>
</ul>
<p style="text-align: justify;">The C library contains a set of resolvers that are there to provide access to DNS on the internet. The resolver routines reads information from the resolver configuration file whenever they are invoked by any process.</p>
<p style="text-align: justify;">To see the address of your DNS server first type the following command in the shell prompt.</p>
<p style="text-align: justify;">$ sudo cat /etc/resolv.conf</p>
<p style="text-align: justify;">Alternatively you can type</p>
<p style="text-align: justify;">$ sudo less /etc/resolv.conf</p>
<p style="text-align: justify;">
<p style="text-align: justify;">nameserver 119.24.1.42</p>
<p style="text-align: justify;">nameserver 229.24.1.43</p>
<p style="text-align: justify;">Where,</p>
<p style="text-align: justify;">the nameserver 119.24.1.42 : is the nameserver IP address that the resolver should query. Every application that connects to the internet will use this particular IP address for DNS purpose.</p>
<p style="text-align: justify;">
<ul style="text-align: justify;">
<li>For windows users (Vista/NT/XP/2003 systems)</li>
</ul>
<p style="text-align: justify;">Click on the start menu and then click on run. Type in cmd and press the enter key to open up the command prompt (the run window can also be opened using the shortcut Winkey+R).</p>
<p style="text-align: justify;">Now type in the following command in the open DOS prompt</p>
<p style="text-align: justify;">C:&gt;ipconfig /all</p>
<p style="text-align: justify;">This command should show you your DNS server IP address and a lot of other information (IP address etc) related to networking on Windows.</p>
<p style="text-align: justify;">
<p style="text-align: justify;">Alternatively</p>
<p style="text-align: justify;">Click on Start button and then go to settings. Navigate to network connections (also present in the control panel). Now double click on the Local Area Connection (or whichever is your primary internet connection). Click on the properties button. Select the Internet Protocol (TCP/IP) option. Once again click on the properties and look for the preferred DNS server. It should open a box with your configuration which will display you DNS server.</p>
<p style="text-align: justify;">
<p style="text-align: justify;">
<p style="text-align: justify;">
Related Tags: how to find DNS<!-- SEO SearchTerms Tagging 2 Plugin --><p></p>

<p>Related posts:<ol><li><a href='http://www.howany.com/how-to-find-a-global-catalog-server/' rel='bookmark' title='Permanent Link: How to Find a Global Catalog Server'>How to Find a Global Catalog Server</a></li>
<li><a href='http://www.howany.com/how-to-register-nick-on-irc/' rel='bookmark' title='Permanent Link: How to Register Nick on IRC'>How to Register Nick on IRC</a></li>
<li><a href='http://www.howany.com/how-to-create-a-network/' rel='bookmark' title='Permanent Link: How to Create a Network'>How to Create a Network</a></li>
<li><a href='http://www.howany.com/how-to-run-chkdsk/' rel='bookmark' title='Permanent Link: How to Run Chkdsk'>How to Run Chkdsk</a></li>
<li><a href='http://www.howany.com/how-to-be-a-rockhopper/' rel='bookmark' title='Permanent Link: How to be a Rockhopper'>How to be a Rockhopper</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.howany.com/how-to-find-dns/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to Find Happiness</title>
		<link>http://www.howany.com/how-to-find-happiness/</link>
		<comments>http://www.howany.com/how-to-find-happiness/#comments</comments>
		<pubDate>Sat, 12 Dec 2009 09:14:20 +0000</pubDate>
		<dc:creator>editor</dc:creator>
				<category><![CDATA[How to Find]]></category>
		<category><![CDATA[being happy]]></category>
		<category><![CDATA[happiness]]></category>
		<category><![CDATA[how to be happy]]></category>
		<category><![CDATA[secret of happiness]]></category>

		<guid isPermaLink="false">http://www.howany.com/?p=276</guid>
		<description><![CDATA[According to science happiness is a result of a chemical reaction happening in the brain. When endorphins and dopamine fill our pleasure center of our brain it brings joy and kills the pain. Usually the things that make us happy or feel good are things which help the species on the whole survive. Happiness is [...]


Related posts:<ol><li><a href='http://www.howany.com/how-to-be-happier/' rel='bookmark' title='Permanent Link: How to be Happier'>How to be Happier</a></li>
<li><a href='http://www.howany.com/how-to-prevent-depression/' rel='bookmark' title='Permanent Link: How to Prevent Depression'>How to Prevent Depression</a></li>
<li><a href='http://www.howany.com/how-to-simplify-life/' rel='bookmark' title='Permanent Link: How to Simplify Life'>How to Simplify Life</a></li>
<li><a href='http://www.howany.com/how-to-find-love/' rel='bookmark' title='Permanent Link: How to Find Love'>How to Find Love</a></li>
<li><a href='http://www.howany.com/how-to-be-debt-free/' rel='bookmark' title='Permanent Link: How to be Debt Free'>How to be Debt Free</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p style="text-align: justify; ">According to science happiness is a result of a chemical reaction happening in the brain. When endorphins and dopamine fill our pleasure center of our brain it brings joy and kills the pain. Usually the things that make us happy or feel good are things which help the species on the whole survive. Happiness is hence one of the tools to propagate our species. Many aspects or our being happy are hard wired by biology at birth. But there are many other factors which influence how happy we are in life. If fact practicing happiness like you would practice chess or football will lead to a better life. Here are some tips to be happy in life. Feel free to comment any other tips you might have.</p>
<p><span id="more-276"></span></p>
<p style="text-align: justify; ">Always remember happiness is a state of mind. Happiness stems from the state of our mind and not by having a big bank balance or our social status. Almost all of us have lead really happy lives and kids. Wherever we turned then there were new experiences which couldn&#8217;t be judged on the basis of past experiences. There was barely a sense of passing time and each moment was lived to the fullest in the present moment. Being less self aware we turned our thoughts ourward, and lived life to the fullest.</p>
<p><img src="/wp-content/uploads/2009/12/how-to-find-happiness.jpg" alt="how to find happiness"  width="127" height="113" align="right"/></p>
<ul style="text-align: justify; ">
<li>Be your own favorite child: Give yourself the attention that you would otherwise give to a small child. Eat well and eat healthy. Listen to yourself. Discipline yourself, take out time for yourself and exercise, play some games, meet your friends and always practice moderation. Love your self.</li>
<li>Make your own happiness: Decide what makes you happy. Do you like sports or spending time with yourself alone? Take out time to do this. Schedule yourself a planner and decide a time to take for yourself and do what makes you really happy. Live the moment to the fullest.</li>
<li>Kill the misery: Look at yourself and decide what makes you unhappy. Take a look at what emotions influence you the most. Is it sadness, anxiety or fear? Talk about your feelings to your closest friends. Do not isolate yourself.  Do not complain and gossip all the time. If there is a problem that has been bugging for a long time deal with it or chuck it. What you cant solve is not worth the trouble.</li>
<li>Journal all the good things: Keep a journal of all the nice things people have done for you. Feel grateful, they weren&#8217;t obliged to be nice, but they wanted to be. Write down daily the things that you are grateful about. Do not take your own life for granted, all life is precious.</li>
<li>Manage your emotions: Whenever you feel sad or depressed accept it as its a natural part of life. Know that without moments of sadness and anxiety, happiness and peace will have no value. Know that you are human and its inevitable to face all the emotions.</li>
<li>Feign happiness: Cast yourself as a happy person n life. Pretending to be happy leads to happiness. Smile at people around you and be cheerful and people will be cheerful to you. Laugh a few times a day, let yourself free.</li>
<li>Money: Money cant buy happiness. How many people who actually are extremely rich and yet perfectly happy? Know that money is not everything. Simplify your life. Live a quality life. Do what you do well and with great care and attention. This will bring about immense satisfaction.</li>
<li>Spontaneity: Live life as it happens, give yourself permission to be spontaneous. Be curious, inquisitive and amused, explore and let yourself free from worries. Give love freely. Enjoy life.</li>
<li>Practice happiness: Be it at home or at work, engage in activities that make you happy. Read a few funny cheery books  like Hitchhikers guide to the Galaxy. Play around and be a kid again. Let to ride a bi cycle, or climb a tree. Do what you always wanted to. Bring around a sense of playfulness in your life.</li>
</ul>
<p style="text-align: justify; ">And remember, always keep smiling, no matter what. This will not only bring happiness to yourself but also to everybody around you. A smile can change someones day.</p>


<p>Related posts:<ol><li><a href='http://www.howany.com/how-to-be-happier/' rel='bookmark' title='Permanent Link: How to be Happier'>How to be Happier</a></li>
<li><a href='http://www.howany.com/how-to-prevent-depression/' rel='bookmark' title='Permanent Link: How to Prevent Depression'>How to Prevent Depression</a></li>
<li><a href='http://www.howany.com/how-to-simplify-life/' rel='bookmark' title='Permanent Link: How to Simplify Life'>How to Simplify Life</a></li>
<li><a href='http://www.howany.com/how-to-find-love/' rel='bookmark' title='Permanent Link: How to Find Love'>How to Find Love</a></li>
<li><a href='http://www.howany.com/how-to-be-debt-free/' rel='bookmark' title='Permanent Link: How to be Debt Free'>How to be Debt Free</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.howany.com/how-to-find-happiness/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to Find Someone</title>
		<link>http://www.howany.com/how-to-find-someone/</link>
		<comments>http://www.howany.com/how-to-find-someone/#comments</comments>
		<pubDate>Mon, 14 Dec 2009 09:24:27 +0000</pubDate>
		<dc:creator>editor</dc:creator>
				<category><![CDATA[How to Find]]></category>
		<category><![CDATA[find friends]]></category>
		<category><![CDATA[find lost friends]]></category>
		<category><![CDATA[find someone]]></category>
		<category><![CDATA[finding people]]></category>
		<category><![CDATA[finding someone]]></category>

		<guid isPermaLink="false">http://www.howany.com/?p=290</guid>
		<description><![CDATA[There comes a point in life when you want to find a person who was perhaps once your friend or a partner with whom you have lost contact. Or it could be someone whom you never met in real life or even met at all. It could be a person who helped you become successful or you [...]


Related posts:<ol><li><a href='http://www.howany.com/how-to-trace-a-person/' rel='bookmark' title='Permanent Link: How to Trace a Person'>How to Trace a Person</a></li>
<li><a href='http://www.howany.com/how-to-trace-a-cell-phone/' rel='bookmark' title='Permanent Link: How to Trace a Cell Phone'>How to Trace a Cell Phone</a></li>
<li><a href='http://www.howany.com/how-to-use-the-internet/' rel='bookmark' title='Permanent Link: How to Use the Internet'>How to Use the Internet</a></li>
<li><a href='http://www.howany.com/how-to-get-ringtones/' rel='bookmark' title='Permanent Link: How to Get Ringtones'>How to Get Ringtones</a></li>
<li><a href='http://www.howany.com/how-to-save-google-maps/' rel='bookmark' title='Permanent Link: How to save Google maps'>How to save Google maps</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p style="text-align: justify; ">There comes a point in life when you want to find a person who was perhaps once your friend or a partner with whom you have lost contact. Or it could be someone whom you never met in real life or even met at all. It could be a person who helped you become successful or you real parents or even your sister or brother. The lesser you know about them, the harder it is to track them, but luckily we live in an age where information is freely available and where most people leave a trail online. Here are some ways which could help you find the person you were always looking for.</p>
<p><span id="more-290"></span></p>
<p style="text-align: justify; ">First step is to jot down what you know about the person like:</p>
<p><img src="/wp-content/uploads/2009/12/how-to-find-someone.png" alt="how to find someone"  width="88" height="128" align="right"/></p>
<ul style="text-align: justify; ">
<li>The persons name (last, first, middle, married, maiden or even nicknames)</li>
<li>Date of birth and age of the person.</li>
<li>All the address you are aware of.</li>
<li>Their school, college, past jobs etc.</li>
<li>Their likes and dislikes as well as habits.</li>
<li>anyone you know who could have met the same person like common friends or their neighbors etc.</li>
<li>Anything that you remember about them, however unimportant something might seem, write it down anyway, you never know whats useful and whats not.</li>
</ul>
<p style="text-align: justify; ">
<p style="text-align: justify; ">Look for the name:</p>
<p style="text-align: justify; ">Every time you can find a clue that can point to the person write it down. Put &#8220;quotation&#8221; marks around their name (each version of their name, nick name etc.) and search it up search engines such as google. The more the variations of the names you try and the more search engines you search on the higher the chances of finding more info on the person. If there is a possibility that the person has moved to another country, try the local search engine of that country, eg www.google.in or www.google.cn are googles local searches for India and China respectively.</p>
<p style="text-align: justify; ">If its a woman you are searching for she could have married someone and then changed her maiden name accordingly. Try looking on various social networking sites such as facebook , orkut or myspace etc.</p>
<p style="text-align: justify; ">Try searching on some people search engines. These allow you to find people freely. A good example is www.find-people-free-search.com which also happens to be a free service. You could stumble upon some very useful information using these.</p>
<p style="text-align: justify; ">Look up the persons phone number in search engines. If listed anywhere on Internet it will show up. Put the entire number in quotation marks to find exact matches. Try putting in periods, hyphens etc. which are commonly used to separate phone numbers.</p>
<p style="text-align: justify; ">Go and find the offices of organizations the person might have joined or had been associated with in the past. It could be their ex-church, a non profit company or even their old work place. Ask for the listing of their directory or at least check the persons name and the time they last showed up. Talk to their friends or work partners preset there. Ask them when was the last time they spoke with the person you are looking for and if they know where they moved to. Explain it to them why you are trying to find this person as they might be reluctant to give out details so as not to compromise on safety. Leave your phone number and name with these people just in case.</p>
<p style="text-align: justify; ">Post an advertisement. Print it in local newspapers or post online (example crageslist). Explain clearly why you are looking for them and also leave a number so people can get in touch with you. You could also make your own website using their name as a keyword. People tend to search their own names and if they do they could stumble across your site.</p>
<p style="text-align: justify; ">If all of the above fails look to hire a private investigator. You could just hire one right away if you do not have the time to tediously search around. Leaving it to a professional might also give you quicker results.</p>
Related Tags: how to find someone, how to find someone if they moved, how to find someone that moved<!-- SEO SearchTerms Tagging 2 Plugin -->

<p>Related posts:<ol><li><a href='http://www.howany.com/how-to-trace-a-person/' rel='bookmark' title='Permanent Link: How to Trace a Person'>How to Trace a Person</a></li>
<li><a href='http://www.howany.com/how-to-trace-a-cell-phone/' rel='bookmark' title='Permanent Link: How to Trace a Cell Phone'>How to Trace a Cell Phone</a></li>
<li><a href='http://www.howany.com/how-to-use-the-internet/' rel='bookmark' title='Permanent Link: How to Use the Internet'>How to Use the Internet</a></li>
<li><a href='http://www.howany.com/how-to-get-ringtones/' rel='bookmark' title='Permanent Link: How to Get Ringtones'>How to Get Ringtones</a></li>
<li><a href='http://www.howany.com/how-to-save-google-maps/' rel='bookmark' title='Permanent Link: How to save Google maps'>How to save Google maps</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.howany.com/how-to-find-someone/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>How to Find the Right Career</title>
		<link>http://www.howany.com/how-to-find-the-right-career/</link>
		<comments>http://www.howany.com/how-to-find-the-right-career/#comments</comments>
		<pubDate>Tue, 05 Jan 2010 05:48:13 +0000</pubDate>
		<dc:creator>editor</dc:creator>
				<category><![CDATA[How to Find]]></category>
		<category><![CDATA[career]]></category>
		<category><![CDATA[career guide]]></category>
		<category><![CDATA[choosing a career]]></category>
		<category><![CDATA[finding a career]]></category>

		<guid isPermaLink="false">http://www.howany.com/?p=508</guid>
		<description><![CDATA[
Career is a word which can be described as a progress or itinerary throughout the life of an individual.  It is basically considered as “formal education” or sometimes as “remunerative work”.  The word “career” has been derived from the Latin word “carrera”. “Carrera’ means “race” i.e. “rat race”. A career is a route of successive [...]


Related posts:<ol><li><a href='http://www.howany.com/how-to-plan-a-career-fair/' rel='bookmark' title='Permanent Link: How to Plan a Career Fair'>How to Plan a Career Fair</a></li>
<li><a href='http://www.howany.com/how-to-become-a-financial-adviser/' rel='bookmark' title='Permanent Link: How to Become a Financial Adviser'>How to Become a Financial Adviser</a></li>
<li><a href='http://www.howany.com/how-to-become-a-social-worker/' rel='bookmark' title='Permanent Link: How to Become a Social Worker'>How to Become a Social Worker</a></li>
<li><a href='http://www.howany.com/how-to-become-a-dog-trainer/' rel='bookmark' title='Permanent Link: How to Become a Dog Trainer'>How to Become a Dog Trainer</a></li>
<li><a href='http://www.howany.com/how-to-be-a-social-worker/' rel='bookmark' title='Permanent Link: How to be a Social Worker'>How to be a Social Worker</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p style="text-align: justify;">
<p style="text-align: justify;">Career is a word which can be described as a progress or itinerary throughout the life of an individual.  It is basically considered as “formal education” or sometimes as “remunerative work”.  The word “career” has been derived from the Latin word “carrera”. “Carrera’ means “race” i.e. “rat race”. A career is a route of successive situations, which builds up a person’s employment.  In the late 20<sup>th</sup> century, the increment in the choices of potential professions and more prevalent educations has allowed an individual to choose a career.  In the early 21<sup>st</sup> century, the individuals had a multiple or dual careers, they were confused in making choices, in this value the careers of the career advisor or career counselor have developed.  Earlier, before modernism, many people used to stick to a single lifetime position at their place of work, and the idea of recounting career had no meaning at all. Career became possible with the illumination of the idea of improvement for the self-betterment of individuals.</p>
<p><span id="more-508"></span></p>
<p style="text-align: justify;">Traditionally the idea of career has developed with development in order of hierarchy within an organizations or profession. An individual’s roles of life and work throughout their lifespan are referred to as career. This traditional version of career development makes it clear that people can progress in their career in both ways vertically as well as horizontally.</p>
<p style="text-align: justify;">
<p style="text-align: justify;">You are ready to head out in some workplace and want to get job training, but you still confused about what kind of profession you want. To get clear with your career decision and doubt, you can seek information from any career counselor or advisor.</p>
<p style="text-align: justify;">
<p style="text-align: justify;">Instructions:</p>
<p><img src="/wp-content/uploads/2010/01/how-to-find-the-right-career.png" alt="how to find the right career"  width="128" height="85" align="right"/></p>
<ul style="text-align: justify;">
<li>Read books on careers, you can easily find it in any local library. Several books have aptitude tests, which helps to divert your attention to career options, which you had never considered before.</li>
</ul>
<p style="text-align: justify;">
<p><img src="/wp-content/uploads/2010/01/how-to-find-Right-Career.jpg" alt="how to find Right Career"  width="120" height="108" align="right"/></p>
<ul style="text-align: justify;">
<li>Numerous books on career will teach you how to concentrate on right career and that will be really helpful for you.</li>
</ul>
<p style="text-align: justify;">
<ul style="text-align: justify;">
<li>Go to career advisor at a local institute or organizations get lots of information about your career doubt. These peoples are trained to help people who are unsure about their career choice.</li>
</ul>
<p style="text-align: justify;">
<ul style="text-align: justify;">
<li>They will help you in your career choice and provide material on a variety of career choice.</li>
</ul>
<p style="text-align: justify;">
<ul style="text-align: justify;">
<li>You can also ask your “state employment commission” office about the resources they have for career developments. They usually organize free classes, designed to find right career for individuals.</li>
<li>State employment commission also provides you information and training to enhance your skills.</li>
</ul>
<p style="text-align: justify;">
<ul style="text-align: justify;">
<li>You can also find information about right career online. On internet you will find lots of scholarship and college websites which have an entire sections dedicated to making the right career decisions.</li>
</ul>
<p style="text-align: justify;">
<ul style="text-align: justify;">
<li style="text-align: justify;">Some search engines also provide information about grants, scholarships and other funding aid, through which you can fund your studies if your career choice is that expensive.</li>
</ul>
Related Tags: confused about choice of carrer, confused in profession, confusion in making careers, confusion on career choice, how to determine right career, how to remove confusion about career<!-- SEO SearchTerms Tagging 2 Plugin -->

<p>Related posts:<ol><li><a href='http://www.howany.com/how-to-plan-a-career-fair/' rel='bookmark' title='Permanent Link: How to Plan a Career Fair'>How to Plan a Career Fair</a></li>
<li><a href='http://www.howany.com/how-to-become-a-financial-adviser/' rel='bookmark' title='Permanent Link: How to Become a Financial Adviser'>How to Become a Financial Adviser</a></li>
<li><a href='http://www.howany.com/how-to-become-a-social-worker/' rel='bookmark' title='Permanent Link: How to Become a Social Worker'>How to Become a Social Worker</a></li>
<li><a href='http://www.howany.com/how-to-become-a-dog-trainer/' rel='bookmark' title='Permanent Link: How to Become a Dog Trainer'>How to Become a Dog Trainer</a></li>
<li><a href='http://www.howany.com/how-to-be-a-social-worker/' rel='bookmark' title='Permanent Link: How to be a Social Worker'>How to be a Social Worker</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.howany.com/how-to-find-the-right-career/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to Find Love</title>
		<link>http://www.howany.com/how-to-find-love/</link>
		<comments>http://www.howany.com/how-to-find-love/#comments</comments>
		<pubDate>Thu, 21 Jan 2010 18:00:37 +0000</pubDate>
		<dc:creator>editor</dc:creator>
				<category><![CDATA[How to Find]]></category>
		<category><![CDATA[finding love]]></category>
		<category><![CDATA[guide to love]]></category>
		<category><![CDATA[looking for love]]></category>
		<category><![CDATA[love]]></category>

		<guid isPermaLink="false">http://www.howany.com/?p=754</guid>
		<description><![CDATA[

Love is a feeling with many emotions, which is related to a sense of care and affection. The word love has a many different meanings, which ranges from general pleasure to intense attraction. The diverse use and definitions of love, it is combined with complex feelings these feelings make it difficult to define love.

Love is [...]


Related posts:<ol><li><a href='http://www.howany.com/how-to-write-love-letter/' rel='bookmark' title='Permanent Link: How to Write Love Letter'>How to Write Love Letter</a></li>
<li><a href='http://www.howany.com/how-to-repair-damaged-relationship/' rel='bookmark' title='Permanent Link: How to Repair Damaged Relationship'>How to Repair Damaged Relationship</a></li>
<li><a href='http://www.howany.com/how-to-prevent-divorce/' rel='bookmark' title='Permanent Link: How to Prevent Divorce'>How to Prevent Divorce</a></li>
<li><a href='http://www.howany.com/how-to-be-happier/' rel='bookmark' title='Permanent Link: How to be Happier'>How to be Happier</a></li>
<li><a href='http://www.howany.com/how-to-nurture-relationships/' rel='bookmark' title='Permanent Link: How to Nurture Relationships'>How to Nurture Relationships</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p style="text-align: justify;">
<p style="text-align: justify;">
<p style="text-align: justify;">Love is a feeling with many emotions, which is related to a sense of care and affection. The word love has a many different meanings, which ranges from general pleasure to intense attraction. The diverse use and definitions of love, it is combined with complex feelings these feelings make it difficult to define love.</p>
<p><img src="/wp-content/uploads/2010/01/how-to-find-love1.png" alt="how to find love" width="128" height="93" align="right"/></p>
<p style="text-align: justify;">Love is a deep, indescribable feeling of care and affection for another person. Love has a limited concept it however has a variety of feelings attached to it, from the loving desire and closeness of romance to the companionable relationship of family and friendly love. Love also acts as a major catalyst of relationships. Love is also the most used theme for creative arts.</p>
<p><span id="more-754"></span></p>
<p style="text-align: justify;">The word love in English has a variety of meanings. Other languages use other words to explain the different concepts, but English language only uses the word love. Due to the cultural differences, it is very difficult to have a universal definition of love. If love is discussed in the abstract form, love is often referred as interpersonal form of love, it is an experience felt by two people. Love involves a lot care for another person, thing and even yourself. There are many famous and common proverbs of love. Philosopher Gottfried Leibniz said that love is “to be delighted by the happiness of another.”</p>
<p style="text-align: justify;">Love is of two types:</p>
<ul style="text-align: justify;">
<li>Impersonal Love: In this a person is said to be in love with an object or goal, if they value it a lot or are dedicated to it.</li>
<li>Interpersonal Love: This is love between two human beings. It is a stronger form of emotions, than just having a liking towards one another. Interpersonal love is between friends, family members, and couples.</li>
</ul>
<p style="text-align: justify;">Love also has many psychological disorders like erotomania. In the entire history, religion and philosophy have made many theories about love. Even the science of psychology has many theories about love in the past century.</p>
<p style="text-align: justify;">Finding your true love is easy. Here are a few steps on how to find love.</p>
<p style="text-align: justify;">Steps:</p>
<ul style="text-align: justify;">
<li>If you want to find true love do not search for it. This may sound crazy, how can you manage to find something that you are not at all looking for? The longer you look for it, it will continue to escape you. Your focus should be on not finding love.</li>
<li>If you are not happy with yourself, then you will never be happy with anyone else. Focus on yourself, if you want to find true love, love yourself first. The basic problem is many people do not do it. We often look for someone else to complete us. You should never the responsibility of your happiness on another person it is not fair. Depression loves company, so you would just be creating unlucky circumstances for your loved one. To be happy with someone else, you will have to make sure that you are happy with the way you are.</li>
<li>First, decide with what kind of a person do you want, and then decide if you will be able to attract that person. You cannot expect to attract a person who is completely different from you. Go out to clubs, hang out with friends, and see if you can find your mate there.</li>
<li>Always keep in mind that opposites attract. Your ideal person should be who is opposite from you. If one of you is shy, an extrovert partner will be a perfect match, if you are a planner, a spontaneous and creative partner will be good.</li>
<li>If you want to meet your ideal partner, go to places where you might not like to go, but your opposite partner may be there. Make sure that you are not completely different from each other you should have similar kind of dreams and goals.</li>
</ul>
<p style="text-align: justify;">Tips:</p>
<ul style="text-align: justify;">
<li>Never be afraid to take risks. Accept the dates that come your way, go for parties. You can also attend networking event. Always remember practice makes a man perfect.</li>
<li>You can also meet many people on the social networking sites.</li>
</ul>
<p style="text-align: justify;">
<p><a href="http://ad.doubleclick.net/click;h=v8/391a/0/0/%2a/g;44306;0-0;0;34280535;2239-360/90;0/0/0;;~aopt=2/1/4d/0;~sscs=%3f" target="_blank"></a></p>
Related Tags: does erotomania mean true love, famous and true love calculator, finding love, how to find love, how to find something you love, true love calculator, true love calculator feelings, www how find love<!-- SEO SearchTerms Tagging 2 Plugin -->

<p>Related posts:<ol><li><a href='http://www.howany.com/how-to-write-love-letter/' rel='bookmark' title='Permanent Link: How to Write Love Letter'>How to Write Love Letter</a></li>
<li><a href='http://www.howany.com/how-to-repair-damaged-relationship/' rel='bookmark' title='Permanent Link: How to Repair Damaged Relationship'>How to Repair Damaged Relationship</a></li>
<li><a href='http://www.howany.com/how-to-prevent-divorce/' rel='bookmark' title='Permanent Link: How to Prevent Divorce'>How to Prevent Divorce</a></li>
<li><a href='http://www.howany.com/how-to-be-happier/' rel='bookmark' title='Permanent Link: How to be Happier'>How to be Happier</a></li>
<li><a href='http://www.howany.com/how-to-nurture-relationships/' rel='bookmark' title='Permanent Link: How to Nurture Relationships'>How to Nurture Relationships</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.howany.com/how-to-find-love/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>How to Find Peace</title>
		<link>http://www.howany.com/how-to-find-peace/</link>
		<comments>http://www.howany.com/how-to-find-peace/#comments</comments>
		<pubDate>Sat, 10 Apr 2010 10:51:06 +0000</pubDate>
		<dc:creator>editor</dc:creator>
				<category><![CDATA[How to Find]]></category>
		<category><![CDATA[find peace]]></category>
		<category><![CDATA[find within peace]]></category>
		<category><![CDATA[finding peace]]></category>
		<category><![CDATA[search peace]]></category>

		<guid isPermaLink="false">http://www.howany.com/?p=1622</guid>
		<description><![CDATA[&#8216;Peace&#8217; is a quality which describes a society and its relationships which operate pleasantly. Absence of peace in the society may cause social prejudice, political and religious intolerance, anxiety, economic discrimination, nationalism and acute racial discrimination.  The word &#8216;peace&#8217; has derived been from the word &#8216;Pas&#8216;, which means &#8216;freedom from civil disorder&#8217;. The word [...]


Related posts:<ol><li><a href='http://www.howany.com/how-to-attain-peace-of-mind/' rel='bookmark' title='Permanent Link: How to Attain Peace of Mind'>How to Attain Peace of Mind</a></li>
<li><a href='http://www.howany.com/how-to-take-care-of-peace-lily/' rel='bookmark' title='Permanent Link: How to Take Care of Peace Lily'>How to Take Care of Peace Lily</a></li>
<li><a href='http://www.howany.com/how-to-find-happiness/' rel='bookmark' title='Permanent Link: How to Find Happiness'>How to Find Happiness</a></li>
<li><a href='http://www.howany.com/how-to-prevent-conflict/' rel='bookmark' title='Permanent Link: How to Prevent Conflict'>How to Prevent Conflict</a></li>
<li><a href='http://www.howany.com/how-to-convert-to-islam/' rel='bookmark' title='Permanent Link: How to Convert to Islam'>How to Convert to Islam</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>&#8216;Peace&#8217; is a quality which describes a society and its relationships which operate pleasantly. Absence of peace in the society may cause social prejudice, political and religious intolerance, anxiety, economic discrimination, nationalism and acute racial discrimination.  The word &#8216;peace&#8217; has derived been from the word &#8216;<em>Pas</em>&#8216;, which means &#8216;freedom from civil disorder&#8217;. The word Pas has come from Anglo- Norman origin.  The word &#8216;Pas&#8217; was used for personal greetings in 1300 B.C.  In Arabic, this word means wellbeing, security, safety, affluence, sociability and destiny. In English the word &#8216;peace&#8217; reflects a quite, serene, calm and meditative approach toward family, friends and society at large.<br />
<img src="/wp-content/uploads/2010/04/how-to-find-peace.png" alt="how to find peace" width="128" height="124" align="right" /><br />
In other languages, the word &#8216;peace&#8217; is used as farewell or greeting such as in Hawaiian language it is termed as &#8216;Aloha&#8217;, and on the occasion of a death, it is said that may the soul &#8216;rest in peace&#8217; (RIP).  Peace and conflict study is an educational field scrutinizes, and categorizes the violent and non-violent activities and structural method of attending to social disagreements. Peace study which is also know as &#8216;Irenology&#8217;, is an interdisciplinary attempt, which aims to prevent  conflict and try to find out its solutions.</p>
<p>The discipline, which is involved in &#8216;peace study&#8217; includes subjects like psychology, political science, gender studies, religious studies, geography, international relationships, economics, anthropology and history.</p>
<p>Every one loves to have peace in their lives. We should go through some processes to seek peace. In this tutorial you will learn the process to attain peace.</p>
<p><strong>Instructions: </strong></p>
<p><strong> </strong></p>
<ul>
<li>Strive      for salvation, after giving your life, soul and heart to god; you will      realize that you have peace because god has forgiven your present and past      sins.</li>
</ul>
<ul>
<li>If you      confess yourself in front of god, you will realize that the peace you are looking      for comes by knowing you life and heart. The real happiness lies with god.</li>
</ul>
<ul>
<li>God      lies in your control. World peace is completely opposite of god&#8217;s peace;      you can never find it in positive thinking, good feeling and in absence of      conflict.</li>
</ul>
<ul>
<li>If you      start believing that whatever is happening in this world is controlled by god,      he is responsible for everything and leave everything to him, then you      will feel real peace.</li>
</ul>
<ul>
<li>Be      respectful to god. Peace of mind comes from following and listening to God      and his words.  If you love god, and      have faith in him, obey his word, then peace will come flowing like a calm      river.</li>
</ul>
<ul>
<li>Focus      on God&#8217;s promises; it is the only way to find happiness and peace for your      mind. Trust god blindly, he will show you the way to happiness and will      bring peace to your exhausted and drained soul.</li>
</ul>
<ul>
<li>For      finding god and seeking happiness or peace, you can go to some &#8216;ashram&#8217; or      &#8216;convent&#8217;. Try to help others such as poor people. Helping others      unconditionally will give you great peace of mind.</li>
</ul>
<p>Read mythological or holy books for example &#8216;The Geeta&#8217; or &#8216;The Bible&#8217;. It will help you to think positively and make you believe that god is always there to help and guide you.</p>
Related Tags: how to say rest in peace in the hawaiian language, www how can we bring about peace of mind?<!-- SEO SearchTerms Tagging 2 Plugin -->

<p>Related posts:<ol><li><a href='http://www.howany.com/how-to-attain-peace-of-mind/' rel='bookmark' title='Permanent Link: How to Attain Peace of Mind'>How to Attain Peace of Mind</a></li>
<li><a href='http://www.howany.com/how-to-take-care-of-peace-lily/' rel='bookmark' title='Permanent Link: How to Take Care of Peace Lily'>How to Take Care of Peace Lily</a></li>
<li><a href='http://www.howany.com/how-to-find-happiness/' rel='bookmark' title='Permanent Link: How to Find Happiness'>How to Find Happiness</a></li>
<li><a href='http://www.howany.com/how-to-prevent-conflict/' rel='bookmark' title='Permanent Link: How to Prevent Conflict'>How to Prevent Conflict</a></li>
<li><a href='http://www.howany.com/how-to-convert-to-islam/' rel='bookmark' title='Permanent Link: How to Convert to Islam'>How to Convert to Islam</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.howany.com/how-to-find-peace/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to Find Ancestors</title>
		<link>http://www.howany.com/how-to-find-ancestors/</link>
		<comments>http://www.howany.com/how-to-find-ancestors/#comments</comments>
		<pubDate>Mon, 19 Apr 2010 10:37:27 +0000</pubDate>
		<dc:creator>editor</dc:creator>
				<category><![CDATA[How to Find]]></category>
		<category><![CDATA[find ancestors]]></category>
		<category><![CDATA[find ancestors for free]]></category>
		<category><![CDATA[find your ancestors]]></category>
		<category><![CDATA[finding ancestors]]></category>

		<guid isPermaLink="false">http://www.howany.com/?p=1741</guid>
		<description><![CDATA[Ancestor is a close relative like  grandparent, great grand father/mother. If one person is the ancestor of another person or if they have common grandparents, they have a genetic relation.   The concept of ancestors does not exist in some bacteria&#8217;s.
Not all the ancestors of a person are related to each other. Human [...]


Related posts:<ol><li><a href='http://www.howany.com/how-to-trace-your-family-tree/' rel='bookmark' title='Permanent Link: How to Trace Your Family Tree'>How to Trace Your Family Tree</a></li>
<li><a href='http://www.howany.com/how-to-run-background-check/' rel='bookmark' title='Permanent Link: How to Run Background Check'>How to Run Background Check</a></li>
<li><a href='http://www.howany.com/how-to-reconcile-a-marriage/' rel='bookmark' title='Permanent Link: How to Reconcile a Marriage'>How to Reconcile a Marriage</a></li>
<li><a href='http://www.howany.com/how-to-save-marriage/' rel='bookmark' title='Permanent Link: How to Save Marriage'>How to Save Marriage</a></li>
<li><a href='http://www.howany.com/how-to-fix-a-light/' rel='bookmark' title='Permanent Link: How to Fix a Light'>How to Fix a Light</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>Ancestor is a close relative like  grandparent, great grand father/mother. If one person is the ancestor of another person or if they have common grandparents, they have a genetic relation.   The concept of ancestors does not exist in some bacteria&#8217;s.</p>
<p>Not all the ancestors of a person are related to each other. Human beings have the maximum number of ancestors. It is believed that the ancestors exist from the nth generation. Where n=40, which means that humans are living since 40 generations. There have been nearly 2046 human ancestors since the 10<sup>th</sup> generation. It is also believed that the ancestors of humans are multiply related, which is also know as pedigree collapse. Pedigree collapse means that two people, who come together for reproduction, share the common ancestors to decrease the size of their family tree for their kid.</p>
<p>There are a few cultures in the world, where ancestors are worshipped, living or dead. Many youths show very little respect to the elderly. Finding ancestors in not that difficult anymore, here are a few steps, which will help you.<br />
<img src="/wp-content/uploads/2010/04/how-to-find-ancestors.jpg" alt="how to find ancestors"  width="150" height="124" align="right"/><br />
<strong>Steps:</strong></p>
<ul>
<li>Make a list of all the websites of genealogy. Many websites have a huge database that contains information to will help you in looking for your ancestors, even with the help of their name. There a few people who have dedicated all their time, to trace their ancestors and are successful in finding information.</li>
<li>You can also join a forum in genealogy. If you are planning to search for your ancestor by a specific name or last name, then post a message on the general forum of genealogy. These people can help you in finding your ancestors or information about it.</li>
<li>If you are unable to find information on a genealogy forum, then you can also check the records of census. The records in the census are nearly seventy years old and accessible to everyone. The census records starts from the 1790, but many of the old records are written manually hence, it is difficult to scan.</li>
<li>You can check the records of the courthouse. In those records, you can find all the death, birth and marriage certificates. The courthouse also has the land records. These dates are helpful, if you want to check the dates of land ownership.</li>
<li>Go through the archives of newspapers. Go to a local library and check out all the old newspapers there. However, you will require the date to make it easier to check the archives. Read the obituaries, marriage and the birth sections in the paper. Try to find information about the events that happened at the time of your ancestors, it would be helpful for searching data.</li>
<li>You can also take some help from your relatives and start making your family tree.</li>
</ul>
<p><strong>Tips and Warnings: </strong></p>
<ul>
<li>To find your ancestors, make sure that you check all the possible records. Do not give-up; it is a time consuming process. Join various forums like genealogy, they are helpful. <strong></strong></li>
<li>Always remember to check the census records. Take help from your parents and relatives in finding your ancestors. <strong></strong></li>
</ul>
Related Tags: do ancestors exists, do ancestors exist, pedigree collapse meaning<!-- SEO SearchTerms Tagging 2 Plugin -->

<p>Related posts:<ol><li><a href='http://www.howany.com/how-to-trace-your-family-tree/' rel='bookmark' title='Permanent Link: How to Trace Your Family Tree'>How to Trace Your Family Tree</a></li>
<li><a href='http://www.howany.com/how-to-run-background-check/' rel='bookmark' title='Permanent Link: How to Run Background Check'>How to Run Background Check</a></li>
<li><a href='http://www.howany.com/how-to-reconcile-a-marriage/' rel='bookmark' title='Permanent Link: How to Reconcile a Marriage'>How to Reconcile a Marriage</a></li>
<li><a href='http://www.howany.com/how-to-save-marriage/' rel='bookmark' title='Permanent Link: How to Save Marriage'>How to Save Marriage</a></li>
<li><a href='http://www.howany.com/how-to-fix-a-light/' rel='bookmark' title='Permanent Link: How to Fix a Light'>How to Fix a Light</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.howany.com/how-to-find-ancestors/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to Find a Global Catalog Server</title>
		<link>http://www.howany.com/how-to-find-a-global-catalog-server/</link>
		<comments>http://www.howany.com/how-to-find-a-global-catalog-server/#comments</comments>
		<pubDate>Wed, 30 Mar 2011 04:25:27 +0000</pubDate>
		<dc:creator>editor</dc:creator>
				<category><![CDATA[How to Find]]></category>
		<category><![CDATA[global catalog server]]></category>

		<guid isPermaLink="false">http://www.howany.com/?p=8879</guid>
		<description><![CDATA[The global catalog represents a distributed data repository. It is a searchable and a partial representation of every object. The objects are in every domain in a multidomain active directory domain services (AD DS) forest. You can store these global catalogs on domain controllers that are designated as global catalog servers. They are distributed through [...]


Related posts:<ol><li><a href='http://www.howany.com/how-to-be-a-process-server/' rel='bookmark' title='Permanent Link: How to be a Process Server'>How to be a Process Server</a></li>
<li><a href='http://www.howany.com/how-to-stop-a-catalog/' rel='bookmark' title='Permanent Link: How to Stop a Catalog'>How to Stop a Catalog</a></li>
<li><a href='http://www.howany.com/how-to-start-a-catalog-business/' rel='bookmark' title='Permanent Link: How to Start a Catalog Business'>How to Start a Catalog Business</a></li>
<li><a href='http://www.howany.com/how-to-design-a-catalog/' rel='bookmark' title='Permanent Link: How to Design a Catalog'>How to Design a Catalog</a></li>
<li><a href='http://www.howany.com/how-to-prevent-global-warming/' rel='bookmark' title='Permanent Link: How to Prevent Global Warming'>How to Prevent Global Warming</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>The global catalog represents a distributed data repository. It is a searchable and a partial representation of every object. The objects are in every domain in a multidomain active directory domain services (AD DS) forest. You can store these global catalogs on domain controllers that are designated as global catalog servers. They are distributed through multimaster replication. If you direct the searches directly to the global catalog, they are faster as they do not include referrals to different domain controllers now. You need to determine how to find a global catalog server. This can be told by knowing whether a domain controller is a global catalog server.</p>
<p>Other than configuration and schema directory partition replicas, every domain controller in a forest stores a full and exact replica of a single domain directory partition. So, a domain controller is able to find only the objects in its domain. Finding an object in a different domain needs the user or application to provide the domain of the requested object.</p>
<p>The global catalog can locate objects from any domain without any knowhow of the domain name. A global catalog server is basically a domain controller that can store a partial and read-only replica of the remaining domain directory partitions. The additional domain directory partitions are partial because there are limited set of attributes for each object. When you include the only attributes that you use for searching, the database of a single global catalog server can represent every object in every domain even in the largest forest.</p>
<p>The following events require a global catalog server:</p>
<p><strong>Forest-wide searches:</strong></p>
<p>The global catalog provides a resource to search an AD DS forest. Ldap port distinguishes the Forest-wide searches easily. If the search query makes use of port 3268, the global catalog server will take care of the search query.</p>
<p><strong>User logon:</strong></p>
<p>In a forest containing more than one domain, two conditions require the global catalog during user authentication:</p>
<p>In a domain operating with the Windows 2000 or higher version, the domain controllers must request universal group membership details from a global catalog server.</p>
<p>When the logon occurs with a user principal name (UPN) and the forest contains more than one domain, you require a global catalog server to resolve the name.</p>
<p>Universal Group Membership Caching: In a forest containing more than one domain and in sites that contains domain users but no global catalog server, you can use universal group membership caching to enable caching of logon credentials. Now, the global catalog does not require contacting for subsequent user logons. This feature gets rid of the need to retrieve universal group memberships across a WAN link from a global catalog server in a different site.</p>
<p>You can use the setting on the NTDS Settings object to denote whether a domain controller is specified as a global catalog server.</p>
<p><strong>Administrative Credentials:</strong></p>
<p>You have to be a member of the domain users group in active directory to use this procedure.</p>
<p>To identify whether a domain controller is a global catalog server:</p>
<p>First of all, open active directory sites and services.</p>
<p>In the console tree, enlarge the sites container. Now, expand the domain controller’s site that you want to check. Expand the server’s container and after that expand the server object.</p>
<p>Right click on the NTDS settings object. After that click the properties tab.</p>
<p>On the general tab, if the Global Catalog box is chosen, the domain controller is assigned as a global catalog server.</p>
<p>Configuring Global Catalog:</p>
<p>To configure a domain controller as a Global Catalogs is a skill. At the start, it is a difficult process but once you practice it and check the Global Catalog box, you will always remember that difficult path.</p>
<p>Let us start with the active directory sites and services snap-in.  Expand sites and set default fist site name for server.  Choose your server and search for the NTDS settings.  Now, Right click and choose properties tab. You just need to tick the global catalog box now.</p>
<p>You need to reboot the Windows Server 2000 server. The problem is that the interface does not tell you to reboot.  This problem is taken care by the Windows Server 2003. Now you do not have to reboot while you enable or disable global catalog.</p>
<p>The only difference on these instructions is that the servers are on different sites and not in the Default-First-Site-Name.</p>
<p>If there are firewall restrictions, LDAP uses port 389 for read and write and port 3268 for global catalog search operations.</p>
<p>You need not to worry even when you have only one domain.</p>
<p>Even when you have only one domain, there is nothing wrong if you don&#8217;t have a local global catalog server.  However, in case of a forest then there can be a problem and delays can result into a problem unless you locate global catalog servers judiciously.  The root of the problem is listing universal group membership.  It is actually pointless to use universal groups in a single domain. If you did so, they will result into users in your domain. There is no need to check other domains.</p>
<p><strong>Global catalog servers’ summary:</strong></p>
<p>Here the most important point with active directory is that the domain controllers, which are not global catalog servers, cannot find universal groups in other domains.  They have to contact a global catalog server otherwise the domain controller cannot proceed with the logon request. This is done for security purposes.  You can also plan for extra global catalog servers.  However, if there is only one domain, you do not require any more Global Catalog servers.</p>
<p>Global catalog is basically a data repository. Now, you know all about the global catalog servers. How to find a global catalog server is not a difficult work for you now. You just need a few steps that can help you to find a global catalog server.</p>
Related Tags: 3268 (global catalog), make the domain controller listen to a non gc port, port 3268 in listening mode, port 3268 not listing, problem contacting a global catalog server, query gc logon server, the domain controller is a global catalog server global catalogs are used to process user logons, what uses forest-wide searches<!-- SEO SearchTerms Tagging 2 Plugin -->

<p>Related posts:<ol><li><a href='http://www.howany.com/how-to-be-a-process-server/' rel='bookmark' title='Permanent Link: How to be a Process Server'>How to be a Process Server</a></li>
<li><a href='http://www.howany.com/how-to-stop-a-catalog/' rel='bookmark' title='Permanent Link: How to Stop a Catalog'>How to Stop a Catalog</a></li>
<li><a href='http://www.howany.com/how-to-start-a-catalog-business/' rel='bookmark' title='Permanent Link: How to Start a Catalog Business'>How to Start a Catalog Business</a></li>
<li><a href='http://www.howany.com/how-to-design-a-catalog/' rel='bookmark' title='Permanent Link: How to Design a Catalog'>How to Design a Catalog</a></li>
<li><a href='http://www.howany.com/how-to-prevent-global-warming/' rel='bookmark' title='Permanent Link: How to Prevent Global Warming'>How to Prevent Global Warming</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.howany.com/how-to-find-a-global-catalog-server/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

