mariadb

公有云(三)

雨燕双飞 提交于 2021-02-20 16:46:54
12.重装系统 1.更换系统盘 直接换系统的那块盘,可以换不同的操作系统,比如从Linux换成Windows 或者Windows换成linux 步骤:ECS控制台---点击对应的实例---停止实例--右侧更多-- 更换系统盘 2.重新初始化 步骤:ECS控制台---停止实例--右侧更多 -- 重新初始化磁盘--到了本实例云盘管理-- 选择对应的系统盘---打勾-- 重新初始化磁盘 13.工单系统 工单是什么 工单是我们提交问题的 如何创建工单 点击上面菜单栏-- 点击选择提交工-- 选择对应的产品分类 --- 选择遇到问题的分类,在点右下角提交 14.RDS 云数据库 支持mysql sqlserver postgrepsql mariadb PPAS(高度兼容oracle) 云数据库RDS 建议和ECS 在同一个区域里 创建实例 地域:根据你的云主机来选择 类型:mysql/mariadb/postgrepql基础版 可用区域要和你的ECS匹配, 网络类型也要根据你的云主机网络来选择 规则:小型网站, 1核1G就够了 后续可以升级 存储空间也是安需求建 购买实例后,需要等1到2分钟擦i可以看到实例列表 管理实例 点击管理页面来进行管理 专有网络的联通性 ping 数据库地址 安装mysql yum install -y mysql 管理平台创建MYSQL账号

Debian安装MariaDB

心不动则不痛 提交于 2021-02-19 10:47:07
环境: Debian9 安装 sudo apt update sudo apt install mariadb-server 验证安装是否成功 systemctl status mariadb 配置 进入mysql CLI: use mysql; 建立用户和密码,并授权远程访问: grant all privileges on *.* to root@'%' identified by 'password'; 刷新权限,使之生效 flush privileges; 查看用户信息 select user,host,port from user; 来源: oschina 链接: https://my.oschina.net/u/4416864/blog/3624966

云计算OpenStack:云计算介绍及组件安装(一)--技术流ken

一个人想着一个人 提交于 2021-02-18 15:50:06
云计算介绍 当用户能够通过互联网方便的获取到计算、存储等服务时,我们比喻自己使用到了“云计算”,云计算并不能被称为是一种计算技术,而更像是一种服务模式。每个运维人员心里都有一个对云计算的理解,而最普遍接受的是NIST(美国国家标准与技术研究院)的定义: 云计算是一种按使用量付费的服务模式,这是一种能够提供可用的、便捷的、按需求的网络访问模式,计算共享池能够快速的为用户提供网络、服务器、存储、应用软件及其他服务,并且只需要花费很少的管理时间。 服务层次 NIST还针对于云计算的服务模式提出了3个服务层次: Iaas:提供给用户的是云计算基础设施,包括CPU、内存、存储、网络等其他的资源服务,用户不需要控制存储与网络等基础设施。 Paas:提供给用户的是云计算中的开发和分发应用的解决方案,用户能够部署应用程序,也可以控制相关的托管环境,比如云服务器及操作系统,但用户不需要接触到云计算中的基础设施。 Saas:提供给用户的是云计算基础设施上的应用程序,用户只需要在客户端界面访问即可使用到所需资源,而接触不到云计算的基础设施。 、 OpenStack项目 OpenStack官方网站:https://www.openstack.org/ Openstack项目的版本按照ABCDEFG……的顺序发布,每6个月更新一次。

Periodic “Lost connection to MySQL server during query” after Dockerizing Flask Web App

主宰稳场 提交于 2021-02-18 06:37:40
问题 I have a Flask web app that used to run on a standalone server using the following: Flask/SQLAlchemy MariaDB uwsgi nginx On the stand alone server this application ran fine. I have since "dockerized" this application across two containers: uwsgi-nginx-flask MariaDB Every since dockerizing I occasionally get this error (entire traceback posted at the end): Lost connection to MySQL server during query The MariaDB log shows the following errors with verbose logging: 2020-05-10 18:35:32 130

ERROR 1356 (HY000): View 'mysql.user' references invalid table(s) or column(s) or function(s) or definer/invoker of view lack rights to use them

我与影子孤独终老i 提交于 2021-02-17 03:28:27
问题 I have tried query but error anybody solved the error? MariaDB [mysql]> UPDATE user SET Host='%' WHERE User='root'; ERROR 1356 (HY000): View 'mysql.user' references invalid table(s) or column(s) or function(s) or definer/invoker of view lack rights to use them 回答1: MariaDB-10.4+ the mysql . user is a view rather than a table. Its recommend to stop copying off old blogs to do any authentication relates changes in MySQL and MariaDB, the mechanisms are being updated and no longer apply. Always

ERROR 1356 (HY000): View 'mysql.user' references invalid table(s) or column(s) or function(s) or definer/invoker of view lack rights to use them

微笑、不失礼 提交于 2021-02-17 03:28:04
问题 I have tried query but error anybody solved the error? MariaDB [mysql]> UPDATE user SET Host='%' WHERE User='root'; ERROR 1356 (HY000): View 'mysql.user' references invalid table(s) or column(s) or function(s) or definer/invoker of view lack rights to use them 回答1: MariaDB-10.4+ the mysql . user is a view rather than a table. Its recommend to stop copying off old blogs to do any authentication relates changes in MySQL and MariaDB, the mechanisms are being updated and no longer apply. Always

django cannot connect mysql in docker-compose

走远了吗. 提交于 2021-02-16 08:33:57
问题 I'm very new for docker, now I am trying to run django with mariadb in docker through docker-compose, but I always get this error: I use Docker version 17.09.1-ce, build 19e2cf6 , docker-compose version 1.18.0, build 8dd22a9 django.db.utils.OperationalError: (2003, 'Can\'t connect to MySQL server on \'mariadb55\' (111 "Connection refused")') I can connect db correctly after run docker-compose up db in local or remote, and I even can run python manage.py runserver 0.0.0.0:6001 correctly in

django cannot connect mysql in docker-compose

夙愿已清 提交于 2021-02-16 08:32:13
问题 I'm very new for docker, now I am trying to run django with mariadb in docker through docker-compose, but I always get this error: I use Docker version 17.09.1-ce, build 19e2cf6 , docker-compose version 1.18.0, build 8dd22a9 django.db.utils.OperationalError: (2003, 'Can\'t connect to MySQL server on \'mariadb55\' (111 "Connection refused")') I can connect db correctly after run docker-compose up db in local or remote, and I even can run python manage.py runserver 0.0.0.0:6001 correctly in

django cannot connect mysql in docker-compose

我怕爱的太早我们不能终老 提交于 2021-02-16 08:31:56
问题 I'm very new for docker, now I am trying to run django with mariadb in docker through docker-compose, but I always get this error: I use Docker version 17.09.1-ce, build 19e2cf6 , docker-compose version 1.18.0, build 8dd22a9 django.db.utils.OperationalError: (2003, 'Can\'t connect to MySQL server on \'mariadb55\' (111 "Connection refused")') I can connect db correctly after run docker-compose up db in local or remote, and I even can run python manage.py runserver 0.0.0.0:6001 correctly in

Jumpserver-1.5.2 安装步骤

。_饼干妹妹 提交于 2021-02-15 05:59:46
  Jumpsever 是飞致云旗下的一块开源的堡垒机。在如今都在上云的趋势下,一款堡垒机非常重要。   官网:http:// jumpserver.org/   GitHub: https://github.com/jumpserver/jumpserver   下面将使用最新的1.5.2的开源版进行安装。系统:centos7。所有系统都安装在一台机器上。   官方文档; https://jumpserver.readthedocs.io/zh/master/setup_by_centos7.html   注意点:   1. 请安装文档上的步骤安装 ,我原先通过源码安装mysql8.0版本的数据库,但是系统无法连接到数据库。(暂时还不支持新版的mysql)   2.涉及到软件有 redis,nginx,mariadb,docker等。jumpserver是以django为框架开发的。 一些截图:   1.github上克隆最新的代码:      启动jms:初始运行时,需要初始化数据库,时间比较长。      2. 查看进程状态:      3.下面是日志文件:      4.登录界面:      5.主界面:    来源: oschina 链接: https://my.oschina.net/u/4401649/blog/3401608