Changes between Version 159 and Version 160 of Faq
- Timestamp:
- 10/15/2015 10:01:30 PM (8 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Faq
v159 v160 41 41 }}} 42 42 43 The console can be also run in a non-interactive m anor to get direct output atthe terminal:43 The console can be also run in a non-interactive mode which outputs to the terminal: 44 44 {{{ 45 45 deluge-console "info [torrent]" … … 59 59 60 60 Open browser at `http://localhost:8112` and the default password is: `deluge` 61 62 == Where does Deluge store its settings/config? ==63 64 The default location for the Deluge config is in the `home` directory of the current user.65 66 * ''When running as a service the config is relative to the user specified in the service configuration''67 * ''The config location can be manually changed by using the `--config` option at startup''68 69 === Linux, BSD and Mac OSX ===70 71 {{{72 ~/.config/deluge/73 }}}74 75 === Windows ===76 77 {{{78 %APPDATA%\deluge\79 }}}80 81 82 == Where does Deluge store the .torrent files? ==83 84 Within the Deluge config in a directory named '''`state`'''.85 86 87 == How do I reset the settings back to default? ==88 89 If you don't care about losing your current torrents then delete everything in Deluge's config directory.90 91 If you do want to keep your current torrents then delete everything except for the `state` folder.92 93 61 94 62 == How do I set Deluge as my default !BitTorrent program? == … … 113 81 * '''Windows''' users should simply re-run the installer and select the magnet association option. 114 82 * '''OSX''' GTK does not support Magnet URIs (see #2420) but there is a plugin available: http://forum.deluge-torrent.org/viewtopic.php?f=9&t=52619 115 ---- 116 = Console = 117 118 == How do I connect the console UI to a daemon on a non-default port? == 83 84 == Where does Deluge store its settings/config? == 85 86 The default location for the Deluge config directory is in the `home` directory of the current user. 87 88 Linux, BSD and Mac OSX:: 89 `~/.config/deluge` 90 91 Windows OS:: 92 `%APPDATA%\deluge` 93 94 * ''When running deluge as a service the config directory is relative to the user specified in the service configuration'' 95 * ''The config location can be manually changed by using the `--config` option at startup'' 96 97 == Where does Deluge store the .torrent files? == 98 99 Within the Deluge config in a directory named `state`. 100 101 102 == How do I reset the settings back to default? == 103 104 If you don't care about losing your current torrents then delete everything in Deluge's config directory. 105 106 If you do want to keep your current torrents then delete everything except for the `state` folder. 107 108 = User Interface Specific = 109 == Console UI == 110 111 === How do I connect the console UI to a daemon on a non-default port? === 119 112 120 113 {{{ … … 123 116 }}} 124 117 125 == I encountered `BadLoginError("Password does not match")` with localhost daemon?==118 === I encountered `BadLoginError("Password does not match")` with localhost daemon? === 126 119 127 120 This is likely due to mismatching config locations, ensure you are running deluge-console with same user as deluged: [wiki:UserGuide/ThinClient#AccessingdelugedservicewithlocalUIClient More Details] 128 121 129 ---- 130 = Daemon = 131 132 == Why is Deluge still listed in my task manager even after I close it? == 122 == Daemon == 123 124 === Why is Deluge still listed in my task manager even after I close it? === 133 125 134 126 You closed only the UI, but you did not close the daemon. 135 127 Choose "Quit & Shutdown Daemon" to close both Daemon and GTK UI. 136 128 137 == How do I start and stop the daemon?==129 === How do I start and stop the daemon? === 138 130 139 131 {{{ … … 146 138 ''Note: Deluge accepts the `SIGTERM` signal and cleanly shuts down.'' 147 139 148 == How do I start the daemon with logging enabled?==140 === How do I start the daemon with logging enabled? === 149 141 150 142 See: [wiki:Troubleshooting#EnableDelugeLogging] … … 156 148 }}} 157 149 158 == I can't connect to the daemon from another machine==150 === I can't connect to the daemon from another machine === 159 151 160 152 See [wiki:UserGuide/ThinClient ThinClient] for more information but the summary steps are: … … 164 156 1. Restart the daemon. 165 157 166 == How do I make Deluge connect to a different daemon?==158 === How do I make Deluge connect to a different daemon? === 167 159 168 160 By default, Deluge (GTK UI) is in classic mode, the daemon and GTK UI are linked together. … … 174 166 See [wiki:UserGuide/ThinClient ThinClient] for more information on remote GTK UI 175 167 176 == How do I stop Deluge from killing the daemon when I quit the GTK UI?==168 === How do I stop Deluge from killing the daemon when I quit the GTK UI? === 177 169 178 170 See above. 179 171 180 ---- 181 = Web UI = 182 183 == What is the default password == 172 == Web UI == 173 174 === What is the default password === 184 175 185 176 The Web UI default password is `deluge`. For security You should change this upon first login. 186 177 187 == How do I change the password?==178 === How do I change the password? === 188 179 In the Web UI: 189 180 1. Click on "Preferences" … … 192 183 1. Click "Change" 193 184 194 == How can I reset the password?==185 === How can I reset the password? === 195 186 196 187 '''Note:''' Stop the Web UI before you do any of the following. … … 238 229 }}} 239 230 240 == How do I use HTTPS?==231 === How do I use HTTPS? === 241 232 242 233 1. Create a (self-signed) SSL certificate: http://httpd.apache.org/docs/2.0/ssl/ssl_faq.html#selfcert … … 245 236 1. Restart Web UI 246 237 247 == Can I bind the Web UI to port :80 in Linux?==238 === Can I bind the Web UI to port :80 in Linux? === 248 239 You cannot bind to anything under 1024 in Linux, however with kernel >=2.6.24, you can use capabilities to allow Python to bind to port 80 securely. 249 240 … … 254 245 1. Restart `deluged` daemon. 255 246 256 == How do I configure plugins with the Web UI?==247 === How do I configure plugins with the Web UI? === 257 248 Not all plugins are configurable directly with the Web UI, see [Plugins] table. The easiest way to configure the plugins is to use the GTK UI. If you cannot install the GTK UI on the machine with your daemon, it is possible to connect to that daemon from another computer with the GTK UI. See [wiki:UserGuide/ThinClient ThinClient] for more information on remote GTK UI. 258 249 259 == How do I auto-connect to a specific daemon?==250 === How do I auto-connect to a specific daemon? === 260 251 261 252 1. Stop the Web UI. … … 275 266 1. Restart the Web UI. 276 267 277 ---- 278 = !BitTorrent = 268 = !BitTorrent Related= 279 269 280 270 == The files tab shows a different percentage-completed than the torrent == … … 327 317 Force recheck discards all incomplete pieces. 328 318 329 == Does Deluge support Initial /Super Seed? ==330 331 Not yet, but it will be added in the future when libtorrent 0.15 is released.319 == Does Deluge support Initial or Super Seed? == 320 321 Not yet, but it will be added in a future release, see #1903. 332 322 333 323 == Does Deluge have an embedded tracker? == … … 400 390 401 391 = Enable Deluge Logging = 402 392 [wiki:Troubleshooting#EnableDelugeLogging]