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


ADVERTISEMENT

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

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

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 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

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

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

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

Ubuntu :: Transmission Just Hangs On Startup?

Jul 27, 2011

I start transmission (already has about 6 files loaded) and it starts and then the screen goes grey and nothing seems to happen.

View 2 Replies View Related

Debian :: Transmission WebUI Auto Startup

Jan 10, 2016

How can I let transmission startup automatically so that I can use the webinterface?

Now I always need to open the transmission GUI and then the webinterface is ready to use.

View 2 Replies View Related

Ubuntu :: How To Create A Startup Daemon

May 25, 2010

I installed ActiveMQ, set up an init.d script and was able to start | stop | restart ActiveMQ from the init.d script. However, when I tried to use:

>sudo chkconfig --add activemq

upstart seemed not to like it. Having NO documentation on how to create a daemon that works with Upstart on the Ubuntu forums, I'm wondering if anyone has any idea why my init.d script doesn't convert.I'm using Ubuntu 10.x.x but this happens on 9.x.x also.

Here is my script..

Code:

#!/bin/bash
#
### BEGIN INIT INFO
# Provides: activemq

[code]....

View 2 Replies View Related

Ubuntu Servers :: Startup It Automatically Without Screen Daemon?

Jan 26, 2010

i am succesfully installed TeamSpeak 3 server and now i want to startup it automatically without screen daemon and on every startup on linux ubuntu 9.10 i am using this command for start the TS3 server:./ts3server_linux_amd64 dbplugin=ts3db_mysqlin home/user/Desktop/ts3server_linux_amd64

View 4 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

CentOS 5 :: Cancel A Frozen Startup Daemon?

Mar 25, 2009

I used my boot disk in rescue mode to solve this, but I would really like to know how to do this the easy way.

Question: when I am booting up and getting all those "OK" green remarks, how do I cancel a daemon that freezes instead of giving me an ok or failed? I have tried <Ctrl><C> with no joy. I have tried dropping to interactive mode ("I") and bypassing the bad daemon, but interactive mode freezes when I go to start GDM, so no joy there either.

View 15 Replies View Related

CentOS 5 Server :: Httpd Daemon Not Active On Startup - No Errors?

Oct 31, 2010

I've added httpd to runlevels 2-5 using chkconfig, and also double checked it using ntsysv, but it still won't run on startup, even though it works just fine when started manually (using "sudo service httpd start").The results of "chkconfig --list httpd" show it is on for levels 2-5, and I've confirmed the current runlevel to be 3. I've found no errors in the logs (neither Apache's nor the system's), but maybe I'm looking at them wrong...My machine is a VPS (on VMWare) running CentOS 5.5 32bit. For additional information, see the output of getinfo.sh: http://pastebin.centos.org/35570I would greatly appreciate help on this, as it is delaying our NGO from moving servers.

View 3 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

Networking :: Want To "absolutely" Remove The Avahi-daemon

Oct 11, 2010

Quote:

Originally Posted by uselpa Why do you absolutely want to remove it? There is no good reason for Avahi-daemon to be automatically installed on a server that is setup up with a static ip address. Also, I would like to someone to explain the loqic in having such a service on a server running an Oracle Database.

All of the servers I manage run a bare minimum footprint. Unnecessary services waste server resources and they are potential security risks if not updated.This is why I want to "absolutely" remove the Avahi-daemon.

Dave Walden
Linux Systems Administrator
CARFAX, INC.

View 3 Replies View Related

Ubuntu :: Remove A Random App From Startup?

Feb 11, 2010

Karmic - When I start up and log in, a window for KDE Desktop Sharing Invitation automatically pops up.

Closing it doesn't prevent it from popping up on next startup.

There doesn't appear to be any option to "Don't show on startup."

When I go to System -> System Settings -> Advanced -> Autostart, it does not appear under Desktop File. The only thing that appears under "Script File" is gtk-2-engines-qtcurve.rc.sh gtk2engines... which does not appear to be the issue.

I'm guessing there's a shell command that will give me a more in-depth look at what should and should not run upon startup? Would really like to startup with a clean screen!

View 2 Replies View Related

Ubuntu :: Remove Mysql From Startup?

May 22, 2010

I have installed mysql server on my Ubuntu Lucid AMD64 desktop. I need to run this service only on need. So I prefer not to have this in startup. So I did the following -

1. Deactivated the row entry by name "mysql" from application BootUp-Manager.

2. Run the application sysv-rc-conf and unchecked the checkboxes for all run levels.

3. Run the command "sudo update-rc.d -f mysql remove". Execution completed successfully.

4. Run the command - "sudo service mysql stop". In return I got a message "mysql stop/waiting".

5. Restarted the desktop.

Now when I read through the task manager, I still see a process by name "mysqld" running. I ran the command as mentioned in # 4 above and got the same response. I wanted to know how do I turn off mysql service running from startup permanently. But I still need to run it as and when required.

View 8 Replies View Related

Ubuntu :: Remove Application From The Startup

Jan 13, 2011

I am running Unbuntu 10.10 on a HTPC, and also XBMC. With some effort it worked ok, sounds, remote etc. Via systems>preferences I managed to add XBMC to the startup. It now starts when I start the PC. However it sort-of hijacks the PC, so the WiFi does not start among other things. Also I am no longer able to log into the desktop, so I am not able to emove XBMC from the start-up of the computer. If I exit XBMC I get to the log-in screen for the desktop, but when I log in it starts XBMC directly.

How can I remove it via the terminal? I cannot find a .config directory, any autostart, any .xsession, .xinitrc or anything else that looks like startup-script. How can I get access to my desktop again?

View 3 Replies View Related

Ubuntu :: Unable To Add/remove Startup Programs

Jan 21, 2010

I'm unable to change startup programs. If I try and add or remove a program, any changes I have made seem to undo themselves. I suspect it might have something to do with being unable to save the session, but I really don't have a clue.

Just in case it makes a difference: I'm actually running Mint (Helena).

View 1 Replies View Related

Ubuntu :: Remove 'Attention' Notification On Startup?

Jun 20, 2010

I get this Attention note when starting up to tell me that the system cannot handle video 1080 X 1024 which I am not using. I am using 1024 X 768. How can I get rid of this annoying little notice which slows down the start up considerable as it travel across the screen

View 2 Replies View Related

Ubuntu :: Remove Amarok From Startup In Kubuntu

Feb 19, 2010

I dont know why but somehow amarok came to startup in my kubuntu machine..

I have checked ~/.kde/Autostart/ but its is empty..

View 1 Replies View Related

Ubuntu :: Disable Apache Remove From Startup And Uninstall?

Jan 8, 2010

I'm having a little problem because I've installed xampp, but can't start it because it seems there's already an apache installation in my ubuntu

I've confirmed this by browsing to http://127.0.0.1 , and by doing px ax | grep apache

[URL]

Now I'd like to know how to stop this apache, remove from startup, and uninstall safely so I use xampp's apache instead.

View 9 Replies View Related

Ubuntu :: Remove Junk Form Startup Menu?

Apr 13, 2010

There's a growing list of "Kernel" versions in the boot menu. I just want Ubuntu and Windows, how do I get rid of the superseded kernel entries?

View 9 Replies View Related

Ubuntu :: Remove Annoying Drum Sound At Startup?

Jul 6, 2010

How do I remove that annoying drum sound from the login screen.I went to PREFERENCES -> LOGIN SCREEN, but there are no tabs or boxes for sound. Only options to determine who I want to log in.I tried GCONF-EDITOR, and drilled down to /apps/gdm/simple-greeter/settings-manager-plugins/sound/active and unchecked the active box, rebooted, but it still plays that stupid sound. And the box is unchecked if I check it! I've tried the solutions in the forum and nothing seems to kill that annoying sound.I'm still on 9.10 right now, since 10.04 has a nasty screen flicker problem.

View 9 Replies View Related

Ubuntu Networking :: Sshd -D At Startup - How To Remove The -D Option

May 19, 2011

Somehow the -D option got tacked on to my sshd when I start up. How do I remove the -D option when sshd is started at boot? I'm guessing I need to edit something in /etc/init.d but not sure what. I checked System->Preferences->Startup Applications and the ssh server daemon isn't listed there. And since it is a command line option /etc/ssh/sshd_config is of no help.

View 2 Replies View Related

Fedora :: Add / Remove Startup Items?

Nov 28, 2010

Okay, two packages in question here: sshd and xrdp.

In the /etc/rc.d/rc5.d directory there is a K??sshd link, I'm not really sure why the default is to kill sshd in graphical mode, but it's there. I saw it coincidentally when I went to add an S??xrdp link so that I could have xrdp run when the computer starts. I restarted the computer, and of course, couldn't connect via my Windows Remote Desktop client. A quick ps -e | grep xrdp in a terminal window showed me that xrdp had not, in fact, started.

I hop back in to ??/rc5.d to see if I messed up creating my link and poof. there's no more S??xrdp link, furthermore, the K??sshd link that I had removed was back.

Okay, so Fedora doesn't like you messing with the init links manually... I can dig it, cause there's this nifty gui tool to manage startup items... I go in to that and add entries for sshd and xrdp, calling them via their init scripts so I can make sure everything plays nicely... then restart.

Oh, wait, still no xrdp or sshd running.

If I manually start these servers using their init scripts from a terminal they run fine, no issues, but I don't want to do that, and I think we can all agree that I should't have to. What am I doing wrong? What is the 'proper' way to add servers to the startup process and since entering runlevel 5 apparently kills sshd, how do I prevent that?

View 4 Replies View Related

OpenSUSE :: Remove Entries From KDE Startup?

Sep 23, 2010

For some reason, Skype starts up in two instances. How can remove one of them in KDE (4.4.4)?

View 5 Replies View Related







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