Granting user permission for public_html


 
Thread Tools Search this Thread
Top Forums UNIX for Dummies Questions & Answers Granting user permission for public_html
# 1  
Old 10-15-2010
Granting user permission for public_html

I have problem giving user access to his public_html directory.
While when I am logged as root I can access my files by going to
Code:
www.myserver.com/file.html

where file.html is actually on this path...
Code:
var/www/file.html

But when user tries to access his file.html on this path....
Code:
~user/file.html

it gets 404 error.

How would i fix this problem.Do I have to give some permission to user. Can you point me to some tutorial about this.

I havent done anything beside created user issuing this command
Code:
useradd username

Thank you
# 2  
Old 10-15-2010
On what OS are you?
I would not create users on a box just so they can access by http...

What http server are you using?
For instance, apache has htpasswd utility to create accounts to access http server ( and so there is no need to have unix accounts created...)
# 3  
Old 10-15-2010
Debian os

I am running debian flavour of linux and apache http server
I just want to practice on how to acount for user and want that
user to be able to create web page is he wants to.
# 4  
Old 10-15-2010
Yes...
And what is wrong giving access to HTTP users to access only using HTTP?
I think there is some misunderstanding...
That user under unix has he the good permissions to write/execute in your htdocs tree?
If he modifies the structure, has he the permission to stop/restart your apache server?
# 5  
Old 10-15-2010
problem i am having

Problem I am having is this.....
When user tries to access his page it gets 404 error.
I think there is problem with permissions for particular user
# 6  
Old 10-15-2010
That will be difficult to answer since you havent yet answered to the previous post...
a 404 means not found...
Look at my previous post and try to answer!

Then you do understand that a unix login ends in a unis $HOME directory which has nothing to do with HTTP stuff...
# 7  
Old 10-15-2010
This is....

Hi. Thanks for replying. I have installed Debian just to play and learn about linux. My goal is to lean how to create users on linux and how to admin them. I didnt do anything more about users but added few users to the system by using command "useradd" (this i did as "root").So my users now can accees linux remotly using ssh or they can ftp into their file system. For example when users wants to create html document he will ftp into the server and it will be presented with his directory which is /home/username...Now at this point since user wants to create some .html file he will create "public_html" directory and add html file he created locally on his machine. Now at this point user wants to view this file on the web by going to this url ....http://www.servername.com/~username/file.html.....but he gets 404 error.
What can I as admin do to make it possible for user to be able to see file.html on the web?
 
Login or Register to Ask a Question

Previous Thread | Next Thread

9 More Discussions You Might Find Interesting

1. UNIX for Advanced & Expert Users

Granting access to specific user on a 700 file

Hello, I have a a directory dir1 with permissions 700 (yes wantedly) and is owned by user1:group1 rwx------ user1 group1 dir1I need to give permissions to user2 (belongs to group2) on dir1 and its files, so I granted the permissions using setfacl ; instead of adding the user to groups and... (3 Replies)
Discussion started by: karumudi7
3 Replies

2. Web Development

$_SERVER['DOCUMENT_ROOT'] directs to /var/www not ~/public_html

Hi all, Exactly like my title says. I am learning PHP and MySQL and I used to use /var/www/ to host (contain or store) my files (.htm/.php) for testing. I could configure, finally, apache2 to use ~/public_html instead. Now I when I tried to use $_SERVER it still directs (I used echo to show... (7 Replies)
Discussion started by: faizlo
7 Replies

3. UNIX for Dummies Questions & Answers

granting permission to file/directory to a specific user

hello, I would like to grant full access to a directory which is owned by root and the web application that created it. I have though of adding the permission to the whole world, but for security reason I would like to grant it to one more user. I have tried this 'chmod -U newUser+wrx... (2 Replies)
Discussion started by: run123
2 Replies

4. AIX

Granting folder access

Hello, I need to allow a user the ability to create files in a directory that is owned by another user/group. How can I do this? Thank you. AIX version: 5.3.0.0 ~David (4 Replies)
Discussion started by: dkranes
4 Replies

5. UNIX for Dummies Questions & Answers

User permission

Hi all, I created testuser. by following command. /usr/sbin/adduser -n test -d /disk05/collections/GET/testdata/ and then set its password by following command. passwd testuser When I login to system by testuser, it enters everything is ok. The problem is how to set permission to this... (3 Replies)
Discussion started by: mr_bold
3 Replies

6. UNIX for Dummies Questions & Answers

chmod for public_html ?

Hello! My web host has the public_html permission on my account set to 750. 1. Does this setting permit the world to use my submission forms (contained within contact.html and purchase_order.html)? 2. The "0" entry looks like it blocks the public from conducting all activity on my site.... (6 Replies)
Discussion started by: Texan
6 Replies

7. Shell Programming and Scripting

help with user permission

hi everyone. iīve been burning my head for a week now with this problem and i couldnīt find a solution. iīve been looking for an answer in this forum but nothing either. so i decided to ask. the thing is, i want to create a users with permission to kill just a group of users. i know how to write... (6 Replies)
Discussion started by: lucasmarin
6 Replies

8. UNIX for Dummies Questions & Answers

Granting User Access

I have two users, user1 and defaultuser. Whenever i logon to my unix session from a remote machine i log into defaultuser. Inside this "defaultuser" i have some setup files that i need to run from the other user that i have created myself i.e. "user1". The problem is even granting the ownership of... (3 Replies)
Discussion started by: awaismalik82
3 Replies

9. UNIX for Advanced & Expert Users

find a file or directory under public_html

Hi there, I have a quick question about the UNIX command find, if you can help me I will appreciate it... I am trying tho find a file which is under my 'public_html' directory. As I know, I am making the command > find ~ -name filename(or directory name) to find the file or directory... (4 Replies)
Discussion started by: milhan
4 Replies
Login or Register to Ask a Question