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

How to install Chive on CentOS 7

1414

How to install Chive on CentOS 7

Chive is a free and open source database management tool similar to phpmyadmin. It is easy to administer, super fast UI and good web technology. This tutorial covers the installation procedure of Chive on CentOS 7.

Installation procedure

Chive requires the LAMP server for the application to run, so before installing Chive setup the LAMP environment on the target server and then follow the below steps. Now download the package for Chive and execute the wget command.

[root@linuxhelp ~]# wget https://github.com/fusonic/chive/archive/master.zip
--2017-04-18 15:42:07--  https://github.com/fusonic/chive/archive/master.zip
Resolving github.com (github.com)... 192.30.253.113, 192.30.253.112
Connecting to github.com (github.com)|192.30.253.113|:443... connected.
HTTP request sent, awaiting response... 302 Found
Location: https://codeload.github.com/fusonic/chive/zip/master [following]
.
.
.
HTTP request sent, awaiting response... 200 OK
Length: unspecified [application/zip]
Saving to: ‘ master.zip’ 
    [                                                                                                                           < =>               ] 3,879,725   12.4KB/s   in 2m 30s
2017-04-18 15:44:42 (25.2 KB/s) - ‘ master.zip’  saved [3879725]

Next extract the package directly into document root of apache and run the following command.

[root@linuxhelp ~]# unzip master.zip -d /var/www/html/
Archive:  master.zip
657678412e8f4a80f170c5fd12d277e3fb5302b2
   creating: /var/www/html/chive-master/
  inflating: /var/www/html/chive-master/.gitignore 
  inflating: /var/www/html/chive-master/.htaccess 
  inflating: /var/www/html/chive-master/README.md 
  inflating: /var/www/html/chive-master/archiveExport.sh 
   creating: /var/www/html/chive-master/assets/
 extracting: /var/www/html/chive-master/assets/.gitignore 
   creating: /var/www/html/chive-master/css/
  inflating: /var/www/html/chive-master/css/bg.gif 
  inflating: /var/www/html/chive-master/css/form.css 
  inflating: /var/www/html/chive-master/css/layout.css 
  inflating: /var/www/html/chive-master/css/main.css 
  inflating: /var/www/html/chive-master/css/reset.css 
   creating: /var/www/html/chive-master/images/
  inflating: /var/www/html/chive-master/images/blank.gif
.
.
.
master/yii/zii/widgets/jui/CJuiSlider.php 
  inflating: /var/www/html/chive-master/yii/zii/widgets/jui/CJuiSliderInput.php 
  inflating: /var/www/html/chive-master/yii/zii/widgets/jui/CJuiSortable.php 
  inflating: /var/www/html/chive-master/yii/zii/widgets/jui/CJuiTabs.php 
  inflating: /var/www/html/chive-master/yii/zii/widgets/jui/CJuiWidget.php

The package has been successfully extracted. Rename the extracted directory using the mv command as follows.

[root@linuxhelp ~]# mv /var/www/html/chive-master/ /var/www/html/chive

Now set the proper ownership and and file permission for the respective directory.

[root@linuxhelp ~]# chown -R apache:apache /var/www/html/chive
[root@linuxhelp ~]# chown -R 775 /var/www/html/chive

Login to MySQL database to create database and database user for Chive and execute the following commands.

[root@linuxhelp ~]# mysql -u root -p
Enter password:
Welcome to the MariaDB monitor.  Commands end with   or g.
Your MariaDB connection id is 10
Server version: 5.5.52-MariaDB MariaDB Server
Copyright (c) 2000, 2016, Oracle, MariaDB Corporation Ab and others.
Type ' help '  or ' h'  for help. Type ' c'  to clear the current input statement.

MariaDB [(none)]>  create database chive 
Query OK, 1 row affected (0.00 sec)

MariaDB [(none)]>  CREATE USER ' chive' @' localhost'  IDENTIFIED BY ' 123'  
Query OK, 0 rows affected (0.03 sec)

MariaDB [(none)]>  GRANT ALL ON chive.* TO ' chive' @' localhost'  
Query OK, 0 rows affected (0.02 sec)

MariaDB [(none)]>  flush privileges 
Query OK, 0 rows affected (0.00 sec)

MariaDB [(none)]>  exit 
Bye

Now open the browser and navigate to following URL http://192.168.7.160/chive. The Chive login page appears.
chive login page

The application is running successfully. Now the user can use the Chive application to manage the database, schemas and tables.
chive database tool

Wasn' t that an easy installation procedure? Chive is one of the state of the art database tool that made the work of a web engineer very easy.

Tags:
liam
Author: 

Comments ( 0 )

No comments available

Add a comment

Frequently asked questions ( 5 )

Q

Is Chive on CentOS 7 free?

A

yes, Chive is free and open source

Q

HOw to extract the chive package on centos 7?

A

Chive on CentOS 7 can be extracted using the following command

unzip packagename.zip

Q

How to set the proper ownership and and file permission ?

A

To set the proper ownership and and file permission use the following command

chown -R apache:apache /var/www/html/chive
chown -R 775 /var/www/html/chive

Q

How to access chive from web?

A

To access chive from web access the local host Ip from web

Q

What is chive on centos 7?

A

Chive is a free and open source database management tool similar to phpmyadmin. It is easy to administer, super fast UI and good web technology.

Related Tutorials in How to install Chive on CentOS 7

Related Tutorials in How to install Chive on CentOS 7

How To Install AnyDesk on Centos 7
How To Install AnyDesk on Centos 7
Apr 2, 2018
How to install Tiki Wiki CMS Groupware on CentOS 7
How to install Tiki Wiki CMS Groupware on CentOS 7
May 31, 2018
How to install PHP ImageMagick on CentOS 7
How to install PHP ImageMagick on CentOS 7
Nov 4, 2017
How to Upgrade and Downgrade the PHP Versions on CentOS 7.6
How to Upgrade and Downgrade the PHP Versions on CentOS 7.6
Jun 4, 2019
How to install Apache from Source Code on CentOS 7
How to install Apache from Source Code on CentOS 7
Oct 21, 2017
How to enable or disable repositories in CentOS
How to enable or disable repositories in CentOS
Mar 28, 2018
How to install AWStats on CentOS 7
How to install AWStats on CentOS 7
Dec 8, 2017
How to install Apache JMeter in CentOS 7
How to install Apache JMeter in CentOS 7
Mar 24, 2017

Related Forums in How to install Chive on CentOS 7

Related Forums in How to install Chive on CentOS 7

CentOS
connor class=
How To Completely Remove Apache package On CentOS 7.6
May 14, 2019
CentOS
ceriaimmaculate class=
setfacl : command not found
Jan 3, 2018
CentOS
mason class=
Error getting authority: Error initializing authority: Could not connect: No such file or directory (g-io-error-quark, 1)
Nov 20, 2018
CentOS
landon class=
Command to find SNMP Version
May 28, 2018
CentOS
arjitharon class=
cannot start minio service help
Mar 10, 2018
Apache tomcat
AadrikaAnshu class=
Cannot find ./catalina.sh The file is absent or does not have execute permission This file is needed to run this program
Jun 17, 2019
gitlab
caden class=
Insufficient space in download directory /var/cache/yum/x86_64/6/base/packages
Jul 22, 2019
OpenVAS
frank class=
Could not retrieve mirrorlist http://mirrorlist.centos.org/?release=7&arch=x86_64&repo=os&infra=stock error was 14: curl#6 - "Could not resolve host: mirrorlist.centos.org; Unknown error"
Dec 20, 2018
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 Ganesh Konka ?
Zentya 6.1 http proxy configuration

please send link for creating zentyal 6.1 for http proxy and firewall as gateway.

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.