<?xml version="1.0" encoding="utf-8" ?><rss version="2.0" xml:base="https://www.webmaster-forums.net/crss/node/1013877" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title></title>
    <link>https://www.webmaster-forums.net/crss/node/1013877</link>
    <description></description>
    <language>en</language>
          <item>
    <title></title>
    <link>https://www.webmaster-forums.net/server-management/networking-windows-me-and-redhat-linux-70#comment-1081052</link>
    <description> &lt;p&gt;nope nope nope&lt;br /&gt;
None of that worked.&lt;br /&gt;
Thanks for trying though&lt;br /&gt;
I have managed to get my site attached to my internal IP (192.168.1.20) and I have port forwarding set up on the router (port 80)&lt;br /&gt;
The Windows machine has Apache stopped&lt;br /&gt;
Linux has HTTPD started&lt;br /&gt;
When I have the Windows machine running with apache, it runs just fine and everything is put on the internet, but the Linux just won&#039;t&lt;br /&gt;
I have configured them just about the same.&lt;br /&gt;
What is wrong?&lt;br /&gt;
Should I start a new thread?&lt;/p&gt;
 </description>
     <pubDate>Sat, 14 Apr 2001 16:40:45 +0000</pubDate>
 <dc:creator>nike_guy_man</dc:creator>
 <guid isPermaLink="false">comment 1081052 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/server-management/networking-windows-me-and-redhat-linux-70#comment-1080995</link>
    <description> &lt;p&gt;When you say external I assume that you are referring to accessing from the Windows machine. If so you should be able to access it by opening up your browser on the Windows machine and typing in:&lt;br /&gt;
&lt;strong&gt;http://(localhost)&lt;/strong&gt;. Localhost in this case is not what you use but the machine name of the Linux box. Here is how to do so:&lt;/p&gt;
&lt;p&gt;(1.) Make sure that your machine actually has a name. Do this by editing your host file in &lt;strong&gt;/etc/hosts&lt;/strong&gt;. It should have a line like this: &lt;strong&gt;(IP Address     (hostname)&lt;/strong&gt;. So if you wanted your machine to be called Nike and your IP address was 192.168.100.1, then it would look like this &lt;strong&gt;192.168.100.1         Nike&lt;/strong&gt;.&lt;/p&gt;
&lt;p&gt;(2.) Make sure that this machine name is specified in your httpd.conf file. The section called &lt;strong&gt;ServerName&lt;/strong&gt; should also be the same as in the hosts file. In our example, it would look like so: &lt;strong&gt;ServerName Nike&lt;/strong&gt;.&lt;/p&gt;
&lt;p&gt;(3.) That will do it but you should probably also change your hosts file in Windows. The setup is the same.&lt;br /&gt;
(4.) Now you should be able to access your system via the browser. In our example, type in &lt;strong&gt;http://Nike&lt;/strong&gt;. This will load the Apache index file. &lt;/p&gt;
&lt;p&gt;Hope this helps.&lt;/p&gt;
 </description>
     <pubDate>Thu, 12 Apr 2001 18:42:23 +0000</pubDate>
 <dc:creator>mairving</dc:creator>
 <guid isPermaLink="false">comment 1080995 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/server-management/networking-windows-me-and-redhat-linux-70#comment-1080988</link>
    <description> &lt;p&gt;Well I figured out that I needed to set chown and chgrp to apache&lt;br /&gt;
I can access the site on the intranet, but not internet&lt;br /&gt;
I have apache started and all, but It won&#039;t put the files on the Internet, only intranet.&lt;br /&gt;
I can get to my site by typing the internal IP, but not the external IP&lt;/p&gt;
 </description>
     <pubDate>Thu, 12 Apr 2001 16:47:40 +0000</pubDate>
 <dc:creator>nike_guy_man</dc:creator>
 <guid isPermaLink="false">comment 1080988 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/server-management/networking-windows-me-and-redhat-linux-70#comment-1080987</link>
    <description> &lt;p&gt;Your apache directory is most likely set to root.&lt;/p&gt;
&lt;p&gt;To see if apache is running (which it is, otherwise you won&#039;t get the 403 error). Type is &lt;strong&gt;ps aux | less&lt;/strong&gt; . This shows all of your running processes. the &lt;strong&gt; | less&lt;/strong&gt; part slows down the output so it doesn&#039;t scroll off of the screen. &lt;strong&gt;q&lt;/strong&gt; will quit. &lt;/p&gt;
&lt;p&gt;For Apache, you will have several running processes, a root process and several child processes.&lt;/p&gt;
&lt;p&gt;Apache has a serverroot directory (usually /usr/local/apache, although Redhat uses /etc/httpd). You can also have a virtualhost directory. Wherever your pages are served from via httpd.conf, you need to change that directories ownership and group. It needs to be changed to whatever httpd.conf says for User and Group. This is usually nobody or webuser and webgroup. &lt;/p&gt;
&lt;p&gt;So you need to change the permissions on the directory that your pages are served from like this (assuming that the user, group = nobody):&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;chown nobody (htdocs directory)&lt;/strong&gt;&lt;br /&gt;
&lt;strong&gt;chgrp nobody (htdocs directory)&lt;/strong&gt;&lt;br /&gt;
You will also need to change the files in the directory like so:&lt;br /&gt;
&lt;strong&gt;cd (htdocs directory)&lt;br /&gt;
chown nobody *&lt;br /&gt;
chgrp nobody *&lt;br /&gt;
&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;That should fix you up. Let me know. &lt;/p&gt;
&lt;p&gt;Also any time a change is made to httpd.conf, you need to restart the server. The way to do that is like this:&lt;br /&gt;
&lt;strong&gt;ps aux | less&lt;/strong&gt; Find apache root process id.&lt;br /&gt;
&lt;strong&gt;kill (root process id)&lt;/strong&gt;&lt;br /&gt;
&lt;strong&gt;httpd -d (serverroot directory)&lt;/strong&gt; Restarts apache.&lt;/p&gt;
 </description>
     <pubDate>Thu, 12 Apr 2001 16:14:15 +0000</pubDate>
 <dc:creator>mairving</dc:creator>
 <guid isPermaLink="false">comment 1080987 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/server-management/networking-windows-me-and-redhat-linux-70#comment-1080984</link>
    <description> &lt;p&gt;I&#039;m trying to run Apache&lt;br /&gt;
I have httpd started (I think)&lt;br /&gt;
I configured it&lt;br /&gt;
When I type:&lt;br /&gt;
lynx localhost&lt;br /&gt;
it says, &quot;Error 403: http forbidden&quot;&lt;br /&gt;
I&#039;ve changed permissions, I&#039;ve changed httpd.conf many times&lt;br /&gt;
I need to get this fixed!&lt;/p&gt;
 </description>
     <pubDate>Thu, 12 Apr 2001 14:37:05 +0000</pubDate>
 <dc:creator>nike_guy_man</dc:creator>
 <guid isPermaLink="false">comment 1080984 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/server-management/networking-windows-me-and-redhat-linux-70#comment-1080972</link>
    <description> &lt;p&gt;Explain it to me again.&lt;/p&gt;
&lt;p&gt;How are you trying to connect through a ftp program or web browser? Please give me the details.&lt;/p&gt;
 </description>
     <pubDate>Thu, 12 Apr 2001 12:18:58 +0000</pubDate>
 <dc:creator>mairving</dc:creator>
 <guid isPermaLink="false">comment 1080972 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/server-management/networking-windows-me-and-redhat-linux-70#comment-1080944</link>
    <description> &lt;p&gt;I&#039;m still getting &quot;403 Permission Denied&quot;&lt;/p&gt;
 </description>
     <pubDate>Thu, 12 Apr 2001 00:57:13 +0000</pubDate>
 <dc:creator>nike_guy_man</dc:creator>
 <guid isPermaLink="false">comment 1080944 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/server-management/networking-windows-me-and-redhat-linux-70#comment-1080942</link>
    <description> &lt;p&gt;&lt;strong&gt;hosts.deny&lt;/strong&gt; ALL:ALL&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;hosts.allow&lt;/strong&gt;&lt;br /&gt;
#Allow localhost&lt;br /&gt;
ALL : 127.0.0.1&lt;br /&gt;
# Allow my other box to connect to any service&lt;br /&gt;
ALL : IP address of Windows machine&lt;/p&gt;
&lt;p&gt;If your ftp directory is root, then you will not be able to upload files to it. You can change it to &lt;strong&gt;nobody&lt;/strong&gt; to allow anyone to do anything. &lt;/p&gt;
&lt;p&gt;httpd.conf has nothing to do with ftp. ftp is controlled by the inetd daemon.&lt;/p&gt;
 </description>
     <pubDate>Thu, 12 Apr 2001 00:45:34 +0000</pubDate>
 <dc:creator>mairving</dc:creator>
 <guid isPermaLink="false">comment 1080942 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/server-management/networking-windows-me-and-redhat-linux-70#comment-1080941</link>
    <description> &lt;p&gt;Well, I wasn&#039;t sure what to do with the host.allow and hosts files.&lt;br /&gt;
No luck with samba share&lt;br /&gt;
I am trying to compare my old httpd.conf  file but it says my disk is invalid...&lt;br /&gt;
I&#039;ll try again&lt;br /&gt;
What do I do with chown username /home/web&lt;br /&gt;
what username do I do? root?&lt;/p&gt;
 </description>
     <pubDate>Wed, 11 Apr 2001 23:32:40 +0000</pubDate>
 <dc:creator>nike_guy_man</dc:creator>
 <guid isPermaLink="false">comment 1080941 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/server-management/networking-windows-me-and-redhat-linux-70#comment-1080938</link>
    <description> &lt;p&gt;A couple of things to try.&lt;/p&gt;
&lt;p&gt;(1.) You have three files located in the etc directory.&lt;br /&gt;
&lt;strong&gt;hosts &lt;/strong&gt;- gives system name and any other servers on your network.&lt;br /&gt;
&lt;strong&gt;hosts.allow&lt;/strong&gt; - says who can logon your system.&lt;br /&gt;
&lt;strong&gt;hosts.deny&lt;/strong&gt; - says who can&#039;t logon your system.&lt;br /&gt;
Generally the way it is done is to deny all in hosts.deny and allow only you in hosts.allow.&lt;/p&gt;
&lt;p&gt;It could be a permission problem. To check this go to your ftp directory and type in &lt;strong&gt;ls -l &lt;/strong&gt;. This will tell you who the owner and group of this directory is. You can change the ownership by:&lt;br /&gt;
&lt;strong&gt;chown yourusername /home/ftp&lt;br /&gt;
chgrp yourusergroup /home/ftp&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;Let me know how this works. &lt;/p&gt;
&lt;p&gt;Any luck on setting up the samba share?&lt;/p&gt;
 </description>
     <pubDate>Wed, 11 Apr 2001 22:44:39 +0000</pubDate>
 <dc:creator>mairving</dc:creator>
 <guid isPermaLink="false">comment 1080938 at https://www.webmaster-forums.net</guid>
  </item>
  </channel>
</rss>
