starting SWAT


 
Thread Tools Search this Thread
Operating Systems Linux SuSE starting SWAT
# 1  
Old 08-03-2004
starting SWAT

everytime I try to start SWAT using : www.localhost:901, it takes me to goggle the search engine. IM still new in the linux world and Im a bit confussed now. any help would be great. Im currently running redhat linux fedora.
# 2  
Old 08-03-2004
Drop the www bit.

Browse to http://localhost:901

Cheers
ZB
# 3  
Old 08-03-2004
SWAT

I have tried http://localhost:901 and Im getting this massage [connection was refused when attempting contact localhost:901 ] where is the problem ?
# 4  
Old 08-03-2004
How are you initialising SWAT on the server?
# 5  
Old 08-03-2004
If you're using xinetd, then ensure that the file /etc/xinetd.d/samba contains something resembling the following

Code:
service swat
{
        socket_type     = stream
        protocol        = tcp
        wait            = no
        user            = root
        server          = /usr/sbin/swat
        only_from       = 127.0.0.1
        disable         = no
        port            = 901
}

Obviously, you may need to change the only_from variable to meet your needs. The error you're getting may be due to the "disable" variable being set to "yes", which is the default on SuSE Linux, for one. Of course, change it to "no" to allow connections and enable the service.

To see if you're running xinetd, issue "ps aux | grep xinetd".

If you are, and the you make any changes to /etc/xinetd.d/samba, then send the xinetd process a HUP signal as root to get it to reread its configuration.

Cheers
ZB
# 6  
Old 08-11-2004
Thanx a the swat server is working good
Login or Register to Ask a Question

Previous Thread | Next Thread

9 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

How to grep a line not starting with # from a file (there are two lines starting with # and normal)?

e.g. File name: File.txt cat File.txt Result: #INBOUND_QUEUE=FAQ1 INBOUND_QUEUE=FAQ2 I want to get the value for one which is not commented out. Thanks, (3 Replies)
Discussion started by: Tanu
3 Replies

2. Red Hat

SWAT Installation problems

Hi, I have been trying to install SWAT on redhat 6 for samba4. The samba server was installed by another administrator but not swat. Please find output of yum install samba-swat in the attached file (2 Replies)
Discussion started by: p2bas
2 Replies

3. Red Hat

Installing SWAT to administer Samba

Hi, I have installed RHEL 5.2 for a specific reason. Anyway I would really like to use SWAT to administer Samba. Samba is currently installed and working almost successfully however SWAT would make life a bit easier. I have tried rpm -ivh samba-swat but it can't find the file. ... (1 Reply)
Discussion started by: drag0n
1 Replies

4. Solaris

swat library error on Solaris 9

Hi, I had define swat in /etc/services, in /etc/inet/inetd.conf. When I start swat http://localhost:901 I receive the follow message: ld.so.1: swat: fatal: libiconv.so.2: open failed: No such file or directory Then I restart the system and the same message is comming. The swat is only... (2 Replies)
Discussion started by: MuellerUrs
2 Replies

5. Shell Programming and Scripting

Starting over

I am re-learning UNIX and want to download Unix to my lab for studying on the road. Any suggestions? Got several books, but need to run scripts :rolleyes: (2 Replies)
Discussion started by: DudeMan
2 Replies

6. Solaris

Storedge Workload Analysis Tool (SWAT)

Does anyone know where I can download this software from , or is it part of a software package that has to be bought. Thanks (0 Replies)
Discussion started by: markdr011
0 Replies

7. UNIX for Dummies Questions & Answers

swat's smb.conf file?

i am running samba 3 on solaris 9 i have a question where is the smb.conf located is it in /usr/local/samba/lib or private (6 Replies)
Discussion started by: rmuhammad
6 Replies

8. UNIX for Dummies Questions & Answers

samba, swat. how to send a HUP to inetd ?

solaris can't support pkill command:( (2 Replies)
Discussion started by: cloudsmell
2 Replies

9. UNIX for Dummies Questions & Answers

Starting up

:confused: I have put together an old machine with a 386DX CPU (40MHz) with 8Mb of RAM and a 160Mb hard disk. One guy told me that its still suitable for UNIX. Can enyone give me some hints on how to start? (1 Reply)
Discussion started by: msm
1 Replies
Login or Register to Ask a Question