在服务器上远程链接另一台服务器的数据库的方法how to connet the database from the other host

iwangzheng.com

16:57 [[email protected]]$ mysql -u<username>
-p<password> -h10.103.xx.xx
Welcome to the MySQL monitor. Commands end with ; or \g.
Your MySQL connection id is 571
Server version: 5.0.77 Source distribution

Copyright (c) 2000, 2011, Oracle and/or its affiliates. All rights reserved.

Oracle is a registered trademark of Oracle Corporation and/or its
affiliates. Other names may be trademarks of their respective
owners.

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

([email protected]x) [(none)]> show databases;
+--------------------------+
| Database |
+--------------------------+
| information_schema |
| mvf_for_ykew_development |
| test |
+--------------------------+
3 rows in set (0.00 sec)

([email protected]x) [(none)]> Ctrl-C -- exit!
Aborted
tty:[0] jobs:[0] cwd:[/tmp]
16:57 [[email protected]]$ mysql -u<username>
-p<password> -h10.103.28.25 mvf_for_ykew_development <
/tmp/db_bak.20140509.sql
tty:[0] jobs:[0] cwd:[/tmp]
16:58 [[email protected]]$ mysql -u<username>
-py<password> -h10.103.XX.XX mvf_for_ykew_development <
/tmp/db_bak.20140509.sql

so,how to connet the database from the other host,just try this:

mysql -u<username>  -p<password> -h10.103.xx.xx

how to import the data to the database ,try this:

mysql -u<username>
-p<password> -h10.103.xx.xx databasename <
/tmp/db_bak.20140509.sql(the local source)

在服务器上远程链接另一台服务器的数据库的方法how to connet the database from the other
host,布布扣,bubuko.com

在服务器上远程链接另一台服务器的数据库的方法how to connet the database from the other
host

时间: 2024-10-07 06:00:00

在服务器上远程链接另一台服务器的数据库的方法how to connet the database from the other host的相关文章

通过VNC连接远程服务器,然后登陆服务器上的虚拟机,出现键盘输入问题的解决方法

前几天由于要在服务器上装一个虚拟机,然后就选择了vmware workstation,装好之后,进入虚拟机中的centOS系统,发现键盘上的Cpas Lock键不起作用,按下之后还是输入小写,而且按住shift + ,不会出现 ‘<' 而是出现 ‘>',这怎么可以,这完全没法在虚拟机中使用呀. 因为我是通过VNC连接到服务器,原先一直认为是vmware软件的问题,然后就换vmware的版本,结果还是不行:后来我就直接试了下直接在服务器上链接一个屏幕,然后使用vmware,发现完全没有这个问题:

如何把文件上传到另外一台服务器

假定有两台服务器:A和B,其中A为Web服务器(IP:192.123.1.1, 为iis发布程序的服务器 ),B为文件服务器(IP: 192.123.2.2) 在文件服务器B中某个磁盘下创建一个共享文件夹DocShare,同时在该服务器上创建一个用户,如docUser, 并给此用户分配共享文件夹的读写权限 在WEB服务器A中也创建同一个用户,如 docUser, 同时密码与B中的docUser必须保持一致.并将用户docUser加入到IIS_WPG用户组 创建一个新的应用程序池docPool,

在电脑上远程连接你的 云服务器( ECS)

在与服务器上一般安装的主流操作系统   linux   和   windowsServer linux一般都是centOs系列 这个主要是连接windowsServer 系统 用xshell ,winscp 连接 云服务的上Linux系统,下次再弄,而且,再云服务器上换系统贼方便 首先,在你安装操作系统的时候会设置密码,用户名所以别忘记就行 这个windowsserver 操作系统 在阿里云上也可以进行远程连接,不过使用不怎么方便,所以在电脑上连接,使用比较舒服 主要会用到你的公网ip   或你

linux从一台服务器传输文件到另一台服务器上

首先两台服务器必须是可以ping通的 例: ping 10.22.137.10 ping通之后: 1.复制文件 格式: scp 目录/文件名.文件格式 目标服务器用户名@ip地址:目标服务器目录 例: scp /backup/test/md3/export.sh [email protected]:/ssx/dev/md12.复制目录(包括目录下的文件) scp -r /backup/test/md3 [email protected]:/ssx/dev/md 原文地址:https://blog

PHP绿色集成环境在服务器上的应用,PHPWAMP在服务器上搭建网站。

Windows下的Apache+Mysql+PHP,称为WAMP. 本文案例采用的PHP集成环境是我最新发布的新版本PHPWAMP8.1.8.8. 我集成的相关组件都是完全版的,适合本地调试,也适合用在服务器上. PHP集成环境如何在服务器上搭建网站,下面我将提供详细的操作步骤图. ------------------------------------------------------------------------------------------------------------

阿里云在Nginx/Tengine服务器上安装证书和在IIS服务器上安装SSL证书

在Nginx/Tengine服务器上安装证书 https://help.aliyun.com/document_detail/98728.html?spm=5176.2020520163.0.0.3c3856a7A8zZ8s 在IIS服务器上安装SSL证书 https://help.aliyun.com/document_detail/98729.html?spm=5176.2020520163.0.0.3c3856a7A8zZ8s 原文地址:https://www.cnblogs.com/pa

通过脚本把远程服务器上的表和数据拷贝到本地数据库

EXEC sp_addlinkedserver @server='srv_lnk', @srvproduct='', @provider='SQLOLEDB', @datasrc='HELIOS01.us.psav.dom\HELIOSLISTENER' EXEC sp_addlinkedsrvlogin 'srv_lnk', 'false', NULL, 'ShinetechPSAV', 'CeJe5r+sp' USE WorkForceManagement BEGIN TRY --BEGIN

Java判断远程服务器上文件是否存在(跨服务器)

方法一: URL serverUrl = new URL("http://localhost:8090/Demo/clean.sql"); HttpURLConnection urlcon = (HttpURLConnection) serverUrl.openConnection(); String message = urlcon.getHeaderField(0); if (StringUtils.hasText(message) && message.start

node 实现把文件上传到另一台服务器

1.needle npm install needle var needle = require('needle'); var data = { foo: 'bar', image: { file: './images/2.png', content_type: 'image/png' } } needle.post('http://xxx/upload_v_article', data, { multipart: true }, function(err, resp, body) { // n