centos7源码安装mysql5.7怎么卸载
答案:2 悬赏:0 手机版
解决时间 2021-02-14 15:25
- 提问者网友:寂寞梧桐
- 2021-02-14 08:12
centos7源码安装mysql5.7怎么卸载
最佳答案
- 五星知识达人网友:空山清雨
- 2021-02-14 08:46
安装360卫士,在软件管家里找到后卸载。
全部回答
- 1楼网友:青灯有味
- 2021-02-14 09:09
好几种安装方法,有二进制安装,yum安装,rpm包安装。
#二进制安装链接
mysql :: mysql 5.6 reference manual :: 2.2 installing mysql on unix/linux using generic binaries
https://dev.mysql.com/doc/refman/5.6/en/binary-installation.html
#yum安装
shell> groupadd mysql
shell> useradd -r -g mysql -s /bin/false mysql
shell> cd /usr/local
shell> tar zxvf /path/to/mysql-version-os.tar.gz
shell> ln -s full-path-to-mysql-version-os mysql
shell> cd mysql
shell> chown -r mysql .
shell> chgrp -r mysql .
shell> scripts/mysql_install_db --user=mysql
shell> chown -r root .
shell> chown -r mysql data
shell> bin/mysqld_safe --user=mysql &
# next command is optional
shell> cp support-files/mysql.server /etc/init.d/mysql.server
#yum安装
mysql :: mysql 5.6 reference manual :: 2.5.1 installing mysql on linux using the mysql yum repository
https://dev.mysql.com/doc/refman/5.6/en/linux-installation-yum-repo.html
#rpm包安装
mysql :: mysql 5.6 reference manual :: 2.5.5 installing mysql on linux using rpm packages from oracle
https://dev.mysql.com/doc/refman/5.6/en/linux-installation-rpm.html
###还可以看看mariadb数据库的安装和使用。
#www.linuxprobe.com/chapter-18.html
我要举报
如以上问答信息为低俗、色情、不良、暴力、侵权、涉及违法等信息,可以点下面链接进行举报!
大家都在看
推荐资讯