RE: Rehat 8 - How to Setup FTP Server

2003-07-25 Thread Gerry Doris
 chkconfig does it for you.  Xinetd services are the only thing (I've
 noticed) that this applies to.

 -Steve


While chkconfig does it the easiest way you can manually edit the specific
service within xinetd.d directory and then do a service xinetd restart.

Gerry


-- 
redhat-list mailing list
unsubscribe mailto:[EMAIL PROTECTED]
https://www.redhat.com/mailman/listinfo/redhat-list


RE: Rehat 8 - How to Setup FTP Server

2003-07-24 Thread Real Cucumber
Disable is already set to no.

When I do:

service xinetd stop or start - it works

When I do:


servicevsftpd stop or start - itsays "unrecognized service".

However when I go through the Gnome GUI and click Services, it is listed and checked, but the stop/start buttons are greyed out...

I have no idea what is going on - its a fresh install of RH8 in server mode - and I can't get vsftp to run.


"Thomas E. Dukes" [EMAIL PROTECTED] wrote:



I think you need to look in /etc/xinetd and find the file for vsftpd. Open it and change disable=yes to disbale = no


Palmetto Shopperhttp://www.palmettoshopper.comServing all of South Carolina and beyond!Palmetto Politicshttp://www.palmettoshopper.com/politics/


-Original Message-From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Real CucumberSent: Wednesday, July 23, 2003 7:24 PMTo: [EMAIL PROTECTED]Subject: Re: Rehat 8 - How to Setup FTP Server
It won't let me... it just says I need to enable xinetd - but that is already enabled

Wendell MacKenzie [EMAIL PROTECTED] wrote:





did you enable the vsftp service?

- Original Message - 
From: Real Cucumber 
To: [EMAIL PROTECTED] 
Sent: Wednesday, July 23, 2003 8:10 PM
Subject: Rehat 8 - How to Setup FTP Server


Hi,

I'm a linux n00b and I've just installed a fresh server install of Redhat 8.

I see that it installed 2 FTP packages:

-vsftp (secure/full featuredftp)
-anonftp (anonymous/read only)

So I wanted to get vsftp working, however when I checked in services and tried to start vsftp - it said it required me to enable xinted... however xinetd is already checked and started, I've even tried restarting it yet it will still not let me click the "start" button for vsftp - its greyed out.

I can't find any documention or help or even files when searching the hard drive related to "vsftp"

If anyone has some kind of a user's guide or quick-start manual it would be appreciated.

I'd like to be able to setup user accounts and limit their access to specified directories etc... as well as use SSH FTP and normal FTP connectoins...

Any help appreciated.





Do you Yahoo!?Yahoo! SiteBuilder - Free, easy-to-use web site design software


Do you Yahoo!?Yahoo! SiteBuilder - Free, easy-to-use web site design software
Do you Yahoo!?
Yahoo! SiteBuilder - Free, easy-to-use web site design software

RE: Rehat 8 - How to Setup FTP Server

2003-07-24 Thread Rigler, Steve
It sounds like there may be some confusion as to what the service
command does.

/sbin/service is basically a script that prepends /etc/init.d to
whatever argument you feed it.  When you enter service vsftpd start
it says service not found because it has no script in /etc/init.d. 
The reason it has no script in /etc/init.d is because it is an xinetd
service and must be started/stopped within xinetd.

The easiest way to manage services (xinetd based or other) is through
chkconfig.  Just type chkconfig --list service name and it will
tell you whether it is enabled or not.  To enable a service, do
chkconfig service name on.  If it is xinetd based, it will change
to disabled to no and restart xinetd for you.  Naturally xinetd
should also be enabled to run at boot chkconfig --list xinetd.

-Steve

-Original Message-
From: Real Cucumber [mailto:[EMAIL PROTECTED]
Sent: Thursday, July 24, 2003 12:58 PM
To: [EMAIL PROTECTED]
Subject: RE: Rehat 8 - How to Setup FTP Server


Disable is already set to no.

When I do:

service xinetd stop or start - it works

When I do:

service vsftpd stop or start - it says unrecognized service.

However when I go through the Gnome GUI and click Services, it is listed and checked, 
but the stop/start buttons are greyed out...

I have no idea what is going on - its a fresh install of RH8 in server mode - and I 
can't get vsftp to run.




Thomas E. Dukes [EMAIL PROTECTED] wrote:
I think you need to look in /etc/xinetd and find the file for vsftpd.  Open it and 
change disable=yes to disbale = no


Palmetto Shopper
http://www.palmettoshopper.com
Serving all of South Carolina and beyond!
Palmetto Politics
http://www.palmettoshopper.com/politics/


-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Real Cucumber
Sent: Wednesday, July 23, 2003 7:24 PM
To: [EMAIL PROTECTED]
Subject: Re: Rehat 8 - How to Setup FTP Server


It won't let me... it just says I need to enable xinetd - but that is already 
enabled



Wendell MacKenzie [EMAIL PROTECTED] wrote:
did you enable the vsftp service?
- Original Message - 
From: Real Cucumber 
To: [EMAIL PROTECTED] 
Sent: Wednesday, July 23, 2003 8:10 PM
Subject: Rehat 8 - How to Setup FTP Server


Hi,

I'm a linux n00b and I've just installed a fresh server install of Redhat 8.

I see that it installed 2 FTP packages:

-vsftp  (secure/full featured ftp)
-anonftp (anonymous/read only)

So I wanted to get vsftp working, however when I checked in services and tried to 
start vsftp - it said it required me to enable xinted... however xinetd is already 
checked and started, I've even tried restarting it yet it will still not let me click 
the start button for vsftp - its greyed out.

I can't find any documention or help or even files when searching the hard drive 
related to vsftp

If anyone has some kind of a user's guide or quick-start manual it would be 
appreciated.

I'd like to be able to setup user accounts and limit their access to specified 
directories etc... as well as use SSH FTP and normal FTP connectoins...

Any help appreciated.





Do you Yahoo!?
Yahoo! SiteBuilder - Free, easy-to-use web site design software

Do you Yahoo!?
Yahoo! SiteBuilder - Free, easy-to-use web site design software

Do you Yahoo!?
Yahoo! SiteBuilder - Free, easy-to-use web site design software


-- 
redhat-list mailing list
unsubscribe mailto:[EMAIL PROTECTED]
https://www.redhat.com/mailman/listinfo/redhat-list


RE: Rehat 8 - How to Setup FTP Server

2003-07-24 Thread Jonathan Bartlett
I think you have to restart xinetd manually.  I could be wrong and am too
lazy to test :)

Jon

On Thu, 24 Jul 2003, Rigler, Steve wrote:

 It sounds like there may be some confusion as to what the service
 command does.

 /sbin/service is basically a script that prepends /etc/init.d to
 whatever argument you feed it.  When you enter service vsftpd start
 it says service not found because it has no script in /etc/init.d.
 The reason it has no script in /etc/init.d is because it is an xinetd
 service and must be started/stopped within xinetd.

 The easiest way to manage services (xinetd based or other) is through
 chkconfig.  Just type chkconfig --list service name and it will
 tell you whether it is enabled or not.  To enable a service, do
 chkconfig service name on.  If it is xinetd based, it will change
 to disabled to no and restart xinetd for you.  Naturally xinetd
 should also be enabled to run at boot chkconfig --list xinetd.

 -Steve

 -Original Message-
 From: Real Cucumber [mailto:[EMAIL PROTECTED]
 Sent: Thursday, July 24, 2003 12:58 PM
 To: [EMAIL PROTECTED]
 Subject: RE: Rehat 8 - How to Setup FTP Server


 Disable is already set to no.

 When I do:

 service xinetd stop or start - it works

 When I do:

 service vsftpd stop or start - it says unrecognized service.

 However when I go through the Gnome GUI and click Services, it is listed and 
 checked, but the stop/start buttons are greyed out...

 I have no idea what is going on - its a fresh install of RH8 in server mode - and I 
 can't get vsftp to run.




 Thomas E. Dukes [EMAIL PROTECTED] wrote:
 I think you need to look in /etc/xinetd and find the file for vsftpd.  Open it and 
 change disable=yes to disbale = no


 Palmetto Shopper
 http://www.palmettoshopper.com
 Serving all of South Carolina and beyond!
 Palmetto Politics
 http://www.palmettoshopper.com/politics/


 -Original Message-
 From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Real Cucumber
 Sent: Wednesday, July 23, 2003 7:24 PM
 To: [EMAIL PROTECTED]
 Subject: Re: Rehat 8 - How to Setup FTP Server


 It won't let me... it just says I need to enable xinetd - but that is already 
 enabled



 Wendell MacKenzie [EMAIL PROTECTED] wrote:
 did you enable the vsftp service?
 - Original Message -
 From: Real Cucumber
 To: [EMAIL PROTECTED]
 Sent: Wednesday, July 23, 2003 8:10 PM
 Subject: Rehat 8 - How to Setup FTP Server


 Hi,

 I'm a linux n00b and I've just installed a fresh server install of Redhat 8.

 I see that it installed 2 FTP packages:

 -vsftp  (secure/full featured ftp)
 -anonftp (anonymous/read only)

 So I wanted to get vsftp working, however when I checked in services and tried to 
 start vsftp - it said it required me to enable xinted... however xinetd is already 
 checked and started, I've even tried restarting it yet it will still not let me 
 click the start button for vsftp - its greyed out.

 I can't find any documention or help or even files when searching the hard drive 
 related to vsftp

 If anyone has some kind of a user's guide or quick-start manual it would be 
 appreciated.

 I'd like to be able to setup user accounts and limit their access to specified 
 directories etc... as well as use SSH FTP and normal FTP connectoins...

 Any help appreciated.





 Do you Yahoo!?
 Yahoo! SiteBuilder - Free, easy-to-use web site design software

 Do you Yahoo!?
 Yahoo! SiteBuilder - Free, easy-to-use web site design software

 Do you Yahoo!?
 Yahoo! SiteBuilder - Free, easy-to-use web site design software


 --
 redhat-list mailing list
 unsubscribe mailto:[EMAIL PROTECTED]
 https://www.redhat.com/mailman/listinfo/redhat-list



-- 
redhat-list mailing list
unsubscribe mailto:[EMAIL PROTECTED]
https://www.redhat.com/mailman/listinfo/redhat-list


RE: Rehat 8 - How to Setup FTP Server

2003-07-24 Thread Rigler, Steve
chkconfig does it for you.  Xinetd services are the only thing (I've
noticed) that this applies to.

-Steve

-Original Message-
From: Jonathan Bartlett [mailto:[EMAIL PROTECTED]
Sent: Thursday, July 24, 2003 1:19 PM
To: [EMAIL PROTECTED]
Subject: RE: Rehat 8 - How to Setup FTP Server


I think you have to restart xinetd manually.  I could be wrong and am too
lazy to test :)

Jon

On Thu, 24 Jul 2003, Rigler, Steve wrote:

 It sounds like there may be some confusion as to what the service
 command does.

 /sbin/service is basically a script that prepends /etc/init.d to
 whatever argument you feed it.  When you enter service vsftpd start
 it says service not found because it has no script in /etc/init.d.
 The reason it has no script in /etc/init.d is because it is an xinetd
 service and must be started/stopped within xinetd.

 The easiest way to manage services (xinetd based or other) is through
 chkconfig.  Just type chkconfig --list service name and it will
 tell you whether it is enabled or not.  To enable a service, do
 chkconfig service name on.  If it is xinetd based, it will change
 to disabled to no and restart xinetd for you.  Naturally xinetd
 should also be enabled to run at boot chkconfig --list xinetd.

 -Steve

 -Original Message-
 From: Real Cucumber [mailto:[EMAIL PROTECTED]
 Sent: Thursday, July 24, 2003 12:58 PM
 To: [EMAIL PROTECTED]
 Subject: RE: Rehat 8 - How to Setup FTP Server


 Disable is already set to no.

 When I do:

 service xinetd stop or start - it works

 When I do:

 service vsftpd stop or start - it says unrecognized service.

 However when I go through the Gnome GUI and click Services, it is listed and 
 checked, but the stop/start buttons are greyed out...

 I have no idea what is going on - its a fresh install of RH8 in server mode - and I 
 can't get vsftp to run.




 Thomas E. Dukes [EMAIL PROTECTED] wrote:
 I think you need to look in /etc/xinetd and find the file for vsftpd.  Open it and 
 change disable=yes to disbale = no


 Palmetto Shopper
 http://www.palmettoshopper.com
 Serving all of South Carolina and beyond!
 Palmetto Politics
 http://www.palmettoshopper.com/politics/


 -Original Message-
 From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Real Cucumber
 Sent: Wednesday, July 23, 2003 7:24 PM
 To: [EMAIL PROTECTED]
 Subject: Re: Rehat 8 - How to Setup FTP Server


 It won't let me... it just says I need to enable xinetd - but that is already 
 enabled



 Wendell MacKenzie [EMAIL PROTECTED] wrote:
 did you enable the vsftp service?
 - Original Message -
 From: Real Cucumber
 To: [EMAIL PROTECTED]
 Sent: Wednesday, July 23, 2003 8:10 PM
 Subject: Rehat 8 - How to Setup FTP Server


 Hi,

 I'm a linux n00b and I've just installed a fresh server install of Redhat 8.

 I see that it installed 2 FTP packages:

 -vsftp  (secure/full featured ftp)
 -anonftp (anonymous/read only)

 So I wanted to get vsftp working, however when I checked in services and tried to 
 start vsftp - it said it required me to enable xinted... however xinetd is already 
 checked and started, I've even tried restarting it yet it will still not let me 
 click the start button for vsftp - its greyed out.

 I can't find any documention or help or even files when searching the hard drive 
 related to vsftp

 If anyone has some kind of a user's guide or quick-start manual it would be 
 appreciated.

 I'd like to be able to setup user accounts and limit their access to specified 
 directories etc... as well as use SSH FTP and normal FTP connectoins...

 Any help appreciated.





 Do you Yahoo!?
 Yahoo! SiteBuilder - Free, easy-to-use web site design software

 Do you Yahoo!?
 Yahoo! SiteBuilder - Free, easy-to-use web site design software

 Do you Yahoo!?
 Yahoo! SiteBuilder - Free, easy-to-use web site design software


 --
 redhat-list mailing list
 unsubscribe mailto:[EMAIL PROTECTED]
 https://www.redhat.com/mailman/listinfo/redhat-list



-- 
redhat-list mailing list
unsubscribe mailto:[EMAIL PROTECTED]
https://www.redhat.com/mailman/listinfo/redhat-list


-- 
redhat-list mailing list
unsubscribe mailto:[EMAIL PROTECTED]
https://www.redhat.com/mailman/listinfo/redhat-list


RE: Rehat 8 - How to Setup FTP Server

2003-07-24 Thread Real Cucumber
It shows vsftp on when I did the chkconfig --list

But I still can't connect to the server thorugh ftp, telnet, web, nothing - and I installed with firewall off... and I really don't know how to get this machine to accept connections and make sure everything is working.

Even apache is running and I've placed an index.htm file in the virtual host web folder and I can't view it when I try http://ipaddress/ 

Is there some kind of global setting for me to make sure that RH8 allows connections?

I'd ideally like to have FTP, Web, MySQL, and Telnet services running - this machine is on a local area network with a gateway setting and is not directly connected to the net.


"Rigler, Steve" [EMAIL PROTECTED] wrote:

It sounds like there may be some confusion as to what the servicecommand does./sbin/service is basically a script that prepends "/etc/init.d" towhatever argument you feed it. When you enter "service vsftpd start"it says service not found because it has no script in /etc/init.d. The reason it has no script in /etc/init.d is because it is an xinetdservice and must be started/stopped within xinetd.The easiest way to manage services (xinetd based or other) is throughchkconfig. Just type "chkconfig --list " and it willtell you whether it is enabled or not. To enable a service, do"chkconfig on". If it is xinetd based, it will changeto "disabled" to "no" and restart xinetd for you. Naturally xinetdshould also be enabled to run at boot "chkconfig --list xinetd".-Steve-Original
 Message-From: Real Cucumber [mailto:[EMAIL PROTECTED]Sent: Thursday, July 24, 2003 12:58 PMTo: [EMAIL PROTECTED]Subject: RE: Rehat 8 - How to Setup FTP ServerDisable is already set to no.When I do:service xinetd stop or start - it worksWhen I do:service vsftpd stop or start - it says "unrecognized service".However when I go through the Gnome GUI and click Services, it is listed and checked, but the stop/start buttons are greyed out...I have no idea what is going on - its a fresh install of RH8 in server mode - and I can't get vsftp to run."Thomas E. Dukes" <[EMAIL PROTECTED]>wrote:I think you need to look in /etc/xinetd and find the file for vsftpd. Open it and change disable=yes to disbale = noPalmetto Shopperhttp://www.palmettoshopper.comServing all of South Carolina and beyond!Palmetto
 Politicshttp://www.palmettoshopper.com/politics/-Original Message-From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Real CucumberSent: Wednesday, July 23, 2003 7:24 PMTo: [EMAIL PROTECTED]Subject: Re: Rehat 8 - How to Setup FTP ServerIt won't let me... it just says I need to enable xinetd - but that is already enabledWendell MacKenzie <[EMAIL PROTECTED]>wrote:did you enable the vsftp service?- Original Message - From: Real Cucumber To: [EMAIL PROTECTED] Sent: Wednesday, July 23, 2003 8:10 PMSubject: Rehat 8 - How to Setup FTP ServerHi,I'm a linux n00b and I've just installed a fresh server install of Redhat 8.I see that it installed 2 FTP packages:-vsftp (secure/full featured ftp)-anonftp (anonymous/read only)So I wanted to get vsftp working, however when I checked in service!
s and
 tried to start vsftp - it said it required me to enable xinted... however xinetd is already checked and started, I've even tried restarting it yet it will still not let me click the "start" button for vsftp - its greyed out.I can't find any documention or help or even files when searching the hard drive related to "vsftp"If anyone has some kind of a user's guide or quick-start manual it would be appreciated.I'd like to be able to setup user accounts and limit their access to specified directories etc... as well as use SSH FTP and normal FTP connectoins...Any help appreciated.Do you Yahoo!?Yahoo! SiteBuilder - Free, easy-to-use web site design softwareDo you Yahoo!?Yahoo! SiteBuilder - Free, easy-to-use web site design softwareDo you Yahoo!?Yahoo! SiteBuilder - Free, easy-to-use web site design software-- redhat-list mailing listunsubscribe
 mailto:[EMAIL PROTECTED]https://www.redhat.com/mailman/listinfo/redhat-list
Do you Yahoo!?
Yahoo! SiteBuilder - Free, easy-to-use web site design software

RE: Rehat 8 - How to Setup FTP Server

2003-07-24 Thread Rigler, Steve
Did you make sure that xinetd was turned on: chkconfig --list xinetd
And to make sure it is running: service xinetd status

Also, to make sure firewall rules aren't getting in the way do:
netstat -tln

If http and ftp are running you'll see them listening on their associated
ports (0.0.0.0:80 for http, 0.0.0.0:21 for ftp, 0.0.0.0:23 for telnet).
If they're running and you can't connect then firewall rules would likely
be getting in the way (to disable, do
chkconfig iptables off  service iptables stop).

-Steve

-Original Message-
From: Real Cucumber [mailto:[EMAIL PROTECTED]
Sent: Thursday, July 24, 2003 1:30 PM
To: [EMAIL PROTECTED]
Subject: RE: Rehat 8 - How to Setup FTP Server


It shows vsftp on when I did the chkconfig --list

But I still can't connect to the server thorugh ftp, telnet, web, nothing - and I 
installed with firewall off... and I really don't know how to get this machine to 
accept connections and make sure everything is working.

Even apache is running and I've placed an index.htm file in the virtual host web 
folder and I can't view it when I try http://ipaddress/ 

Is there some kind of global setting for me to make sure that RH8 allows connections?

I'd ideally like to have FTP, Web, MySQL, and Telnet services running - this machine 
is on a local area network with a gateway setting and is not directly connected to the 
net.




Rigler, Steve [EMAIL PROTECTED] wrote:
It sounds like there may be some confusion as to what the service
command does.

/sbin/service is basically a script that prepends /etc/init.d to
whatever argument you feed it. When you enter service vsftpd start
it says service not found because it has no script in /etc/init.d. 
The reason it has no script in /etc/init.d is because it is an xinetd
service and must be started/stopped within xinetd.

The easiest way to manage services (xinetd based or other) is through
chkconfig. Just type chkconfig --list  and it will
tell you whether it is enabled or not. To enable a service, do
chkconfig on. If it is xinetd based, it will change
to disabled to no and restart xinetd for you. Naturally xinetd
should also be enabled to run at boot chkconfig --list xinetd.

-Steve

-Original Message-
From: Real Cucumber [mailto:[EMAIL PROTECTED]
Sent: Thursday, July 24, 2003 12:58 PM
To: [EMAIL PROTECTED]
Subject: RE: Rehat 8 - How to Setup FTP Server


Disable is already set to no.

When I do:

service xinetd stop or start - it works

When I do:

service vsftpd stop or start - it says unrecognized service.

However when I go through the Gnome GUI and click Services, it is listed and checked, 
but the stop/start buttons are greyed out...

I have no idea what is going on - its a fresh install of RH8 in server mode - and I 
can't get vsftp to run.




Thomas E. Dukes wrote:
I think you need to look in /etc/xinetd and find the file for vsftpd. Open it and 
change disable=yes to disbale = no


Palmetto Shopper
http://www.palmettoshopper.com
Serving all of South Carolina and beyond!
Palmetto Politics
http://www.palmettoshopper.com/politics/


-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Real Cucumber
Sent: Wednesday, July 23, 2003 7:24 PM
To: [EMAIL PROTECTED]
Subject: Re: Rehat 8 - How to Setup FTP Server


It won't let me... it just says I need to enable xinetd - but that is already 
enabled



Wendell MacKenzie wrote:
did you enable the vsftp service?
- Original Message - 
From: Real Cucumber 
To: [EMAIL PROTECTED] 
Sent: Wednesday, July 23, 2003 8:10 PM
Subject: Rehat 8 - How to Setup FTP Server


Hi,

I'm a linux n00b and I've just installed a fresh server install of Redhat 8.

I see that it installed 2 FTP packages:

-vsftp (secure/full featured ftp)
-anonftp (anonymous/read only)

So I wanted to get vsftp working, however when I checked in service! s and tried to 
start vsftp - it said it required me to enable xinted... however xinetd is already 
checked and started, I've even tried restarting it yet it will still not let me click 
the start button for vsftp - its greyed out.

I can't find any documention or help or even files when searching the hard drive 
related to vsftp

If anyone has some kind of a user's guide or quick-start manual it would be 
appreciated.

I'd like to be able to setup user accounts and limit their access to specified 
directories etc... as well as use SSH FTP and normal FTP connectoins...

Any help appreciated.





Do you Yahoo!?
Yahoo! SiteBuilder - Free, easy-to-use web site design software

Do you Yahoo!?
Yahoo! SiteBuilder - Free, easy-to-use web site design software

Do you Yahoo!?
Yahoo! SiteBuilder - Free, easy-to-use web site design software


-- 
redhat-list mailing list
unsubscribe mailto:[EMAIL PROTECTED]
https://www.redhat.com/mailman/listinfo/redhat-list

Do you Yahoo!?
Yahoo! SiteBuilder - Free, easy-to-use web site design software


-- 
redhat-list mailing list
unsubscribe mailto:[EMAIL PROTECTED]
https://www.redhat.com

RE: Rehat 8 - How to Setup FTP Server

2003-07-24 Thread Jonathan Bartlett
chkconfig does NOT show what is running.  It shows what is configured to
start when you ENTER a given run level (usually by booting to it).

To check if a service is running, do

service SERVICENAME status

To start a service, do

service SERVICENAME start

Jon

On Thu, 24 Jul 2003, Real Cucumber wrote:

 It shows vsftp on when I did the chkconfig --list

 But I still can't connect to the server thorugh ftp, telnet, web, nothing - and I 
 installed with firewall off... and I really don't know how to get this machine to 
 accept connections and make sure everything is working.

 Even apache is running and I've placed an index.htm file in the virtual host web 
 folder and I can't view it when I try http://ipaddress/

 Is there some kind of global setting for me to make sure that RH8 allows connections?

 I'd ideally like to have FTP, Web, MySQL, and Telnet services running - this machine 
 is on a local area network with a gateway setting and is not directly connected to 
 the net.




 Rigler, Steve [EMAIL PROTECTED] wrote:
 It sounds like there may be some confusion as to what the service
 command does.

 /sbin/service is basically a script that prepends /etc/init.d to
 whatever argument you feed it. When you enter service vsftpd start
 it says service not found because it has no script in /etc/init.d.
 The reason it has no script in /etc/init.d is because it is an xinetd
 service and must be started/stopped within xinetd.

 The easiest way to manage services (xinetd based or other) is through
 chkconfig. Just type chkconfig --list  and it will
 tell you whether it is enabled or not. To enable a service, do
 chkconfig on. If it is xinetd based, it will change
 to disabled to no and restart xinetd for you. Naturally xinetd
 should also be enabled to run at boot chkconfig --list xinetd.

 -Steve

 -Original Message-
 From: Real Cucumber [mailto:[EMAIL PROTECTED]
 Sent: Thursday, July 24, 2003 12:58 PM
 To: [EMAIL PROTECTED]
 Subject: RE: Rehat 8 - How to Setup FTP Server


 Disable is already set to no.

 When I do:

 service xinetd stop or start - it works

 When I do:

 service vsftpd stop or start - it says unrecognized service.

 However when I go through the Gnome GUI and click Services, it is listed and 
 checked, but the stop/start buttons are greyed out...

 I have no idea what is going on - its a fresh install of RH8 in server mode - and I 
 can't get vsftp to run.




 Thomas E. Dukes wrote:
 I think you need to look in /etc/xinetd and find the file for vsftpd. Open it and 
 change disable=yes to disbale = no


 Palmetto Shopper
 http://www.palmettoshopper.com
 Serving all of South Carolina and beyond!
 Palmetto Politics
 http://www.palmettoshopper.com/politics/


 -Original Message-
 From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Real Cucumber
 Sent: Wednesday, July 23, 2003 7:24 PM
 To: [EMAIL PROTECTED]
 Subject: Re: Rehat 8 - How to Setup FTP Server


 It won't let me... it just says I need to enable xinetd - but that is already 
 enabled



 Wendell MacKenzie wrote:
 did you enable the vsftp service?
 - Original Message -
 From: Real Cucumber
 To: [EMAIL PROTECTED]
 Sent: Wednesday, July 23, 2003 8:10 PM
 Subject: Rehat 8 - How to Setup FTP Server


 Hi,

 I'm a linux n00b and I've just installed a fresh server install of Redhat 8.

 I see that it installed 2 FTP packages:

 -vsftp (secure/full featured ftp)
 -anonftp (anonymous/read only)

 So I wanted to get vsftp working, however when I checked in services and tried to 
 start vsftp - it said it required me to enable xinted... however xinetd is already 
 checked and started, I've even tried restarting it yet it will still not let me 
 click the start button for vsftp - its greyed out.

 I can't find any documention or help or even files when searching the hard drive 
 related to vsftp

 If anyone has some kind of a user's guide or quick-start manual it would be 
 appreciated.

 I'd like to be able to setup user accounts and limit their access to specified 
 directories etc... as well as use SSH FTP and normal FTP connectoins...

 Any help appreciated.





 Do you Yahoo!?
 Yahoo! SiteBuilder - Free, easy-to-use web site design software

 Do you Yahoo!?
 Yahoo! SiteBuilder - Free, easy-to-use web site design software

 Do you Yahoo!?
 Yahoo! SiteBuilder - Free, easy-to-use web site design software


 --
 redhat-list mailing list
 unsubscribe mailto:[EMAIL PROTECTED]
 https://www.redhat.com/mailman/listinfo/redhat-list


 -
 Do you Yahoo!?
 Yahoo! SiteBuilder - Free, easy-to-use web site design software


-- 
redhat-list mailing list
unsubscribe mailto:[EMAIL PROTECTED]
https://www.redhat.com/mailman/listinfo/redhat-list


RE: Rehat 8 - How to Setup FTP Server

2003-07-24 Thread Real Cucumber
Thanks very much I now have FTP, Web, PHP,SSH, and MySQL working - although I'm still trying to figure out where all ther user and permissions are stored... heh

Would you by any chance know how to make it so that MySQL accepts connections from the GUI Windows client MySQL Control Center (using default port 3306) ??

It lets me connect via SSH and via the webpages - but I can't get the control center client to connect - yet it does work to an ISP hosted mysql server that I have - just not to my local Redhat machine.




"Rigler, Steve" [EMAIL PROTECTED] wrote:

Did you make sure that xinetd was turned on: chkconfig --list xinetdAnd to make sure it is running: service xinetd statusAlso, to make sure firewall rules aren't getting in the way do:netstat -tlnIf http and ftp are running you'll see them listening on their associatedports (0.0.0.0:80 for http, 0.0.0.0:21 for ftp, 0.0.0.0:23 for telnet).If they're running and you can't connect then firewall rules would likelybe getting in the way (to disable, dochkconfig iptables off  service iptables stop).-Steve-Original Message-From: Real Cucumber [mailto:[EMAIL PROTECTED]Sent: Thursday, July 24, 2003 1:30 PMTo: [EMAIL PROTECTED]Subject: RE: Rehat 8 - How to Setup FTP ServerIt shows vsftp on when I did the chkconfig --listBut I still can't connect to the server thorugh !
ftp,
 telnet, web, nothing - and I installed with firewall off... and I really don't know how to get this machine to accept connections and make sure everything is working.Even apache is running and I've placed an index.htm file in the virtual host web folder and I can't view it when I try http://ipaddress/ Is there some kind of global setting for me to make sure that RH8 allows connections?I'd ideally like to have FTP, Web, MySQL, and Telnet services running - this machine is on a local area network with a gateway setting and is not directly connected to the net."Rigler, Steve" <[EMAIL PROTECTED]>wrote:It sounds like there may be some confusion as to what the servicecommand does./sbin/service is basically a script that prepends "/etc/init.d" towhatever argument you feed it. When you enter "service vsftpd start"it says service not found because it has no script in /etc/init.d. The reason it has no scrip!
t in
 /etc/init.d is because it is an xinetdservice and must be started/stopped within xinetd.The easiest way to manage services (xinetd based or other) is throughchkconfig. Just type "chkconfig --list " and it willtell you whether it is enabled or not. To enable a service, do"chkconfig on". If it is xinetd based, it will changeto "disabled" to "no" and restart xinetd for you. Naturally xinetdshould also be enabled to run at boot "chkconfig --list xinetd".-Steve-Original Message-From: Real Cucumber [mailto:[EMAIL PROTECTED]Sent: Thursday, July 24, 2003 12:58 PMTo: [EMAIL PROTECTED]Subject: RE: Rehat 8 - How to Setup FTP ServerDisable is already set to no.When I do:service xinetd stop or start - it worksWhen I do:service vsftpd stop or start - it says "unrecognized service".However when I go through the Gnome GUI and click Services, it is listed and
 checked, but the stop/start buttons are greyed out...I have no idea what is going on - its a fresh install of RH8 in server mode - and I can't get vsftp to run."Thomas E. Dukes" wrote:I think you need to look in /etc/xinetd and find the file for vsftpd. Open it and change disable=yes to disbale = noPalmetto Shopperhttp://www.palmettoshopper.comServing all of South Carolina and beyond!Palmetto Politicshttp://www.palmettoshopper.com/politics/-Original Message-From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Real CucumberSent: Wednesday, July 23, 2003 7:24 PMTo: [EMAIL PROTECTED]Subject: Re: Rehat 8 - How to Setup FTP ServerIt won't let me... it just says I need to enable xinetd - but that is already enabledWendell MacKenzie wrote:did you enable the vsftp service?- Original Message - From: !
Real
 Cucumber To: [EMAIL PROTECTED] Sent: Wednesday, July 23, 2003 8:10 PMSubject: Rehat 8 - How to Setup FTP ServerHi,I'm a linux n00b and I've just installed a fresh server install of Redhat 8.I see that it installed 2 FTP packages:-vsftp (secure/full featured ftp)-anonftp (anonymous/read only)So I wanted to get vsftp working, however when I checked in service! s and tried to start vsftp - it said it required me to enable xinted... however xinetd is already checked and started, I've even tried restarting it yet it will still not let me click the "start" button for vsftp - its greyed out.I can't find any documention or help or even files when searching the hard drive related to "vsftp"If anyone has some kind of a user's guide or quick-start manual it would be appreciated.I'd like to be able to setup user accounts and limit their access to specified directories etc... as well as use SSH FTP !
and
 normal FTP connectoins...Any help appreciated.Do you Yahoo!?Yahoo! SiteBuilder - Free, easy-to-use web site design 

Re: Rehat 8 - How to Setup FTP Server

2003-07-23 Thread Wendell MacKenzie



did you enable the vsftp service?

  - Original Message - 
  From: 
  Real 
  Cucumber 
  To: [EMAIL PROTECTED] 
  Sent: Wednesday, July 23, 2003 8:10 
  PM
  Subject: Rehat 8 - How to Setup FTP 
  Server
  
  
  Hi,
  
  I'm a linux n00b and I've just installed a fresh server install of Redhat 
  8.
  
  I see that it installed 2 FTP packages:
  
  -vsftp (secure/full featuredftp)
  -anonftp (anonymous/read only)
  
  So I wanted to get vsftp working, however when I checked in services and 
  tried to start vsftp - it said it required me to enable xinted... however 
  xinetd is already checked and started, I've even tried restarting it yet it 
  will still not let me click the "start" button for vsftp - its greyed 
  out.
  
  I can't find any documention or help or even files when searching the 
  hard drive related to "vsftp"
  
  If anyone has some kind of a user's guide or quick-start manual it would 
  be appreciated.
  
  I'd like to be able to setup user accounts and limit their access to 
  specified directories etc... as well as use SSH FTP and normal FTP 
  connectoins...
  
  Any help appreciated.
  
  
  
  
  
  Do you Yahoo!?Yahoo! 
  SiteBuilder - Free, easy-to-use web site design 
software


Re: Rehat 8 - How to Setup FTP Server

2003-07-23 Thread Real Cucumber
It won't let me... it just says I need to enable xinetd - but that is already enabled

Wendell MacKenzie [EMAIL PROTECTED] wrote:





did you enable the vsftp service?

- Original Message - 
From: Real Cucumber 
To: [EMAIL PROTECTED] 
Sent: Wednesday, July 23, 2003 8:10 PM
Subject: Rehat 8 - How to Setup FTP Server


Hi,

I'm a linux n00b and I've just installed a fresh server install of Redhat 8.

I see that it installed 2 FTP packages:

-vsftp (secure/full featuredftp)
-anonftp (anonymous/read only)

So I wanted to get vsftp working, however when I checked in services and tried to start vsftp - it said it required me to enable xinted... however xinetd is already checked and started, I've even tried restarting it yet it will still not let me click the "start" button for vsftp - its greyed out.

I can't find any documention or help or even files when searching the hard drive related to "vsftp"

If anyone has some kind of a user's guide or quick-start manual it would be appreciated.

I'd like to be able to setup user accounts and limit their access to specified directories etc... as well as use SSH FTP and normal FTP connectoins...

Any help appreciated.





Do you Yahoo!?Yahoo! SiteBuilder - Free, easy-to-use web site design software
Do you Yahoo!?
Yahoo! SiteBuilder - Free, easy-to-use web site design software

RE: Rehat 8 - How to Setup FTP Server

2003-07-23 Thread Thomas E. Dukes
Title: Message



I 
think you need to look in /etc/xinetd and find the file for vsftpd. Open 
it and change disable=yes to disbale = no


Palmetto Shopperhttp://www.palmettoshopper.comServing 
all of South Carolina and beyond!Palmetto Politicshttp://www.palmettoshopper.com/politics/

  
  -Original Message-From: 
  [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On 
  Behalf Of Real CucumberSent: Wednesday, July 23, 2003 7:24 
  PMTo: [EMAIL PROTECTED]Subject: Re: Rehat 8 - How 
  to Setup FTP Server
  It won't let me... it just says I need to enable xinetd - but that is 
  already enabled
  
  Wendell MacKenzie [EMAIL PROTECTED] 
  wrote:
  
  



did you enable the vsftp service?

  - Original Message - 
  From: 
  Real 
  Cucumber 
  To: [EMAIL PROTECTED] 
  Sent: Wednesday, July 23, 2003 8:10 
  PM
  Subject: Rehat 8 - How to Setup FTP 
  Server
  
  
  Hi,
  
  I'm a linux n00b and I've just installed a fresh server install of 
  Redhat 8.
  
  I see that it installed 2 FTP packages:
  
  -vsftp (secure/full featuredftp)
  -anonftp (anonymous/read only)
  
  So I wanted to get vsftp working, however when I checked in services 
  and tried to start vsftp - it said it required me to enable xinted... 
  however xinetd is already checked and started, I've even tried restarting 
  it yet it will still not let me click the "start" button for vsftp - its 
  greyed out.
  
  I can't find any documention or help or even files when searching the 
  hard drive related to "vsftp"
  
  If anyone has some kind of a user's guide or quick-start manual it 
  would be appreciated.
  
  I'd like to be able to setup user accounts and limit their access to 
  specified directories etc... as well as use SSH FTP and normal FTP 
  connectoins...
  
  Any help appreciated.
  
  
  
  
  
  Do you Yahoo!?Yahoo! 
  SiteBuilder - Free, easy-to-use web site design 
  software
  
  
  Do you Yahoo!?Yahoo! 
  SiteBuilder - Free, easy-to-use web site design 
software