How do I enable ftp on my v120 server? I want to install a email/web software on the box and I need to ftp the files to the server. Should I create a dir for the software file prior to uploading them?
FTP on Solaris is normally enabled by default. Have you tried FTPing to the box?
If it's disabled you need to make sure there are entries for it in /etc/services:
ftp-data 20/tcp
ftp 21/tcp
and /etc/inetd.conf:
ftp stream tcp nowait root /usr/sbin/in.ftpd in.ftpd
If you edit either of these files you need "kill -HUP" the "inetd" process (or kill it and restart it).
You can create a directory for the software if you want, doesn't matter, it's up to you. You can do it from within FTP or otherwise.
You are trying to login as "root" directly, which is not allowed (except on the console) depending on an entry in a file (/etc/default/login I think it is). Can't remember which entry it is, someone else will know (or ask Google). It's a security thing.
If you want to become root via a telnet you either have to login as another user and then "su -" or change the above config file accordingly to allow direct root telnets.
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.