SWAT2: Difference between revisions

From SambaWiki
No edit summary
m (Remove link to 'Samba4' page, because it doesn't exist any more.)
 
(5 intermediate revisions by 2 users not shown)
Line 7: Line 7:
= Dependencies =
= Dependencies =


* [[Samba4]] (in particular, the Samba 4 Python bindings)
* Samba4 (in particular, the Samba 4 Python bindings)
* pylons
* pylons
* authkit module ("easy_install authkit") on RHEL based distros. You'll need python-setuptools installed before you can do this.


= Installation =
= Installation =
Line 22: Line 23:
== From Samba ==
== From Samba ==


First, install SWAT or make sure it is available in the Samba server's Python path:
== From Apache ==


$ ./setup.py install
==SWAT2 on Debian Squeeze AMD64 using a Samba4 install from GIT==


Make sure that Samba is running the web service by adding the following line to the *[global]* section of the smb.conf file:
*Note: This procedure needs lots of testing and tweaking in order to provide a fully-functional SWAT2 web interface.


$ server services = +web
Here are the steps I went through on a Debian Squeeze AMD64 machine to achieve a workable setup....


SWAT will now be available at http://localhost:901/.
$ wget http://cloud.github.com/downloads/rvelhote/GSoC-SWAT/swat-git-scripts.tar.gz
$ gunzip swat-git-scripts.tar.gz
$ tar -xvf swat-git-scripts.tar
$ cd ./fromgit


== From Apache ==
Because the GIT repository is not up-to-date with this file, edit the file ./install and change line 10 to:

git clone git://git.samba.org/jelmer/swat.git swat

Now it will retrieve the latest updates.

$ ./install
$ source swatdevenv/bin/activate
$ easy_install pip
$ pip install WebOb==1.0.8
$ pip install authkit

Make sure Samba4 is cloned from the GIT repo, tested with quicktest, configured, made, installed, and properly configured as according to the [[Samba4/HOWTO]]. '''Note: Your path for the python packages may differ according to how you installed Samba4 and what version of Python you have.'''

$ cd ./swatdevenv/lib/python2.6/site-packages/
$ for i in /usr/local/samba/lib/python2.6/site-packages/*; do ln -s $i; done
$ cd ../../../..

Make sure Samba4 is provisioned and running as according to the [[Samba4/HOWTO]].

$ ./run


TODO
Now you can go to http://127.0.0.1:5000 to access SWAT2.

Latest revision as of 02:24, 2 June 2014

SWAT2 is a Python frontend to Samba 4, originally written by Ricardo Velhote.

Repository:

Dependencies

  • Samba4 (in particular, the Samba 4 Python bindings)
  • pylons
  • authkit module ("easy_install authkit") on RHEL based distros. You'll need python-setuptools installed before you can do this.

Installation

There are three ways in which you can run SWAT. Pick one:

Standalone

Use paster:

 $ paster serve development.ini 

From Samba

First, install SWAT or make sure it is available in the Samba server's Python path:

 $ ./setup.py install

Make sure that Samba is running the web service by adding the following line to the *[global]* section of the smb.conf file:

 $ server services = +web

SWAT will now be available at http://localhost:901/.

From Apache

TODO