Advertisement
Guest User

Untitled

a guest
Jun 26th, 2017
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 1.90 KB | None | 0 0
  1. cat /etc/mythtv/config.xml
  2. <Configuration>
  3.   <UPnP>
  4.     <MythFrontend>
  5.       <DefaultBackend>
  6. <!--
  7. Set the <LocalHostName> hostname override below only if you want to use
  8. something other than the machine's real hostname for identifying settings
  9. in the database.  This is useful if your hostname changes often, as
  10. otherwise you'll need to reconfigure mythtv every time.
  11.  
  12. NO TWO HOSTS MAY USE THE SAME VALUE
  13. -->
  14.         <DBHostName>192.168.5.10</DBHostName>
  15.         <DBUserName>mythtv</DBUserName>
  16.         <DBPassword>XXXXXX</DBPassword>
  17.         <DBName>mythconverg</DBName>
  18.         <DBPort>0</DBPort>
  19.       </DefaultBackend>
  20.     </MythFrontend>
  21.   </UPnP>
  22. </Configuration>
  23. root@Core:~# cat /etc/mythtv/mysql.txt
  24. DBHostName=192.168.5.10
  25. DBUserName=mythtv
  26. DBName=mythconverg
  27. DBPassword=XXXXXXXX
  28. root@Core:~# cat /home/mike/.mythtv/
  29. backuprc    config.xml  themecache/
  30. root@Core:~# cat /home/mike/.mythtv/config.xml
  31. <Configuration>
  32.   <UPnP>
  33.     <UDN>
  34.       <MediaRenderer>4c619a55-178e-4b17-a4ef-028638bebe83</MediaRenderer>
  35.     </UDN>
  36.     <MythFrontend>
  37.       <DefaultBackend>
  38.         <DBHostName>192.168.5.10</DBHostName>
  39.         <DBUserName>mythtv</DBUserName>
  40.         <DBPassword>XXXXXXX</DBPassword>
  41.         <DBName>mythconverg</DBName>
  42.         <DBPort>0</DBPort>
  43.       </DefaultBackend>
  44.     </MythFrontend>
  45.   </UPnP>
  46. </Configuration>
  47.  
  48.  
  49. FROM DESKTOP:
  50.  
  51. mysql -h192.168.5.10 -umythtv -p mythconverg
  52. Enter password:
  53. Reading table information for completion of table and column names
  54. You can turn off this feature to get a quicker startup with -A
  55.  
  56. Welcome to the MySQL monitor.  Commands end with ; or \g.
  57. Your MySQL connection id is 177
  58. Server version: 5.1.41-3ubuntu12.6 (Ubuntu)
  59.  
  60.  
  61. FROM BACKEND:
  62.  
  63. mysql -umythtv -p mythconverg
  64. Enter password:
  65. Reading table information for completion of table and column names
  66. You can turn off this feature to get a quicker startup with -A
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement