• Categories
    Category
  • Categories
    Category
  • News
  • Tutorials
  • Forums
  • Tags
  • Users
Tutorial Comments FAQ Related Articles

How to Install and Configure Sphinx on Ubuntu 16.04

2375

To Install and Configure Sphinx on Ubuntu 16.04

Sphinx is a simple, relevance and open source full-text search server. It is written in C++ programming language and works with Linux and other popular operating systems. It is so simple to install and also configure Sphinx, and at the end of this tutorial, you will be accustomed to the method to install and configure Sphinx on Ubuntu 16.04. 

 

Install Sphinx

First, make sure you install it by using the apt-get package manager on your Ubuntu system.

root@linuxhelp:~# add-apt-repository ppa:builds/sphinxsearch-rel22
 Fast standalone full-text SQL search engine Sphinx is a standalone full text search engine, meant to provide fast, size-efficient and relevant fulltext search functions to other applications. Sphinx was specially designed to integrate well with SQL databases and scripting languages. Currently built-in data sources support fetching data either via direct connection to MySQL or PostgreSQL, or using XML pipe mechanism (a pipe to indexer in special XML-based format which Sphinx recognizes).
The ' rel22'  repo contains the builds from current release branch (2.2.x), which updated only with bugfixes (minor number), or with major releases. It
.
.
gpg: keyring `/tmp/tmp8o6l_qpx/secring.gpg'  created
gpg: keyring `/tmp/tmp8o6l_qpx/pubring.gpg'  created
gpg: requesting key 16932B16 from hkp server keyserver.ubuntu.com
gpg: /tmp/tmp8o6l_qpx/trustdb.gpg: trustdb created
gpg: key 16932B16: public key " Launchpad PPA for Sphinxsearch builds team"  imported
gpg: Total number processed: 1
gpg:               imported: 1  (RSA: 1)

 

 

And once it is done, make sure you update the repositories by making use of the following command.

root@linuxhelp:~# apt-get update
Hit:1 http://security.ubuntu.com/ubuntu xenial-security InRelease
Hit:2 http://in.archive.ubuntu.com/ubuntu xenial InRelease
Hit:3 http://in.archive.ubuntu.com/ubuntu xenial-updates InRelease      
Get:4 http://ppa.launchpad.net/builds/sphinxsearch-rel22/ubuntu xenial InRelease [17.6 kB]
Hit:5 http://in.archive.ubuntu.com/ubuntu xenial-backports InRelease                
Get:6 http://ppa.launchpad.net/builds/sphinxsearch-rel22/ubuntu xenial/main amd64 Packages [792 B]
Get:7 http://ppa.launchpad.net/builds/sphinxsearch-rel22/ubuntu xenial/main i386 Packages [796 B]
Get:8 http://ppa.launchpad.net/builds/sphinxsearch-rel22/ubuntu xenial/main Translation-en [628 B]
Fetched 19.8 kB in 1s (10.0 kB/s)
Reading package lists... Done

 

Now, you shall proceed with the installation of Sphinxsearch by making use of the following command.

root@linuxhelp:~# apt-get install sphinxsearch
Reading package lists... Done
Building dependency tree       
Reading state information... Done
The following additional packages will be installed:
  libmysqlclient20 libodbc1 mysql-common
Suggested packages:
.
.
Do not forget to reindex all indexes by running: indexer --all

Processing triggers for libc-bin (2.23-0ubuntu3) ...
Processing triggers for ureadahead (0.100.0-19) ...
Processing triggers for systemd (229-4ubuntu4) ...

 

Once it is done, make sure you install Mariadb Database by making use of the following command.

root@linuxhelp:~# apt install mariadb*
Reading package lists... Done
Building dependency tree       
Reading state information... Done
Note, selecting ' mariadb-test'  for glob ' mariadb*' 
Note, selecting ' mariadb-test-data-10.0'  for glob ' mariadb*' 
Note, selecting ' mariadb-test-data'  for glob ' mariadb*' 
Note, selecting ' mariadb-test-5.5'  for glob ' mariadb*' 
Note, selecting ' mariadb-common'  for glob ' mariadb*' 
Note, selecting ' mariadb-plugin-connect'  for glob ' mariadb*' 
Note, selecting ' mariadb-server-core-5.5'  for glob ' mariadb*' 
Note, selecting ' mariadb-server-5.5'  for glob ' mariadb*' 
Note, selecting ' mariadb-tokudb-engine-5.5'  for glob ' mariadb*' 
.
.
Setting up mariadb-test (10.0.33-0ubuntu0.16.04.1) ...
Setting up odbcinst1debian2:amd64 (2.3.1-4.1) ...
Setting up unixodbc (2.3.1-4.1) ...
Setting up mariadb-plugin-connect (10.0.33-0ubuntu0.16.04.1) ...
Setting up odbcinst (2.3.1-4.1) ...
Processing triggers for libc-bin (2.23-0ubuntu3) ...
Processing triggers for ureadahead (0.100.0-19) ...
Processing triggers for systemd (229-4ubuntu4) ...

 

Let’ s import the sample SQL file into the database. First, create a database named test in your MySQL server, after that restore the database provided by the sphinx search package.

root@linuxhelp:~# mysqladmin -u root -p create test
Enter password:
mysql -u root -p test <  /usr/share/doc/sphinxsearch/example-conf/example.sql
Enter password:


Configure Sphinx

We are through with the installation, so now we shall proceed with the sphinx configuration and edit for the MySQL connection configuration as shown below.

root@linuxhelp:~# nano /etc/sphinxsearch/sphinx.conf
source src1
{
    # data source type. mandatory, no default value
    # known types are mysql, pgsql, mssql, xmlpipe, xmlpipe2, odbc
    type                    = mysql

    #####################################################################
    ## SQL settings (for ' mysql'  and ' pgsql'  types)
    #####################################################################

    # some straightforward parameters for SQL source types
    sql_host                = localhost
    sql_user                = root
    sql_pass                = secret
    sql_db                  = test
    sql_port                = 3306  # optional, default is 3306

 

 

Once it is done, you need to run the indexer to create the full-text index from your data. You can execute this action by making use of the following command.

root@linuxhelp:~# indexer --all 
Sphinx 2.2.11-id64-release (95ae9a6)
Copyright (c) 2001-2016, Andrew Aksyonoff
Copyright (c) 2008-2016, Sphinx Technologies Inc (http://sphinxsearch.com)

using config file ' /etc/sphinxsearch/sphinx.conf' ...
indexing index ' test1' ...
ERROR: index ' test1' : sql_connect: Can' t connect to MySQL server on ' linuxhelp'  (111) (DSN=mysql://root:***@linuxhelp:3306/test).
total 0 docs, 0 bytes
total 0.001 sec, 0 bytes/sec, 0.00 docs/sec
indexing index ' test1stemmed' ...
ERROR: index ' test1stemmed' : sql_connect: Can' t connect to MySQL server on ' linuxhelp'  (111) (DSN=mysql://root:***@linuxhelp:3306/test).
total 0 docs, 0 bytes
total 0.000 sec, 0 bytes/sec, 0.00 docs/sec
skipping non-plain index ' dist1' ...
skipping non-plain index ' rt' ...
total 0 reads, 0.000 sec, 0.0 kb/call avg, 0.0 msec/call avg
total 0 writes, 0.000 sec, 0.0 kb/call avg, 0.0 msec/call avg

 

Once it is done, you need to  configure your Sphinx server to autostart on system boot. So, run the following command to complete that action. 

root@linuxhelp:~# sed -i ' s/START=no/START=yes/g'  /etc/default/sphinxsearch


Now, you need to start service for the first time and check the status.

root@linuxhelp:~# service sphinxsearch start
root@linuxhelp:~# service sphinxsearch status
● sphinxsearch.service - SphinxSearch Search Engine
   Loaded: loaded (/lib/systemd/system/sphinxsearch.service  disabled  vendor preset: enabled)
   Active: active (running) since Fri 2018-02-09 17:39:23 IST  6s ago
  Process: 13298 ExecStart=/usr/bin/searchd --config /etc/sphinxsearch/sphinx.conf (code=exited
  Process: 13294 ExecStartPre=/bin/chown sphinxsearch.sphinxsearch /var/run/sphinxsearch (code=
  Process: 13291 ExecStartPre=/bin/mkdir -p /var/run/sphinxsearch (code=exited, status=0/SUCCES
 Main PID: 13302 (searchd)
    Tasks: 8 (limit: 512)
   CGroup: /system.slice/sphinxsearch.service
           ├─13301 /usr/bin/searchd --config /etc/sphinxsearch/sphinx.conf
           └─13302 /usr/bin/searchd --config /etc/sphinxsearch/sphinx.conf

 

Once it is done you need to execute some queries on your Sphinx server.

root@linuxhelp:~# mysql -h0 -P9306
Welcome to the MariaDB monitor.  Commands end with   or g.
Your MySQL connection id is 1
Server version: 2.2.11-id64-release (95ae9a6) 

Copyright (c) 2000, 2017, Oracle, MariaDB Corporation Ab and others.

With this, this tutorial on installing and configuring sphinx server on Ubuntu 16.04 comes to an end. 
 

Tags:
matthew
Author: 

Comments ( 0 )

No comments available

Add a comment

Frequently asked questions ( 5 )

Q

What is Sphinx?

A

Sphinx is an open source search engine which can efficiently be used for full-text searches. Even very large data can be thoroughly searched with Sphinx

Q

where i get the official documentation for Sphinx?

A

you can refer the following link,

http://www.sphinx-doc.org/en/stable/install.html

Q

Give me the some alternatives for Sphinx?

A

you can use the following

Doxygen,
GitBook,
Presidium,
SkyDocs,
DocPad .

Q

How to install Sphinx in CentOS CLi?

A

To install Sphinx in CentOS CLi use the following command?

yum install sphinx-2.2.11-1.rhel7.x86_64.rpm -y

Q

ow to start mariadb service on Sphinx in CentOS?

A

To start mariadb service on Sphinx in CentOS use the following command

#systemctl start mariadb.service

Related Tutorials in How to Install and Configure Sphinx on Ubuntu 16.04

Related Tutorials in How to Install and Configure Sphinx on Ubuntu 16.04

How to install Meld tool in Ubuntu
How to install Meld tool in Ubuntu
Feb 25, 2017
How to install Dconf-Editor on Ubuntu 18.04
How to install Dconf-Editor on Ubuntu 18.04
Jul 14, 2018
How to install and update OpenSSL on Ubuntu 16.04
How to install and update OpenSSL on Ubuntu 16.04
Mar 9, 2017
How to install GLib 2.0 on Ubuntu 17.04
How to install GLib 2.0 on Ubuntu 17.04
May 22, 2017
How to Install Android Emulator on Ubuntu 20.4.1
How to Install Android Emulator on Ubuntu 20.4.1
Jul 13, 2021
How To Install AnyDesk on Ubuntu 16.04
How To Install AnyDesk on Ubuntu 16.04
Apr 4, 2018
How to install Genymotion 2.12.1 on Ubuntu 18.04
How to install Genymotion 2.12.1 on Ubuntu 18.04
Jul 9, 2018
How to install Timeshift 18.4 on Ubuntu 18.04
How to install Timeshift 18.4 on Ubuntu 18.04
Jul 6, 2018

Related Forums in How to Install and Configure Sphinx on Ubuntu 16.04

Related Forums in How to Install and Configure Sphinx on Ubuntu 16.04

Ubuntu
matthew class=
Failed to enable unit: Refusing to operate on linked unit file sshd.service
Apr 15, 2019
Ubuntu
mason class=
Passwd: You may not view or modify password information for root On Ubuntu 19.04
May 27, 2019
Ubuntu
isaac class=
/etc/apt/sources.list Permission denied
May 18, 2017
Ubuntu
yousuf class=
lsb_release command not working : Debian
Jan 18, 2018
ifconfig command
jackbrookes class=
what is the location of the ifconfig program on your machine?
Jan 4, 2018
Ubuntu
mason class=
"E: Package 'php-mcrypt' has no installation candidate" error on Ubuntu 20.4.1
Mar 15, 2021
NFS
luke class=
clnt_create: RPC: Program not registered
Apr 25, 2017
Apache
isaac class=
How to disable apache welcome page on Ubuntu
Dec 15, 2018

Related News in How to Install and Configure Sphinx on Ubuntu 16.04

Related News in How to Install and Configure Sphinx on Ubuntu 16.04

How To Install Mixxx on Ubuntu 16.04
How To Install Mixxx on Ubuntu 16.04
Oct 11, 2017
Ubuntu 17.04 released with greater expectations
Ubuntu 17.04 released with greater expectations
Apr 15, 2017
Ubuntu Core now available on i.MX6 based TS-4900 thanks to Technologic Systems Inc.
Ubuntu Core now available on i.MX6 based TS-4900 thanks to Technologic Systems Inc.
Mar 1, 2017
Ubuntu 17.10 Artful Aardvark Beta 1 is now here. Download Now
Ubuntu 17.10 Artful Aardvark Beta 1 is now here. Download Now
Sep 2, 2017
Ubuntu Unity is no more: One Linux dream has been axed
Ubuntu Unity is no more: One Linux dream has been axed
Apr 7, 2017
What’s next for Ubuntu Linux Desktop?
What’s next for Ubuntu Linux Desktop?
Apr 11, 2017
Say Hi to Ubuntu's new mascot
Say Hi to Ubuntu's new mascot
Mar 22, 2019
KDE Connect App was removed from Google Play Store and brought back in 24 hours
KDE Connect App was removed from Google Play Store and brought back in 24 hours
Mar 22, 2019
Back To Top!
Rank
User
Points

Top Contributers

userNamenaveelansari
135850

Top Contributers

userNameayanbhatti
92510

Top Contributers

userNamehamzaahmed
32150

Top Contributers

1
userNamelinuxhelp
31040

Top Contributers

userNamemuhammadali
24500
Can you help Isaac ?
How to run windows application in linux

I need to run the windows application in my Linux machine, instead of installing from yum repo or any other repos. How to do that..??

Networking
  • Routing
  • trunk
  • Netmask
  • Packet Capture
  • domain
  • HTTP Proxy
Server Setup
  • NFS
  • KVM
  • Memory
  • Sendmail
  • WebDAV
  • LXC
Shell Commands
  • Cloud commander
  • Command line archive tools
  • last command
  • Shell
  • terminal
  • Throttle
Desktop Application
  • Linux app
  • Pithos
  • Retrospect
  • Scribe
  • TortoiseHg
  • 4Images
Monitoring Tool
  • Monit
  • Apache Server Monitoring
  • EtherApe 
  • Arpwatch Tool
  • Auditd
  • Barman
Web Application
  • Nutch
  • Amazon VPC
  • FarmWarDeployer
  • Rukovoditel
  • Mirror site
  • Chef
Contact Us | Terms of Use| Privacy Policy| Disclaimer
© 2025 LinuxHelp.com All rights reserved. Linux™ is the registered trademark of Linus Torvalds. This site is not affiliated with linus torvalds in any way.