gpt4 book ai didi

mysql连接配置文件配置文件

转载 作者:塔克拉玛干 更新时间:2023-11-03 01:39:59 25 4
gpt4 key购买 nike

有没有办法将连接参数(如主机、端口、用户名、密码、数据库)作为快捷方式保存到我经常访问的 mysql 服务器?

我正在寻找类似于 ssh config 的东西对于来自 ubuntu 终端的 mysql。最好还有 ssh 隧道支持。

最佳答案

您可以将 --defaults-file 选项与 shell 别名结合使用,例如:

% cat db01
[mysql]
user=root
password=<your_pwd>
host=<your_host>


% alias my_db01='mysql --defaults-file=db01'

% my_db01
Welcome to the MySQL monitor. Commands end with ; or \g.
Your MySQL connection id is 41
Server version: 5.1.54-1ubuntu4 (Ubuntu)

Copyright (c) 2000, 2010, Oracle and/or its affiliates. All rights reserved.
This software comes with ABSOLUTELY NO WARRANTY. This is free software,
and you are welcome to modify and redistribute it under the GPL v2 license

Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.

mysql>

因此您可以使用不同的设置创建不同的文件。

关于mysql连接配置文件配置文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7580036/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com