如何从brew info mysql中删除mysql示例

nzrxty8p  于 2021-06-18  发布在  Mysql
关注(0)|答案(1)|浏览(358)

我正在尝试从MacBookPro中删除mysql,从全新开始。
我遵循了关于如何删除mysql的所有示例和文件的指南,但是如果我运行

brew info mysql

我仍然得到有关mysql 8.0的信息follows:-

mysql: stable 8.0.12 (bottled)
Open source relational database management system
https://dev.mysql.com/doc/refman/8.0/en/
Conflicts with:
mariadb (because mysql, mariadb, and percona install the same 
binaries.)
mariadb-connector-c (because both install plugins)
mysql-cluster (because mysql, mariadb, and percona install the same 
binaries.)
mysql-connector-c (because both install MySQL client libraries)
percona-server (because mysql, mariadb, and percona install the same 
binaries.)
Not installed
From: https://github.com/Homebrew/homebrew- 
core/blob/master/Formula/mysql.rb
==> Dependencies
Build: cmake ✘
Required: openssl ✘
==> Requirements
Required: macOS >= 10.10 ✔
==> Options
--with-debug
Build with debug support
--with-embedded
Build the embedded server
--with-local-infile
Build with local infile loading support
--with-memcached
Build with InnoDB Memcached plugin
--with-test
Build with unit tests
==> Caveats
We've installed your MySQL database without a root password. To secure 
it run:
mysql_secure_installation

MySQL is configured to only allow connections from localhost by default

To connect run:
mysql -uroot

To have launchd start mysql now and restart at login:
brew services start mysql
Or, if you don't want/need a background service you can just run:
mysql.server start
==> Analytics
install: 66,127 (30d), 215,889 (90d), 794,987 (365d)
install_on_request: 61,289 (30d), 185,026 (90d), 647,998 (365d)
build_error: 444 (30d)

我怎样才能完全去掉这个?谢谢你的帮助!

quhf5bfb

quhf5bfb1#

mysql已卸载。请看输出中间的这些行:

Not installed
From: https://github.com/Homebrew/homebrew-
core/blob/master/Formula/mysql.rb

homebrew正在从github远程获取有关mysql依赖关系和使用情况的信息。我也没有安装mysql,运行时得到相同的输出 brew info mysql . 如果你试着跑步 mysql 从命令行,你应该得到 -bash: mysql: command not found .

相关问题