“MediaTomb UI is disabled. Check your configuration.” What could I be forgetting?
Upon initial installation of mediatomb I receive the following message:
MediaTomb UI is disabled. Check your configuration.
What could I be missing on this configuration?
installation mediatomb
bumped to the homepage by Community♦ 3 mins ago
This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.
add a comment |
Upon initial installation of mediatomb I receive the following message:
MediaTomb UI is disabled. Check your configuration.
What could I be missing on this configuration?
installation mediatomb
bumped to the homepage by Community♦ 3 mins ago
This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.
The installation finished correctly or it didn't finish? Can you run it without troubles?
– Lucio
Apr 4 '13 at 15:16
add a comment |
Upon initial installation of mediatomb I receive the following message:
MediaTomb UI is disabled. Check your configuration.
What could I be missing on this configuration?
installation mediatomb
Upon initial installation of mediatomb I receive the following message:
MediaTomb UI is disabled. Check your configuration.
What could I be missing on this configuration?
installation mediatomb
installation mediatomb
edited Apr 4 '13 at 15:15
Lucio
12.5k2285159
12.5k2285159
asked Apr 4 '13 at 14:42
user146788user146788
11123
11123
bumped to the homepage by Community♦ 3 mins ago
This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.
bumped to the homepage by Community♦ 3 mins ago
This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.
The installation finished correctly or it didn't finish? Can you run it without troubles?
– Lucio
Apr 4 '13 at 15:16
add a comment |
The installation finished correctly or it didn't finish? Can you run it without troubles?
– Lucio
Apr 4 '13 at 15:16
The installation finished correctly or it didn't finish? Can you run it without troubles?
– Lucio
Apr 4 '13 at 15:16
The installation finished correctly or it didn't finish? Can you run it without troubles?
– Lucio
Apr 4 '13 at 15:16
add a comment |
3 Answers
3
active
oldest
votes
I haven't used it in a while, but documentation specified an IP address you need to enter in your web-browser. This takes you to a web-based configuration page where you can tell it where your media is.
add a comment |
I just figured this out for myself.
My problem arised from when I transferred a config.xml file from an older computer to a newer one. Come to find out the service mediatomb reads the config.xml file located i the /etc/mediatomb directory, and when the config.xml file in ~/.mediatomb is replace it no longer has the same information in the /etc dir as the ~/ dir.
With a little deductive reasoning I concluded the config.xml located ~/.mediatomb must be a hard link to the /etc/mediatomb/config.xml file. So cd into /etc/mediatomb, sudo rm config.xml, then sudo ln ~/.mediatomb/config.xml should produce the correct results, then just restart the service. In list format:
cd /etc/mediatomb; sudo rm config.xml; sudo ln ~/.mediatomb/config.xml; sudo service mediatomb restart; exit
Otherwise if you have a new install check the ~/.mediatomb/config.xml file with nano and confirm ui enabled is in fact enabled. List format
nano ~/.mediatomb/config.xml
ctrl+w "ui enabled"
change no to yes
ctrl+x
y
enter
Hopes this helps people looking for this answer, happy hacking
add a comment |
I did a fresh install of MediaTomb on Peppermint 4, based on Ubuntu 13.04, and also got "MediaTomb UI is disabled. Check your configuration." I fixed this by editting ~/.mediatomb/config.xml and changing the line:
<accounts enabled="no" session-timeout="30">
to
<accounts enabled="yes" session-timeout="30">
I also inserted
<port>49152</port>
immediately after the line containig just <server>
as I found a service restart command was too fast, and the port had not finished closing when the restart was issued. Mediatomb will use the next available port in this case - but it means you won't see the web page unless you chase the port number up!
I finished off by running the following:
sudo mv /etc/mediatomb/config.xml /etc/mediatomb/config.xml.bak
sudo cp ~/.mediatomb/config.xml /etc/mediatomb/config.xml
sudo service mediatomb restart
This stopped me getting "page note found" in the browser and, when it did display the login page, username mediatomb with password mediatomb would not work.
Hope this helps someone as I spent a lot of time on it.
add a comment |
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "89"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f277860%2fmediatomb-ui-is-disabled-check-your-configuration-what-could-i-be-forgetting%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
3 Answers
3
active
oldest
votes
3 Answers
3
active
oldest
votes
active
oldest
votes
active
oldest
votes
I haven't used it in a while, but documentation specified an IP address you need to enter in your web-browser. This takes you to a web-based configuration page where you can tell it where your media is.
add a comment |
I haven't used it in a while, but documentation specified an IP address you need to enter in your web-browser. This takes you to a web-based configuration page where you can tell it where your media is.
add a comment |
I haven't used it in a while, but documentation specified an IP address you need to enter in your web-browser. This takes you to a web-based configuration page where you can tell it where your media is.
I haven't used it in a while, but documentation specified an IP address you need to enter in your web-browser. This takes you to a web-based configuration page where you can tell it where your media is.
answered Apr 4 '13 at 15:21
TenLeftFingersTenLeftFingers
528825
528825
add a comment |
add a comment |
I just figured this out for myself.
My problem arised from when I transferred a config.xml file from an older computer to a newer one. Come to find out the service mediatomb reads the config.xml file located i the /etc/mediatomb directory, and when the config.xml file in ~/.mediatomb is replace it no longer has the same information in the /etc dir as the ~/ dir.
With a little deductive reasoning I concluded the config.xml located ~/.mediatomb must be a hard link to the /etc/mediatomb/config.xml file. So cd into /etc/mediatomb, sudo rm config.xml, then sudo ln ~/.mediatomb/config.xml should produce the correct results, then just restart the service. In list format:
cd /etc/mediatomb; sudo rm config.xml; sudo ln ~/.mediatomb/config.xml; sudo service mediatomb restart; exit
Otherwise if you have a new install check the ~/.mediatomb/config.xml file with nano and confirm ui enabled is in fact enabled. List format
nano ~/.mediatomb/config.xml
ctrl+w "ui enabled"
change no to yes
ctrl+x
y
enter
Hopes this helps people looking for this answer, happy hacking
add a comment |
I just figured this out for myself.
My problem arised from when I transferred a config.xml file from an older computer to a newer one. Come to find out the service mediatomb reads the config.xml file located i the /etc/mediatomb directory, and when the config.xml file in ~/.mediatomb is replace it no longer has the same information in the /etc dir as the ~/ dir.
With a little deductive reasoning I concluded the config.xml located ~/.mediatomb must be a hard link to the /etc/mediatomb/config.xml file. So cd into /etc/mediatomb, sudo rm config.xml, then sudo ln ~/.mediatomb/config.xml should produce the correct results, then just restart the service. In list format:
cd /etc/mediatomb; sudo rm config.xml; sudo ln ~/.mediatomb/config.xml; sudo service mediatomb restart; exit
Otherwise if you have a new install check the ~/.mediatomb/config.xml file with nano and confirm ui enabled is in fact enabled. List format
nano ~/.mediatomb/config.xml
ctrl+w "ui enabled"
change no to yes
ctrl+x
y
enter
Hopes this helps people looking for this answer, happy hacking
add a comment |
I just figured this out for myself.
My problem arised from when I transferred a config.xml file from an older computer to a newer one. Come to find out the service mediatomb reads the config.xml file located i the /etc/mediatomb directory, and when the config.xml file in ~/.mediatomb is replace it no longer has the same information in the /etc dir as the ~/ dir.
With a little deductive reasoning I concluded the config.xml located ~/.mediatomb must be a hard link to the /etc/mediatomb/config.xml file. So cd into /etc/mediatomb, sudo rm config.xml, then sudo ln ~/.mediatomb/config.xml should produce the correct results, then just restart the service. In list format:
cd /etc/mediatomb; sudo rm config.xml; sudo ln ~/.mediatomb/config.xml; sudo service mediatomb restart; exit
Otherwise if you have a new install check the ~/.mediatomb/config.xml file with nano and confirm ui enabled is in fact enabled. List format
nano ~/.mediatomb/config.xml
ctrl+w "ui enabled"
change no to yes
ctrl+x
y
enter
Hopes this helps people looking for this answer, happy hacking
I just figured this out for myself.
My problem arised from when I transferred a config.xml file from an older computer to a newer one. Come to find out the service mediatomb reads the config.xml file located i the /etc/mediatomb directory, and when the config.xml file in ~/.mediatomb is replace it no longer has the same information in the /etc dir as the ~/ dir.
With a little deductive reasoning I concluded the config.xml located ~/.mediatomb must be a hard link to the /etc/mediatomb/config.xml file. So cd into /etc/mediatomb, sudo rm config.xml, then sudo ln ~/.mediatomb/config.xml should produce the correct results, then just restart the service. In list format:
cd /etc/mediatomb; sudo rm config.xml; sudo ln ~/.mediatomb/config.xml; sudo service mediatomb restart; exit
Otherwise if you have a new install check the ~/.mediatomb/config.xml file with nano and confirm ui enabled is in fact enabled. List format
nano ~/.mediatomb/config.xml
ctrl+w "ui enabled"
change no to yes
ctrl+x
y
enter
Hopes this helps people looking for this answer, happy hacking
answered Aug 3 '13 at 9:06
user180977user180977
1
1
add a comment |
add a comment |
I did a fresh install of MediaTomb on Peppermint 4, based on Ubuntu 13.04, and also got "MediaTomb UI is disabled. Check your configuration." I fixed this by editting ~/.mediatomb/config.xml and changing the line:
<accounts enabled="no" session-timeout="30">
to
<accounts enabled="yes" session-timeout="30">
I also inserted
<port>49152</port>
immediately after the line containig just <server>
as I found a service restart command was too fast, and the port had not finished closing when the restart was issued. Mediatomb will use the next available port in this case - but it means you won't see the web page unless you chase the port number up!
I finished off by running the following:
sudo mv /etc/mediatomb/config.xml /etc/mediatomb/config.xml.bak
sudo cp ~/.mediatomb/config.xml /etc/mediatomb/config.xml
sudo service mediatomb restart
This stopped me getting "page note found" in the browser and, when it did display the login page, username mediatomb with password mediatomb would not work.
Hope this helps someone as I spent a lot of time on it.
add a comment |
I did a fresh install of MediaTomb on Peppermint 4, based on Ubuntu 13.04, and also got "MediaTomb UI is disabled. Check your configuration." I fixed this by editting ~/.mediatomb/config.xml and changing the line:
<accounts enabled="no" session-timeout="30">
to
<accounts enabled="yes" session-timeout="30">
I also inserted
<port>49152</port>
immediately after the line containig just <server>
as I found a service restart command was too fast, and the port had not finished closing when the restart was issued. Mediatomb will use the next available port in this case - but it means you won't see the web page unless you chase the port number up!
I finished off by running the following:
sudo mv /etc/mediatomb/config.xml /etc/mediatomb/config.xml.bak
sudo cp ~/.mediatomb/config.xml /etc/mediatomb/config.xml
sudo service mediatomb restart
This stopped me getting "page note found" in the browser and, when it did display the login page, username mediatomb with password mediatomb would not work.
Hope this helps someone as I spent a lot of time on it.
add a comment |
I did a fresh install of MediaTomb on Peppermint 4, based on Ubuntu 13.04, and also got "MediaTomb UI is disabled. Check your configuration." I fixed this by editting ~/.mediatomb/config.xml and changing the line:
<accounts enabled="no" session-timeout="30">
to
<accounts enabled="yes" session-timeout="30">
I also inserted
<port>49152</port>
immediately after the line containig just <server>
as I found a service restart command was too fast, and the port had not finished closing when the restart was issued. Mediatomb will use the next available port in this case - but it means you won't see the web page unless you chase the port number up!
I finished off by running the following:
sudo mv /etc/mediatomb/config.xml /etc/mediatomb/config.xml.bak
sudo cp ~/.mediatomb/config.xml /etc/mediatomb/config.xml
sudo service mediatomb restart
This stopped me getting "page note found" in the browser and, when it did display the login page, username mediatomb with password mediatomb would not work.
Hope this helps someone as I spent a lot of time on it.
I did a fresh install of MediaTomb on Peppermint 4, based on Ubuntu 13.04, and also got "MediaTomb UI is disabled. Check your configuration." I fixed this by editting ~/.mediatomb/config.xml and changing the line:
<accounts enabled="no" session-timeout="30">
to
<accounts enabled="yes" session-timeout="30">
I also inserted
<port>49152</port>
immediately after the line containig just <server>
as I found a service restart command was too fast, and the port had not finished closing when the restart was issued. Mediatomb will use the next available port in this case - but it means you won't see the web page unless you chase the port number up!
I finished off by running the following:
sudo mv /etc/mediatomb/config.xml /etc/mediatomb/config.xml.bak
sudo cp ~/.mediatomb/config.xml /etc/mediatomb/config.xml
sudo service mediatomb restart
This stopped me getting "page note found" in the browser and, when it did display the login page, username mediatomb with password mediatomb would not work.
Hope this helps someone as I spent a lot of time on it.
answered Jan 18 '14 at 20:15
Scooby-2Scooby-2
4131514
4131514
add a comment |
add a comment |
Thanks for contributing an answer to Ask Ubuntu!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f277860%2fmediatomb-ui-is-disabled-check-your-configuration-what-could-i-be-forgetting%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
The installation finished correctly or it didn't finish? Can you run it without troubles?
– Lucio
Apr 4 '13 at 15:16