Is there a way to only install the mysql client (Linux)?

前端 未结 7 1814
醉话见心
醉话见心 2020-12-04 11:40

Are there are any Linux mysql command line tools that don\'t require the entire mysql db installation package to be installed?

What I\'m trying to do is from serve

7条回答
  •  旧时难觅i
    2020-12-04 12:13

    To install only mysql (client) you should execute

    yum install mysql
    

    To install mysql client and mysql server:

    yum install mysql mysql-server
    

提交回复
热议问题