Fedora :: Run Transmission-daemon As A Different User?

May 5, 2011

i installed transmission on my fedora14 VPS for headless usage by "yum install transmission transmission-daemon", problem comes when i try to configure the init.d Scrip for transmission-daemon to run as a different user instead of the pre-specified user �transmission�,how should i modify the default transmission-daemon file bellow?

Code:
#!/bin/bash
#

[code]....

View 4 Replies


ADVERTISEMENT

Ubuntu Servers :: Transmission Daemon - Cannot Connect To WAN

Jul 22, 2010

I have installed transmission on a headless server. I am using transmission-daemon and connects to the webclient on the LAN. However from WAN I can't connect. I have forwarded port 9091 in my router and it connects with the server, but I get 403: Forbidden.

Here is my settings.json file:
Code:
{
"alt-speed-down": 500,
"alt-speed-enabled": true,
"alt-speed-time-begin": 480,
"alt-speed-time-day": 127,
"alt-speed-time-enabled": true,
"alt-speed-time-end": 0,
"alt-speed-up": 10,
"bind-address-ipv4": "0.0.0.0",
"bind-address-ipv6": "::",
"blocklist-enabled": false,
"dht-enabled": true,
"download-dir": "/data/download",
"download-limit": 1000,
"download-limit-enabled": 0,
"encryption": 2,
"incomplete-dir": "/var/lib/transmission-daemon/info/Incomplete",
"incomplete-dir-enabled": false,
"lazy-bitfield-enabled": true,
"max-peers-global": 200,
"message-level": 2,
"open-file-limit": 32,
"peer-limit-global": 240,
"peer-limit-per-torrent": 60,
"peer-port": 20683,
"peer-port-random-high": 20500,
"peer-port-random-low": 20599,
"peer-port-random-on-start": true,
"peer-socket-tos": 0,
"pex-enabled": true,
"port-forwarding-enabled": false,
"preallocation": 1,
"proxy": "",
"proxy-auth-enabled": false,
"proxy-auth-password": "",
"proxy-auth-username": "",
"proxy-enabled": false,
"proxy-port": 80,
"proxy-type": 0,
"ratio-limit": 0.2500,
"ratio-limit-enabled": true,
"rename-partial-files": true,
"rpc-authentication-required": true,
"rpc-bind-address": "0.0.0.0",
"rpc-enabled": true,
"rpc-password": "password",
"rpc-port": 9091,
"rpc-username": "transmission",
"rpc-whitelist": "127.0.0.1,*.*.*.*",
"rpc-whitelist-enabled": true,
"speed-limit-down": 1500,
"speed-limit-down-enabled": true,
"speed-limit-up": 50,
"speed-limit-up-enabled": true,
"umask": 2,
"upload-slots-per-torrent": 4,
"watch-dir": "/data/download",
"watch-dir-enabled": true
}

View 4 Replies View Related

Ubuntu :: Remove Transmission Daemon From Startup

Apr 1, 2011

I've tried the following in rc.local but it gets me nowhere:

Code:
TRANSMISSION_TIMING() {
for((a=0;a<=5;a++)); do
sleep 1 &
wait
[[ $(top -n1 | grep transmission) == *transmission* ]] &&
[[ $(date +%H) -ge 5 ]] && [[ $(date +%H) -lt 23 ]] && /etc/init.d/transmission-daemon stop done
}

TRANSMISSION_TIMING &
Code:
TRANSMISSION_TIMING() {
[[ $(top -n1 | grep transmission) == *transmission* ]] &&
[[ $(date +%H) -ge 5 ]] && [[ $(date +%H) -lt 23 ]] && /etc/init.d/transmission-daemon stop
}
TRANSMISSION_TIMING &

Nothing I do can keep this thing from launching, and apparently kill it either.

View 1 Replies View Related

Ubuntu :: Transmission-daemon Web Management Is Not Working Out Of The Box On 9091

May 11, 2010

how to setup transmission-daemon web interface on port 9091?

I did: sudo apt-get install transmission-daemon

On the same PC (as transmission-daemon) I tried http://127.0.0.1:9091/ but is not working. Why is not working out of the box ?

View 2 Replies View Related

Ubuntu :: Transmission Daemon - Web Interface Unavailable After Reboot

Jun 22, 2011

I've installed transmission-daemon on my headless Ubuntu 11.04 server and use the web interface to manage it. This is all working fine. However, after a reboot it seems that transmission daemon starts but the webinterface is unavailable. I get this in the syslog after a reboot:

Code:
Jun 22 10:54:27 localhost transmission-daemon[703]: Transmission 2.31 (12441) started (session.c:706)
Jun 22 10:54:27 localhost transmission-daemon[703]: RPC Server Adding address to whitelist: 192.168.*.* (rpc-server.c:805)
Jun 22 10:54:27 localhost transmission-daemon[703]: RPC Server Serving RPC and Web requests on port 127.0.0.1:9091/transmission/ (rpc-server.c:982)
Jun 22 10:54:27 localhost transmission-daemon[703]: RPC Server Whitelist enabled (rpc-server.c:986)
Jun 22 10:54:27 localhost transmission-daemon[703]: RPC Server Password required (rpc-server.c:989)
Jun 22 10:54:27 localhost transmission-daemon[703]: Port Forwarding Stopped (port-forwarding.c:181)
Jun 22 10:54:27 localhost transmission-daemon[703]: UDP Failed to set receive buffer: requested 4194304, got 262142 (tr-udp.c:75) .....

View 2 Replies View Related

General :: Set A Password For Transmission-daemon, The BitTorrent Client Server?

Feb 26, 2010

The config file is ambiguous, and keeps getting overwritten when you restart the daemon in Debian, anyway.

In /etc/transmission-daemon/settings.json, there are these options:

rpc-username
rpc-password
proxy-auth-username
proxy-auth-password

Every time I restart the daemon with:

/etc/init.d/transmission-daemon restart

It overwrites rpc-password, and the password it prints doesn't work anyway.

Does anyone know how to set the password properly? I don't want to disable it.

View 1 Replies View Related

Ubuntu Servers :: Batch Job To Start/stop Transmission-daemon?

Mar 11, 2010

I would like to be able to simply run a shortcut file or batch file in a windows os to start or stop my transmission-daemon.I was thinking about using putty to auto login and execute a file using the -m switch. A problem I am running into is that /etc/init.d/transmission-daemon stoprequires the use of sudo.That would require entering a password which would be automated and insecure or would require manually typing int he password.

View 1 Replies View Related

Ubuntu Installation :: Update Or Remove Transmission-daemon Package?

Aug 4, 2010

I have an error when I try to update or remove transmission-daemon package.

Here are some logs:

root@ubuntu:~# apt-get --reinstall install transmission-daemon
Reading package lists... Done
Building dependency tree
Reading state information... Done

[Code]...

View 2 Replies View Related

Security :: Shorewall Rejecting Allowed Traffic For Transmission-daemon

May 22, 2011

I have the Shorewall firewall running on Ubuntu 10.10 server and the issue I am having is the firewall is blocking traffic from my transmission-daemon even though I have allowed it in the /etc/shorewall/rules.

the rules file has the following lines

Code:
ACCEPT$FWnettcp60000:60035
ACCEPTnet$FWtcp60000:60035
ACCEPT$FWnetudp51413
ACCEPTnet$FWudp51413

[Code]...

as you can see, Shorewall is rejecting packets with source and destination port 51413 on incoming net2fw and outgoing fw2net even though the rules are set to accept.

View 7 Replies View Related

Fedora :: Inhibit Transmission While User Active?

Oct 4, 2010

Is there a way to inhibit Transmission at times when a user is active and only have it downloading/seeding when the computer is idle (or is there another Torrent client that will do so)? I know about the limits that can be set, but those are clock based, not activity based limitations. As it is now, when it is running, my web browsing speed and other online activities take a big hit in responsiveness. I want to be responsible and seed completed downloads. However, the performance hit makes it difficult to tolerate, and manually pausing and resuming torrents every time I sit down at the computer or get up to leave is inconvenient.

View 4 Replies View Related

Ubuntu :: Transmission Web Interface Only Available When Transmission Client Is Running

Dec 5, 2010

I can only access the Transmission web interface while the Transmission-gtk client is running. When I close it, the web interface is no longer available. I try to manually start the transmission-daemon, but the process never shows up as running.

View 2 Replies View Related

Software :: Can't Seem To Start Daemon As Another User

May 31, 2011

I want to start a daemon as another user, but it doesn't seem to work. What I'm trying to do is run svnserve (subversion server) as the apache user.

The following works, but it's run as the root user in this case

Code:
svnserve -d -r /var/www/svn --pid-file /var/run/svnserve.pid
Trying to run as apache user doesn't work
Code:
su apache -c "svnserve -d -r /var/www/svn --pid-file /var/run/svnserve.pid"

[Code]....

View 1 Replies View Related

Ubuntu Installation :: Add A User,the Nessus Daemon Is Running On My Machine?

Nov 20, 2010

after some tweaking i managed to get nessus installed on my machine. However i'm running into an issue when trying to add a user.The nessus daemon is running on my machine, i've registered. I think everything is peachy in that regard, but when i run:

Code:
zachadmin@ubuntu:~$ sudo /etc/init.d/nessusd restart
$Shutting down Nessus : .
$Starting Nessus : .[code].....

Obviously the command not found is my error, from what i understand there isn't a default user placed in the first time.So essentially i have thie program installed, but i can't access it.

View 1 Replies View Related

Fedora :: Where Transmission Stores It's Data

Oct 4, 2009

where transmission stores it's data. i've looked all through my home folder and can't seem to find it.

View 3 Replies View Related

Fedora :: How To Upgrade Transmission To Version 2.22

May 8, 2011

I installed transmission on my fedora14 VPS from yum which is version 2.11,to use transmission in some privte trackers i have to update to latest stable release version 2.22,so, how do i upgrade my old version?and another question is can i use rpm pakages find here[URL]

View 9 Replies View Related

Fedora :: Speed Up Torrent Download With Transmission?

Jan 28, 2011

how to speed up torrent download with transmission in fedora, i find it very slow, also the speed is only 51 kbps not more than that i get, so how to increase the download speed to 128 kbps. i'm using broadband connection.

View 7 Replies View Related

Red Hat / Fedora :: Change Transmission Range Of A Node From Default 250 To Some Other Value?

Dec 8, 2010

I am working with NS-2, I am facing a situation where I need to re align the transmission range of a particular node. Can I do this by modifying the protocol's source code? I should not change the default value from 250, only few nodes who satisfy a particular criterion should be reset to some other range like 200 or 300. How can I do this?

View 1 Replies View Related

General :: Start A Daemon As General User?

Sep 9, 2010

I need to allow certain users (who do not have root access) to be able to stop and start specific daemons

View 2 Replies View Related

Fedora :: Running Java App As Daemon

Aug 28, 2009

I'm new to Fedora and have just purchased a subscription to a GoDaddy Virtual Dedicated Server, which I'm able to control using SSH.I have a Java application that I want to run as a daemon on this VDS. Some google searching yielded a bunch of different methods of doing this, none of which I'm sure would be guaranteed to work with Fedora, so I was hoping someone here could give it to me straight and fill me in on the simplest way of doing this.What is the best/simplest way to run a Java application as a daemon on Fedora?

View 2 Replies View Related

Fedora :: Get A Daemon To Load On Boot?

Mar 12, 2011

I was trying to get a daemon to load on boot, I stupidly added it to rc.local and it just hangs. I would love to put in a live CD and edit out the line but the volume is encrypted and I cannot get it to mount.

Is there a way I can cancel the daemon from loading or get to the grub menu (not readily visible since I am single boot) and then boot into a console?

View 5 Replies View Related

Fedora :: Pulseaudio Daemon Failed To Start?

Nov 24, 2009

I've been trying to get my internal microphone to work in F12, and as part of the things I've tried I had the seemingly bad idea of reinstalling pulseaudio. The problem now is that pulseaudio fails to start... The following is from /var/log/messages, and is repeated several times:Code:Nov 24 08:51:20 localhost pulseaudio[6300]: main.c: Daemon startup without any loaded modules, refusing to work.

View 9 Replies View Related

Fedora :: Abrt Daemon Failed To Start?

Jan 7, 2010

I have fedora 12 32 bits installed on a Macbook pro (intel core duo) I did "yum update" this morning, I have restarted the system and got the following message:Starting abrt daemon: abrtd: Failed to start: got sig 2 FAILEDI have browsed in the web but I cannot find useful information. Then I typed:$rpm -qa | grep abrt

abrt-libs-1.0.0-1.fc12.i686
abrt-libs-1.0.3-1.fc12.i686
abrt-addon-kerneloops-1.0.3-1.fc12.i686

[code]...

View 2 Replies View Related

Fedora :: Running XScreenSaver Daemon On Startup

Jan 23, 2010

I'm having some problems getting my screensaver to work automatically.If I start the screensaver config program then it gives me this message: "The XScreenSaver daemon doesn't seem to be running on display ":0.0". Launch it now?" If I click yes then my screensaver works exactly as expected.How can I get the XScreenSaver daemon to start automatically?

View 3 Replies View Related

Fedora :: F12 - MySQL Daemon Failed To Start

Jan 25, 2010

I using Fedora 12. When I am going to start MySQL server then error is come

MySQL Daemon failed to start.
Starting MySQL: [FAILED]
MySQL Details :
mysql-5.1.42-2.fc12.i686

View 7 Replies View Related

Fedora :: F12 NetworkManager Daemon Preventing Boot?

Jul 19, 2010

I'm having trouble booting after a recent bunch of updates (haven't been able to boot F12 from hard disk for a couple of days). The boot process gets as far as "NetworkManager daemon [OK]", then just stops. I get this for all 3 kernels that I can choose from the grub menu (2.6.32.16-141, 2.6.32.14-127, 2.6.32.12-115)Mounting the hard drive with a liveUSB, a quick inspection of /var/log/messages reveals that things go smoothly until: etc. until I hit the power button.I ought to mention that I wireless card that requires the Realtek RTL8192SE driver, which requires

Code:
sudo su
make

[code]....

View 1 Replies View Related

Fedora :: Edit The Daemon.conf File ?

Jan 17, 2011

My sample rates are out of whack and I need to edit the daemon.conf file.

However if I use

Code:

It will open the file but will not let me edit at all. If I just navigate to it I can edit it, but I can not save it!

I tried going in as root from the terminal and using the code above and I get a weird error.

Something like:

Then it says core dump.

Am I missing something to be able to edit the daemon.conf ?

View 2 Replies View Related

Fedora :: Notify OSD On 14 Or Notification Daemon Themes?

Feb 6, 2011

is there any way i can get Ubuntu's Notify OSD on Fedora 14? or at least get some nicer themes for notification-daemon?

View 1 Replies View Related

Red Hat / Fedora :: Daemon Not Functioning Well Before Manual Restart?

Mar 24, 2010

I have a strange problem on RHEL 5.4.

I have created a daemon which is being run as a system service at boot, and the start command goes well. When I login after boot and check with

service name status

it says it's running and the daemon accepts requests from clients in the network, only the executable it runs as a response to a client request does not work properly.

If I manually restart the service, as with service name restart everything works OK until the next system reboot.

Somehow the context in which the daemon runs is not OK after boot, and it becomes OK after manual restart.

View 9 Replies View Related

Red Hat / Fedora :: Running Java As Daemon / Service

Jul 7, 2010

I have a java program which I need to run as a service or daemon. What is the most stable method to do it? It will be heavy processing socket programming which will be continously receiving data?

View 4 Replies View Related

Red Hat / Fedora :: Increase Nofile Limit For Daemon?

Mar 5, 2011

I'm looking for recommendations on how to increase the nofile limit for a daemon running as other than root. Does anyone else do this? It'd be nice if I could employ /etc/security/limits.conf.

View 2 Replies View Related







Copyrights 2005-15 www.BigResource.com, All rights reserved