安全快速更改MySQL数据库名称

Crq
Crq
管理员
1446
文章
0
粉丝
Linux教程评论2字数 516阅读1分43秒阅读模式
摘要MySQL似乎没有更改数据库名称的语句(也许是我不知道),如果你有数据库服务器的管理权限,可以直接更改一下目录名即可,但如果没有权限,可以通过更改表名达到修改数据库名的目的。下面是...
1、新建数据库centos_old.
mysql > create database centos_old;
2、使用select concat拼成所有rename table的语句。
    mysql -uroot -p -e "select concat('rename table centos.',table_name,' to centos_old.',table_name,';') from information_schema.TABLES where TABLE_SCHEMA='centos';" > rename_mysql_name.sql

安全快速更改MySQL数据库名称

打开rename_mysql_name.sql,把第一行删除。

rename_mysql_name.sql内容大概为:

    rename table centos.wp_commentmeta to centos_old.wp_commentmeta;
    rename table centos.wp_comments to centos_old.wp_comments;
    rename table centos.wp_forum_forums to centos_old.wp_forum_forums;
    rename table centos.wp_forum_groups to centos_old.wp_forum_groups;
    rename table centos.wp_forum_posts to centos_old.wp_forum_posts;
    rename table centos.wp_forum_threads to centos_old.wp_forum_threads;
    rename table centos.wp_forum_usergroup2user to centos_old.wp_forum_usergroup2user;
    rename table centos.wp_forum_usergroups to centos_old.wp_forum_usergroups;
    rename table centos.wp_links to centos_old.wp_links;
    rename table centos.wp_options to centos_old.wp_options;
    rename table centos.wp_postmeta to centos_old.wp_postmeta;
    rename table centos.wp_posts to centos_old.wp_posts;
    rename table centos.wp_term_relationships to centos_old.wp_term_relationships;
    rename table centos.wp_term_taxonomy to centos_old.wp_term_taxonomy;
    rename table centos.wp_terms to centos_old.wp_terms;
    rename table centos.wp_usermeta to centos_old.wp_usermeta;
    rename table centos.wp_users to centos_old.wp_users;
3、执行rename语句
mysql -uroot -p < rename_mysql_name.sql

这样就完成了centos数据库名更改为centos_old的操作。

原文地址:https://www.centos.bz/2013/09/quick-and-secure-modify-mysql-name/

本文地址: https://www.linuxprobe.com/linux-mysql.html编辑:苏西云,审核员:逄增宝

本文原创地址:https://www.linuxprobe.com/linux-mysql.html编辑:public,审核员:暂无

weinxin
我的微信
微信号已复制
我的微信
这是我的微信扫一扫
 
Crq
  • 本文由 Crq 发表于2025年1月19日 21:09:45
  • 转载请注明:https://www.cncrq.com/12677.html
如何在HTTP头中隐藏PHP版本号 Linux教程

如何在HTTP头中隐藏PHP版本号

出于服务器安全原因(虽然不是主要的要担心的威胁),建议你禁用或隐藏此信息,避免那些针对你的服务器的攻击者知道你是否运行了 PHP。在本文中,我们将解释如何隐藏或关闭服务器 HTTP...
巧用Grep 命令 Linux教程

巧用Grep 命令

所有的类linux系统都会提供一个名为grep(global regular expression print,全局正则表达式输出)的搜索工具。grep命令在对一个或多个文件的内容...
nodejs使用request发送http请求 Linux教程

nodejs使用request发送http请求

在nodejs的开发中,有时需要后台去调用其他服务器的接口,这个时候,就需要发送HTTP请求了。有一个简单的工具可以用,​ ​Simplified HTTP request cli...
匿名

发表评论

匿名网友
:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:
确定

拖动滑块以完成验证