- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: Apache
Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Forums
Discussions
Discussions
Discussions
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-31-2002 09:07 AM
10-31-2002 09:07 AM
Apache
I've just started using Apache,need some help on the configuration this my setup;
Os - 11.11
Apache 1.3.19
Chilisoft 3.6.2
when I try to view the page I get this error :
Forbidden
You don't have permission to access /prs/main1.htm on this server.
Apache/1.3.19 Server at prsdev. Port 80
the user & group for apache is - daemon
Is there anything I can do, so I can get the page served ???
Thanks & regards
Sri
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-31-2002 09:08 AM
10-31-2002 09:08 AM
Re: Apache
I'm having problems with the forum perf..
Later,
Bill
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-31-2002 09:12 AM
10-31-2002 09:12 AM
Re: Apache
chmod +rx /prs/
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-31-2002 09:13 AM
10-31-2002 09:13 AM
Re: Apache
chmod +rx /prs/
have a look in the apache error_log
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-31-2002 09:13 AM
10-31-2002 09:13 AM
Re: Apache
chmod +rx $WEBROOT /prs/
have a look in the apache error_log
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-31-2002 09:14 AM
10-31-2002 09:14 AM
Re: Apache
I've attach the error log
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-31-2002 09:36 AM
10-31-2002 09:36 AM
Re: Apache
I had done the chmod but when I view the page it still show forbidden.
So I did chmod again to the specific file and then its OK.
How can I chmod for all the pages in one time ?
TIA
Sri
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-31-2002 12:10 PM
10-31-2002 12:10 PM
Re: Apache
But I think the main one is the user .. i think you should set up www as a user. Like so in your httpd.conf
# User/Group: The name (or #number) of the user/group to run httpd as.^M
# . On SCO (ODT 3) use "User nouser" and "Group nogroup".^M
# . On HPUX you may not be able to use shared memory as nobody, and the
# suggested workaround is to create a user www and use that user
# NOTE that some kernels refuse to setgid(Group) or semctl(IPC_SET)
# when the value of (unsigned)Group is above 60000;
# don't use Group on these systems
#
User www
Group other
and /etc/passwd www should look like so:
www:*:30:1::/:
Also check /eteam/nickel/web is where my fiels are just change it to where yours are.
DocumentRoot "/eteam/nickel/web"
#
Options Indexes FollowSymLinks
AllowOverride Limit
Order allow,deny
Allow from all
#
# This should be changed to whatever you set DocumentRoot to.
#
DONT FORGET TO RESTART APACHE after any changes made to httpd.conf ..
/opt/apache/bin/apachectl stop
/opt/apache/bin/apachectl start
~ Richard
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-31-2002 01:46 PM
10-31-2002 01:46 PM
Re: Apache
[Thu Oct 31 13:37:52 2002] [error] [client 1.1.102.177] File does not exist: /home2/apache/htdocs/.refresh=3
[Thu Oct 31 13:50:59 2002] [crit] [client 1.1.102.111] (13)Permission denied: /home3/apps/prs/.htaccess
These messages clearly show that the file system where you placed the home directory for the webserver on a non exported file system. Try exporting/sharing the file systems on which /home* are present else none will be able to see them.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-01-2002 04:37 PM
11-01-2002 04:37 PM
Re: Apache
chmod -R 555 dirpathname
to set the permissions of all the files in the directory and below to make them readable/servable by Apache.
You can use
chmod -R user:group dirpathname
to set the user and group membership recursively as well.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-01-2002 04:42 PM
11-01-2002 04:42 PM