关于如何连接阿里云服务器上的MySQL数据库的解答

关于如何连接阿里云服务器上的MySQL数据库的解答,第1张

用 SSH客户端登录上以后

首先启动数据库:

[root@iZm5ec880z2rorZ ~]# service mysqld start

可以输入一下加粗命令:

[root@iZm5ec880z2rorZ ~]#  mysql -u root -p 

Enter password: (输入你的数据库密码)

Welcome to the MySQL monitor.  Commands end with or \g.

Your MySQL connection id is 5

Server version: 5.1.73-log MySQL Community Server (GPL)

Copyright (c) 2000, 2013, 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.

mysql> use mysql

Database changedmysql> GRANT ALL PRIVILEGES ON *.* TO root@'%' IDENTIFIED BY 'ldyu123' WITH GRANT OPTION

Query OK, 0 rows affected (0.00 sec)

mysql> commit

Query OK, 0 rows affected (0.00 sec)

mysql> flush privileges

Query OK, 0 rows affected (0.00 sec)

mysql> exit

退出后,输入下边的命令:

[root@iZm5ec880z2rorZ ~]# service mysqld restart

Shutting down MySQL...                                     [  OK  ]

Starting MySQL.                                            [  OK  ]

安装了mysql客户端服务器--》创建好数据库--》服务器上的站点直接连接地址为localhost 服务器外的如果要调用需要服务器开启mysql远程允许 然后再调用的时候填写服务器的外网ip地址

iis配置php需要配置iis,具体教程网上很多,mysql 安装后有些不能远程连接,需要设置用户,navicat连接mysql,navicat是客户端的,如果不能连接看看mysql的用户和端口,一般不会出现问题;ftp服务器端要安装服务器的ftp,客户端才能连接ftp,你在服务器设置了ftp的目录权限用户和密码,客户端直接连接,就可以直接修改代码,(代码放在服务器端的ftp知道得目录里,iis的站点也指定到ftp代码目录里)

iis+php是一个

php连接mysql是一个

navicat连接mysql是一个

ftp是单独的一个,你要分清,不能混为一谈,还有就是云服务器和普通的服务器几乎是没有什么区别


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/sjk/10843237.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-05-11
下一篇 2023-05-11

发表评论

登录后才能评论

评论列表(0条)

保存