Bravo List

Bravo List (http://www.bvlist.com/index.php)
-   Gazelle (http://www.bvlist.com/forumdisplay.php?f=40)
-   -   How To Set Up Gazelle on a Debian Server (http://www.bvlist.com/showthread.php?t=2359)

pirpiliter 3rd April 2009 11:47

How To Set Up Gazelle on a Debian Server
 
Tutorial:How To Set Up Gazelle on a Debian Server

This was taken from from ScT forum, and left exactly as-is … take a look here:
ScT/forums_viewtopic.php?id=19331&page=1#p344573

This guide allows anyone to setup their very own BitTorrent tracker using the fancy and flashing Project Gazelle sourcecode by the What.CD development team — Setup and steal releases off ScT and you’ll be as good as SCC, ScL and the likes in no time and NO EFFORT!!!!

This guide is written for Debian (etch), but with little modification you can suit it for other distributions as well. It’s time to go and rent that 20€ Kimsufi now and start your very own career as the SysOp of your imba tracker. While not necessary, it’s preferred that you purchase a domain for the site as well. Preferably something that has “scene” prefix or postfix!!!! Like sceneIMBA.com, cbatogetmyownsceneaxx.com or faggotscene.net.

Want to run a tracker, but your low-end seedbox with 512mb ram runs on Windows? GTFO.

Here’s what you need to install, via apt-get.

1. Dependencies:

Code:

$ apt-get install build-essential apache2 php5 libapache2-mod-php5 mysql-server libmysqlclient15-dev php5-mysql memcached php5-memcache php5-gd php5-mcrypt subversion automake
Code:

$ apt-get install cmake g++ libboost-date-time-dev libboost-dev libboost-filesystem-dev libboost-program-options-dev libboost-regex-dev libboost-serialization-dev make zlib1g-dev
For database management you can use CLI or some sort of gay www frontend such as phpmyadmin (apt-get install phpmyadmin). If you don’t know anything about MySQL just tell yourself that it’ll all be fine and skip this step.

2. Configuring apache

Apache2 installs itself in /etc/apache2. By default, it serves its **** from /var/www directory, but we’ll change that along with some other stuff in a mo.
First, create a directory where you store your web-frontend files. For example:

Code:

$ cd /
$ mkdir site

Now you’ve got a directory called “site” in your filesystem root. Next it’s time to let apache now you’ll want web files served from there.
The file to alter is /etc/apache2/sites-enabled/000-default

Code:

$ nano /etc/apache2/sites-enabled/000-default
Empty the whole file and replace it with this (modify if you like and know your ****):

Code:

# Standard http port
    NameVirtualHost *:80

   
    ServerAdmin leet@sysop.com
    ServerName scenefaggot.net

    DocumentRoot /site/

   
    Order deny,allow
    Deny from all
   


   
    Order deny,allow
    Deny from all
   


   
    Order deny,allow
    Deny from all
   


   
    Order deny,allow
    Deny from all
   


   
    Order deny,allow
    Deny from all
   


   

It’s noteworthy that if you wish to enable leet SSL browsing for your site, just add another clause there for:

Code:

# HTTPS port
NameVirtualHost *:443


SSLEngine on
SSLCertificateFile /path/to/cert.crt
SSLCertificateKeyFile /path/to/cert.key

And also add Listen 443 to /etc/apache2/ports.conf
Then you just need to create a certificate (consult google).

Ogay, we’ve done configuring apache. Time to reload the changes

Code:

$ apache2 -k restart


3. Getting sourcecode


EDIT: since the repository is offline you can get the exact copy of the source here: http://www.bvlist.com/gazelle/2208-g...n-11397-a.html

You can fetch the source from What’s SVN repository as follows:



4.Configuring MySQL


Principally you should take a look at /etc/mysql/my.cnf and optimize it for your setup and needs. Obviously you’re too much of a slob and cba to, so just skip this step and tell yourself it’ll all be ok. What you should do, though, is to setup a root password for MySQL as it is not automatic.

Code:

$ mysql -u root
$ use mysql
$ update user set password=PASSWORD(”NEWPASSWORD”) where User=’root’;
$ flush privileges;
$ quit;

You should probably create a different MySQL user for the site with less-than-root rights. But again, you cba to do so, so we’ll just skip this.

5. Configuring the site

Then you will need to navigate to youripaddress and follow instructions. Literacy is required in this step unfortunately. If all is well, you should now be able to access your site. If not, all is not well.

That is not all, though. You’ve got the site web frontend working, but not the tracker — yet. Project Gazelle includes a tracker written in C++. It is its program that runs on its own. Remember to remove the installation directory after successful install. Ie, rm -r /site/install

6. Getting tracker up and running

Code:

$ cd /site/
$ tar zxfv xbtt.tar.gz
$ cd xbtt/build/xbtt
$ ./autogen.sh
$ make
$ cd src

Now you’ve got a compiled tracker that is ready to work. Well, almost ready. There’s a file called xbt_tracker.conf that you need to modify. The fields are rather obvious, there’s stuff like:

Code:

mysql_host =
mysql_user =

Yeah, you got the idea. If not, GTFO.

There’s also the actual tracker executeable xbt_tracker. Which you’ll need to run with command ./xbt_tracker xbt_tracker.conf after the last step.

The last step to get the tracker working is to insert some parameters into MySQL. It defaults to What.cd’s IP address and stuff, and you must change that.

Code:

$ mysql -u root -pNEWPASSWORD
$ use databasename_that_you_defined_in_install_php
$ select * from xbt_config;

There are some important values. You’ll need to modify some and some not if you don’t want to. Anyway:

Code:

$ update xbt_config set value = ‘YOURIPADDRESSHERE’ where value = ‘70.47.114.223′;
$ update xbt_config set value = ‘WHATPORTYOUWANNAUSE’ where value = ‘34000′;

$ select * from xbt_client_whitelist;

Whitelisted, ie. allowed clients. These are outdated; you will need to insert Peer IDs for newer clients.
If you don’t know how to, tell everyone to use uTorrent 1.8 or it’s banhammer time.

Code:

$ insert into xbt_client_whitelist (peer_id, vstring) values (’-UT1810-’, ‘uTorrent 1.8.1′);

andsh 25th April 2009 13:04

error
 
Code:

./xbt_tracker xbt_tracker.conf
/site/xbtt/build/xbtt/src/.libs/lt-xbt_tracker: error while loading shared libraries: libmisc.so.0: cannot open shared object file: No such file or directory

When I "make" says
Code:

sql_result.h:70: error: 'atoll' was not declared in this scope
make[4]: *** [database.lo] Error 1
make[4]: Leaving directory `/site/xbtt/build/xbtt/src/misc/sql'
make[3]: *** [all-recursive] Error 1
make[3]: Leaving directory `/site/xbtt/build/xbtt/src/misc'
make[2]: *** [all-recursive] Error 1
make[2]: Leaving directory `/site/xbtt/build/xbtt/src'
make[1]: *** [all-recursive] Error 1
make[1]: Leaving directory `/site/xbtt/build/xbtt'
make: *** [all] Error 2


Fynnon 25th April 2009 13:39

Quote:

Originally Posted by adyshor (Post 11061)
Code:

./xbt_tracker xbt_tracker.conf
/site/xbtt/build/xbtt/src/.libs/lt-xbt_tracker: error while loading shared libraries: libmisc.so.0: cannot open shared object file: No such file or directory


You must create some simlinks for libraries.. should be something like this:
Code:

ln -sf ../../lib/libmisc.so.0 /usr/lib/libmisc.so
not really sure...im not very good with linux :P

andsh 25th April 2009 13:41

Quote:

Originally Posted by pirpiliter (Post 10506)


The last step to get the tracker working is to insert some parameters into MySQL. It defaults to What.cd’s IP address and stuff, and you must change that.

$ mysql -u root -pNEWPASSWORD
$ use databasename_that_you_defined_in_install_php
$ select * from xbt_config;

There are some important values. You’ll need to modify some and some not if you don’t want to. Anyway:

$ update xbt_config set value = ‘YOURIPADDRESSHERE’ where value = ‘70.47.114.223′;
$ update xbt_config set value = ‘WHATPORTYOUWANNAUSE’ where value = ‘34000′;

$ select * from xbt_client_whitelist;

Whitelisted, ie. allowed clients. These are outdated; you will need to insert Peer IDs for newer clients. If you don’t know how to, tell everyone to use uTorrent 1.8 or it’s banhammer time.

$ insert into xbt_client_whitelist (peer_id, vstring) values (’-UT1810-’, ‘uTorrent 1.8.1′);

I'm lost here more details pls :unknown:

Quote:

$ select * from xbt_config;
What does * symbolyse?

Late edit: Still same error
Code:

./xbt_tracker xbt_tracker.conf
/site/xbtt/build/xbtt/src/.libs/lt-xbt_tracker: error while loading shared libraries: libmisc.so.0: cannot open shared object file: No such file or directory


joeroberts 25th April 2009 14:10

Quote:

What does * symbolyse?
that is a data base feature indicating "all rows in this table"

andsh 25th April 2009 14:19

Almost done
 
:bubble: Hi I'm almost done a still need to resolve this problem
Code:

./xbt_tracker xbt_tracker.conf
/site/xbtt/build/xbtt/src/.libs/lt-xbt_tracker: error while loading shared libraries: libmisc.so.0: cannot open shared object file: No such file or directory

Thank you all!
Later edit: How can I make the anounce url from tracker.domain to domain?

m1cha31 15th June 2009 07:37

Code:

./xbt_tracker xbt_tracker.conf
/site/xbtt/build/xbtt/src/.libs/lt-xbt_tracker: error while loading shared libraries: libmisc.so.0: cannot open shared object file: No such file or directory

I'm getting that, too. Can someone PM me with some help? It would be greatly appreciated!

Zepp 2nd July 2009 12:51

Got it working, thanks!

GeorgeS069 8th November 2009 04:14

I know this is an older thread but, could use a little help
 
I have xbtt mostly setup and installed but I keep getting this error when I try to run it:
Code:

./xbt_tracker: error while loading shared libraries: libmisc.so.0:
cannot open shared object file: No such file or directory

Any ideas what I need to do to fix this?

Thank You for ANY help with this!

George

P.S. Guess I should give some more info like OS and stuff....the system is running Debian Stable(Lenny) and I do have Libtools installed if that helps any.

calebrulez 27th November 2009 10:55

for the shared libraries issue do
Code:

cp /usr/local/lib/libmisc.* /usr/lib/
you are basically copying the libmisc.so.0.0.0 file to the default sys lib path for xbt to find.

Quote:

Originally Posted by adyshor (Post 11067)
Later edit: How can I make the anounce url from tracker.domain to domain?

edit file /path_to_site_root/classes/config.php and modify line
Code:

define('ANNOUNCE_URL','http://tracker.A.B.C.1D:port'); //Announce URL


All times are GMT +2. The time now is 11:35.

Powered by vBulletin® Version 3.8.11 Beta 3
Copyright ©2000 - 2024, vBulletin Solutions Inc.