MySQL/Setting up MySQL

From Official Kodi Wiki
Jump to navigation Jump to search

Share libraries w/MySQL, guide:

  1. Introduction
  2. Setting up MySQL
  3. Setting up Kodi
Home icon grey.png   ▶ MySQL ▶ Setting up MySQL

You'll need to choose which of your computers, Kodi devices, or NAS will be the MySQL server. The server needs to be on 24/7 or have wake-on-lan (preferably the former), and needs to have a local static IP. You will probably want the Kodi device that is hosting most or all of your videos and music to also be the MySQL server, but this is not required.

Please Note: Do not manually create the MySQL/MariaDB databases on your database server. Set up the MySQL/MariaDB server, and Kodi will create the specific databases for you.
Also: Some versions of MySQL set their passwords to expire by default, even the root password! If the password expires, Kodi cannot access the database and the TV Series and Movies libraries will disappear.
To avoid this and/or fix it after it happens, make sure the account's password does not expire. (See: https://dev.mysql.com/doc/refman/5.7/en/password-management.html )


MySQL/MariaDB can be installed on just about every major OS and NAS:

Important: Please use only supported versions of the MySQL or MariaDB server. As of January 2019, this is MySQL in at least version 5.7 or MariaDB in at least version 5.5, but version 10.3+ is recommended.


[edit]

Ubuntu Linux:

  1. $sudo apt-get install mysql-server (see also: https://help.ubuntu.com/18.04/serverguide/mysql.html )
  2. Create a password when asked
  3. To configure MySQL to listen for connections from network hosts, edit /etc/mysql/mysql.conf.d/mysqld.cnf and change the bind-address directive to the server's IP address:
    1. from: bind-address = 127.0.0.1
    2. to: bind-address = 192.168.0.5
    • Note: Replace 192.168.0.5 with the appropriate address.
    • Note: To allow both local and remote access (i.e. from both the MySQL host to itself and also from other clients), either comment out the bind-address using a hash (#) to disable it, or use bind-address = 0.0.0.0 to open it completely.
  4. When using MySQL8 or higher (Ubuntu 20.04 or later), add the following line at the end of /etc/mysql/mysql.conf.d/mysqld.cnf:
    1. default_authentication_plugin=mysql_native_password
      • Note: When using MariaDB this is the default, so you don't need to set it separately
  5. Restart your MySQL server. sudo service mysql restart
  6. Get into the MySQL command line utility: mysql -u root -p
  7. Enter the following commands:
    1. Type in: CREATE USER 'kodi' IDENTIFIED BY 'kodi'; and press return
      • Note: When using MySQL8 or higher, there are additional password requirements and new authentication methods. Using the following command should avoid errors. Type in: CREATE USER 'kodi' IDENTIFIED WITH mysql_native_password BY 'kodi123#'; and press return
      • Note: If the above command throws the error ERROR 1064 (42000): You have an error in your SQL syntax; (could happen if using MariaDB 10.5) try this one: CREATE USER 'kodi' IDENTIFIED VIA mysql_native_password USING PASSWORD('kodi123#'); and press return
    2. Type in: GRANT ALL ON *.* TO 'kodi'; and press return
    3. Type in: flush privileges; and press return
  8. Close out the command line tool with \q
[edit]

Debian Linux:

  1. Login as root with $ su -
  2. # apt-get install mariadb-server
  3. To configure MySQL/MariaDB to listen for connections from network hosts, edit /etc/mysql/mariadb.conf.d/50-server.cnf and change the bind-address directive to the server's IP address:
    1. from: bind-address = 127.0.0.1
    2. to: bind-address = 192.168.0.5
    • Note: Replace 192.168.0.5 with the appropriate address.
    • Note: To allow both local and remote access (i.e. from both the MySQL/MariaDB host to itself and also from other clients), either comment out the bind-address using a hash (#) to disable it, or use bind-address = 0.0.0.0 to open it completely.
  4. Restart your MySQL/MariaDB server. # systemctl restart mariadb
  5. Get into the MySQL command line utility: # mysql
  6. Enter the following commands:
    1. Type in: CREATE USER 'kodi' IDENTIFIED VIA mysql_native_password USING PASSWORD('kodi123#'); and press return
    2. Type in: GRANT ALL ON *.* TO 'kodi'; and press return
    3. Type in: flush privileges; and press return
  7. Close out the command line tool with exit or \q
  8. Logout as root with # exit
[edit]

Arch Linux:

  • Please note: Arch, along with many other distributions, has migrated to the faster and more open MariaDB. It is a drop in replacement to MySQL and, thus, Kodi will require no modifications to work with it.
  1. Install MariaDB: $ sudo pacman -S mariadb
  2. Start the service: $ sudo systemctl start mysqld
  3. To have it automatically launch at startup: $ sudo systemctl enable mysqld
  4. Create a password: $ /usr/bin/mysql_secure_installation This will also clean up the demo database.
  5. Get into the MariaDB command line utility: $ mysql -u root -p
  6. Enter the following commands:
    1. Type in: CREATE USER 'kodi' IDENTIFIED BY 'kodi'; and press return
    2. Type in: GRANT ALL ON *.* TO 'kodi'; and press return
    3. Type in: flush privileges; and press return
  7. Close out the command line tool with \q
[edit]

RedHat based Linux (RHEL, CentOS, Fedora):

  1. $sudo yum install mysql-server
  2. Create a password when asked
  3. To configure MySQL to listen for connections only from network hosts, edit /etc/mysql/my.cnf and add the bind-address directive to the server's IP address:
    bind-address = 192.168.0.5
    • Note: Replace 192.168.0.5 with the appropriate address.
    • Note: Alternatively you can leave this file as is to allow local and remote access.
  4. Restart your MySQL server. $sudo /sbin/service mysqld restart
    • Recommended - Set your MySQL root password with /usr/bin/mysqladmin -u root password 'new-password'
  5. Get into the MySQL command line utility: $mysql -u root -p
    • Enter your MySQL root password as set above, or just press enter if you didn't set one to log in with a blank password
  6. Enter the following commands:
    1. Type in: CREATE USER 'kodi' IDENTIFIED BY 'kodi'; and press return
    2. Type in: GRANT ALL ON *.* TO 'kodi'; and press return
    3. Type in: flush privileges; and press return
  7. Close out the command line tool with \q
[edit]

RaspberryPi Raspbian:

  1. $sudo apt-get update && sudo apt-get dist-upgrade to ensure that you have the very latest iteration of Raspbian. (September 2017 as of writing this)
  2. $sudo apt-get install mysql-server to install MYSQL Server.
  3. To configure MySQL to listen for connections from network hosts, $sudo nano /etc/mysql/mariadb.conf.d/50-server.cnf and change the bind-address directive to the server's IP address:
    1. from: bind-address = 127.0.0.1
    2. to: bind-address = 192.168.0.5
    • Note: Replace 192.168.0.5 with the appropriate address.
    • Note: To allow both local and remote access (i.e. from both the MySQL host to itself and also from other clients), either comment out the bind-address using a hash (#) to disable it, or use bind-address = 0.0.0.0 to open it completely.
  4. Restart your MySQL server: sudo service mysql restart
  5. Get into the MySQL command line utility: sudo mysql
  6. Enter the following commands:
    1. Type in: CREATE USER 'kodi' IDENTIFIED BY 'kodi'; and press return
    2. Type in: GRANT ALL ON *.* TO 'kodi'; and press return
    3. Type in: flush privileges; and press return
  7. Close out the command line tool with \q
[edit]

Mac OS X:

  1. Download a copy of MySQL server from http://dev.mysql.com/downloads/mysql/
  2. In Mac OS X, go to System Preferences -> MySQL, and click on “Start MySQL Server”. You’ll also want to tick to enable the “Automatically … on Startup” option.
  3. Now to set up the "kodi" user in MySQL and give it access. Launch Terminal.app on your Mac and issue the following commands, one line at a time:
    1. sudo /usr/local/mysql/bin/mysql
    2. CREATE USER 'kodi' IDENTIFIED BY 'kodi';
    3. GRANT ALL ON *.* TO 'kodi';
    4. exit
  4. Remain in Terminal.app. Now you'll be giving other computers on your network access to MySQL. Enter the next set of commands, one line at a time:
    1. cd /usr/local/mysql/support-files/
    2. sudo cp my-huge.cnf /etc/my.cnf
      The command line will ask for your Mac OS X user password. Enter it and press return. No text will show when you type your password in, this is normal.
    3. cd /etc
    4. sudo nano my.cnf
      This opens a file in a command line text editor
    5. Scroll down to the [mysqld] section and add or edit the following line so that it appears as:
      bind-address = ***.***.***.***
    6. Save and exit from the command line text editor
  5. Reboot the Mac, or restart the MySQL service from the System Preferences pane you installed earlier


[edit]

Installing MySQL on Windows

If you have chocolatey installed run choco install mysql

or
  1. Download a copy of MySQL server from https://dev.mysql.com/downloads/windows/installer/8.0.html
  2. Select Archives when you want the last stable main version 5.7.36 instead of version 8.0.x.
  3. Create a password when asked
  4. Select that you want the database to have network access when prompted during installation.

If you're using a firewall such as the one that's built into Windows, you will need to follow the steps below for the version of windows you installed Kodi on.

Windows 7/8/8.1 Built-in Firewall

Run the following command in powershell or execute all the steps below.
New-NetFirewallRule -DisplayName "Allow inbound TCP Port 3306 for MySQL" -Direction inbound –LocalPort 3306 -Protocol TCP -Action Allow
  1. Go to control panel and open Windows Firewall
  2. Click on Advanced Settings
  3. Click on Inbound Rules, then New Rule
  4. For the Rule Type, choose Port and hit Next
  5. For Protocol and Ports, select TCP protocol and type in 3306 for the Specific local ports and hit Next
  6. For Action, leave it at default which is Allow the connection and hit Next
  7. For Profile, you can leave it as default (everything checked by default) and hit Next
  8. For Name, set it to MySQL or any name that you will know what it is and click Finished

Setup users in MySQL for Kodi clients

  1. Open the "MySQL Command Line Client" from the MySQL start menu
  2. Enter the following commands:
    1. Type in: CREATE USER 'kodi' IDENTIFIED BY 'kodi'; and press return
    2. Type in: GRANT ALL ON *.* TO 'kodi'; and press return
    3. Type in: flush privileges; and press return
  3. Close out the command line tool

Note: If Kodi is unable to connect to the MySQL server, returning an error code [1130]:
If this occurs to you, try amending Step 2 above to read GRANT ALL ON *.* TO 'kodi'@'xxx.xxx.xxx.%'; where xxx.xxx.xxx is the first three quadrants of your home network's IP address (192.168.1 for example) and % as the last quadrant to allow addresses on the same subnet to connect.

[edit]

MySQL can also be installed on some network-attached storage (NAS) device devices. Here are some guides for various NAS devices that can have a MySQL server installed:

After setting up a database server on you NAS, you should create a Kodi user with full administrative privileges. The user should be able to log in from your Kodi devices, so make sure you give the user login access from external machines. You do not need to create a database as Kodi will create the required databases itself.

Warning: As you are giving the Kodi user full administrative privileges and external machine access it is recommended that you review your database security. It is highly recommenced that you block internet access to your database using an appropriate firewall.


[edit]

About FreeNAS

http://www.freenas.org/


FreeNAS is a FreeBSD based NAS system that can be run on almost any hardware - it uses ZFS for disk and file management. It is used at home and in enterprise businesses. 99% of tasks can be done via the web interface.


Example below is based on FreeNAS 9.1.1 on 12/12/13, and assumes you have already configured your nas with drives, datasets etc

How to

Make a jail

create a Jail via the FreeNAS webui - if unsure see here http://doc.freenas.org/index.php/Adding_Jails

make a note of the jail IP address shown - you will need this to put in the advancedsettings.xml file on the Kodi machine later

Prepare the jail


type the following commands

  • jls

Take note of the JID of the jail you created, use it in the command below and replace n with the number of the jail you just created

  • jexec n csh

Install mysql

You are now inside your jail

  • pkg install mysql55-server
  • pkg install nano
    • (nano is a text editor you will need shortly)

We now need to enable mysql in rc.conf

  • nano /etc/rc.conf

insert the line below into the rc.conf file

  • mysql_enable="YES"

save the file and exit (see bottom of nano edit page for keystrokes info)

  • service mysql-server start

Optional step below - this is an automated script that will secure you mysql instance - it will prompt you for answers to questions. Its up to you if you do this.

  • mysql_secure_installation

Configure mysql ready for Kodi to use

type in

  • mysql -u root -p


You are now in mysql administration


  • CREATE USER 'kodi' IDENTIFIED BY 'kodi';
  • GRANT ALL ON *.* TO 'kodi';
  • flush privileges;
  • quit;
[edit]

Optional: If you only use the MySQL server for Kodi and that server has non-critical data on it, then this probably not necessary. For a more secure MySQL installation use these 2 commands to grant permission only to databases Kodi uses. This is useful if you plan on using your MySQL server for more than just Kodi, or if you're worried about your internal network being exposed and wanting to lock things down more, etc.

Upto MySQL Server 5.7 Server:

  1. GRANT ALL ON `MyVideos%`.* TO 'kodi'@'%' IDENTIFIED BY 'kodi';
  2. GRANT ALL ON `MyMusic%`.* TO 'kodi'@'%' IDENTIFIED BY 'kodi';

As per MySQL 8.0 Server and upwards:

  1. GRANT ALL PRIVILEGES ON `MyVideos%`.* TO `kodi`@`%`;
  2. GRANT ALL PRIVILEGES ON `MyMusic%`.* TO `kodi`@`%`;
Careful The limited grants on this page don't give the kodi user permissions to create required TRIGGERs during install or upgrade. Kodi requires these TRIGGERs to function properly.

Use the broader grant *.* statement that is explained on the previous tabs while creating or upgrading the tables. Only restrict rights afterwards, if you need to.

Alternatively, figure out how to specifically give the account the right to create the require TRIGGERS - this varies between MySQL versions.
Next step: Setting up Kodi