Ubuntu利用SWAT管理SAMBA服务器


  Ubuntu下利用SWAT管理SAMBA服务器

  1、apt-get install xinetd swat依赖xineed才能正常工作

  2、sudo apt-get samba samba-common smbfs smbclient swat

  3、修改 vi /etc/inetd.conf

  将 ## swat stream tcp nowait.400 root /usr/sbin/tcpd \ /usr/sbin/swat

  改为

  swat stream tcp nowait.400 root /usr/sbin/tcpd \ /usr/sbin/swat

如果已去掉了##就可以了。有时也默认就去掉了

  4、新建swat文件 sudo vi /etc/xinetd.d/swat

  内容如下:

  # description: SAMBA SWAT

  service swat

  {

  disable = no

  socket_type = stream

  protocol = tcp

  #should use a more limited user here

  user = root

  wait = no

  server = /usr/sbin/swat

  }

  5、sudo dpkg-reconfigure xinetd

  6、查看swat是否运行

  运行命令: netstat -lt

  如果出现tcp 0 0 *:swat *:* LISTEN,表示swat配置运行成功,正在监听

  7、 http://localhost:901 大功告成!

如果你不使用ROOT账号。可能只能监视。只有4个图标。ubuntu默认是没有激活ROOT的。

sudo passwd root

输入两次密码。就可以了

相关内容