LinuxQuestions.org
Visit Jeremy's Blog.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Networking
User Name
Password
Linux - Networking This forum is for any issue related to networks or networking.
Routing, network cards, OSI, etc. Anything is fair game.

Notices


Reply
  Search this Thread
Old 09-26-2011, 01:44 AM   #1
jitenderana
Member
 
Registered: Jun 2011
Location: INDIA
Posts: 70

Rep: Reputation: Disabled
FTP server file is not upload


dear all,

i was configure a FTP server, anf i think its working becaus when i search server ip on another machine it display.
but i want to upload the file on it from remote computer, i don't know the process how do this..... i want to your help.....
Second problem is that when i explorer the ftp server on client side without user permission its not login, for this i am change the vsftpd file. and server is ask for user name and passwd, but how to create a ftp user name and password.

wait for your kind response.........

Regards
Jitender Rana
 
Old 09-26-2011, 02:42 AM   #2
lithos
Senior Member
 
Registered: Jan 2010
Location: SI : 45.9531, 15.4894
Distribution: CentOS, OpenNA/Trustix, testing desktop openSuse 12.1 /Cinnamon/KDE4.8
Posts: 1,144

Rep: Reputation: 217Reputation: 217Reputation: 217
Hi,

try
- this or
- this guide
 
Old 09-26-2011, 03:49 AM   #3
jitenderana
Member
 
Registered: Jun 2011
Location: INDIA
Posts: 70

Original Poster
Rep: Reputation: Disabled
Sir i am already vist the both web page, but the problem is still same im not able to upload the file on server. and ftp user is not login into the server....

wait for your corporate.........

Regards
 
Old 09-29-2011, 11:57 PM   #4
jsaravana87
Member
 
Registered: Aug 2011
Location: Chennai,India
Distribution: Redhat,Centos,Ubuntu,Dedian
Posts: 558
Blog Entries: 5

Rep: Reputation: Disabled
#mkdir -p /temp/server/default/deploy
#useradd -d /temp/server/default/deploy ajay
#setfacl m u:ajay:rwx /temp/server/default/deploy
passwd ajay
type ur password

web browser
ftp://ur ipaddress
username:ajay
password:type the password and login


upload file using filezilla with the username and password
regards
arun
 
Old 09-30-2011, 02:52 AM   #5
jitenderana
Member
 
Registered: Jun 2011
Location: INDIA
Posts: 70

Original Poster
Rep: Reputation: Disabled
Dear Sir, thanks for writing to us, but i was did the same process which you explain but created user is not login when i am open the ftp server on client side.

you are requested please brif about this............

Thanks in advance.......

Regards
 
Old 09-30-2011, 03:23 AM   #6
jsaravana87
Member
 
Registered: Aug 2011
Location: Chennai,India
Distribution: Redhat,Centos,Ubuntu,Dedian
Posts: 558
Blog Entries: 5

Rep: Reputation: Disabled
yum install vsftpd* --installing package of vsftpd
#mkdir -p /temp/server/default/deploydeploy --------is the path where u have the content u like to share via ftp to ur client machine
#useradd -d /temp/server/default/deploy ajay --------ur assigining ajay as user to access directory /temp/server/default/deploy
#setfacl m u:ajay:rwx /temp/server/default/deploy ------------ur assiging full readwrite expermission to folder /temp/server/default/deploy to user name ajay

#passwd ajay---- for login via ftp the user ajay needed a password so that reason im assigning password for the user ajay
passwordassword
passwordassword
type ur password



check whether u had created evrything wright
cat /etc/passwd check whether u had added user ajay u can see entry over here
cat /etc/shadow check whether u had added password for user ajay u can see entry over here

web browser
ftp://ur ipaddress
username:ajay
password:type the password and login


i think it could work if u try these procedure ..i believe that ur making mistake in assigning password to user r else ur firewall
make have block ftp port,..i think itcould help u


Regards
arun
 
Old 09-30-2011, 05:14 AM   #7
jitenderana
Member
 
Registered: Jun 2011
Location: INDIA
Posts: 70

Original Poster
Rep: Reputation: Disabled
Thanks to support sir, i am login with user on ftp server.............
can you please explain the process of upload the file on it..........

thanks in advance..

Regards
 
Old 09-30-2011, 05:32 AM   #8
jsaravana87
Member
 
Registered: Aug 2011
Location: Chennai,India
Distribution: Redhat,Centos,Ubuntu,Dedian
Posts: 558
Blog Entries: 5

Rep: Reputation: Disabled
Hi,

u can go for Filezilla software for uploading and downloading file from server to client ..

are else directly download the file using via Internet exporer r else firefox.....

regards
arun
 
Old 09-30-2011, 06:26 AM   #9
jitenderana
Member
 
Registered: Jun 2011
Location: INDIA
Posts: 70

Original Poster
Rep: Reputation: Disabled
Sir, there is no any way to upload the file on it, bcoz i want to use this ftp server in Live and my users and other member use this server to download and upload data and information.

i was create two folder under /deploy directory one is download only for download purpose and second one is upload for upload the file.....

Wait for you kind support........ thanks so much to give me valuable time.....
 
Old 09-30-2011, 06:44 AM   #10
jsaravana87
Member
 
Registered: Aug 2011
Location: Chennai,India
Distribution: Redhat,Centos,Ubuntu,Dedian
Posts: 558
Blog Entries: 5

Rep: Reputation: Disabled
Hi
i think u can acahive the thing via firefox

step 1 ftp://ur server ipaddress in firefox url
step2 provide username and password for ftp server name ajay password what u had given
step 3: if u provide a username u can just view content page of the deploy directory just drag the content and upload conetent the deploy location its just very easy

Give full permission to the directory so that every user has the permission to upload and delete modify content of the file provided in directory /deploy
chmod -R 777 /temp/server/default/deploy

R -4
W -2
X -1
u want user to just read and write just provide chmod -R 755 /temp/server/default/deploy

755 -7 root user ,5 group user ,5 other

REGARDS
arun
 
  


Reply



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
user can upload and download file but not delete file in ftp on thel 6 kukusuku Linux - Server 1 08-21-2011 02:50 AM
problem occurred in upload file in FTP server supriyac Linux - Newbie 1 11-13-2010 02:13 AM
[SOLVED] Make FTP script to upload file to server? mvmacd Linux - Newbie 5 12-31-2009 12:33 PM
Upload file to ftp server -vsftp- but can not delete or change the file once uploaded murattas6 Linux - Server 2 06-26-2009 06:00 AM

LinuxQuestions.org > Forums > Linux Forums > Linux - Networking

All times are GMT -5. The time now is 04:14 PM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration