Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

The Bing Provider relies on MySql Server to store information about searches and search histories. To connections Connecting to MySql rely relies on a MySql user called "bing" configured with a default password. To modify the password, please follow these steps.

  1. Generate a password. Lets refer to the generated password as $PASSWORD
  2. First configure the password in /etc/squirro/bing.ini like so:

    Code Block
    title/etc/squirro/bing.ini
    [bing]
    db = mysql://bing:$PASSWORD@localhost/bing?charset=utf8
  3. Next you would modify the password within MySql server:

    Code Block
    languagebash
    sudo su
    mysql -e "SET PASSWORD FOR bing = PASSWORD(\"$PASSWORD\")"
  4. Restart the Squirro Bing Provider service like so;:

    Code Block
    languagebash
    service sqbingd restart

...