Uninstall or delete MariaDB completely for re-installation
I am new to this forum so pse forgive me if I am asking a question which already has been answered. But I have searched extensively whithout finding an answer. So here goes: I am installing WordPress on a Synology Server and have installed Maria DB in the process. But somehow I have messed the installation up. If I try to login I get a screen where I can reset my password or delete the database, but none of the options give any result. I have tried to delete the database with phpMyAdmin byt may only delete the test DB. An uninstall will be preferred, but I am prepared to delete via Linux (Ubuntu), but I am not sure where the files are to be found. Obviously I have no data to lose. Your help will be much appreciated. Best regards Eigil Winkel
Answer Answered by Faustin Lammler in this comment.
Hi, I am not sure what platform you are working on (ubuntu or synology or both)?
If you are using ubuntu, I suggest you to use the apt-get command to remove the database package, for instance:
$ sudo apt-get purge mariadb-server
You may check which mariadb packages are installed with:
$ sudo dpkg -l | grep mariadb
Ubuntu documentation for apt-get: https://help.ubuntu.com/community/AptGet/Howto
Regards, Faustin
Comments
I uninstall (apt purge) MariaDB completely and my update (Ubuntu 18.04 LTS bionic) still give :N: Le fichier configuré « main/binary-i386/Packages » ne sera pas pris en compte car le dépôt « http://downloads.mariadb.com/MariaDB/mariadb-10.3/repo/ubuntubionic InRelease » ne prend pas en charge l'architecture « i386 » N: Le fichier configuré « main/binary-i386/Packages » ne sera pas pris en compte car le dépôt « http://downloads.mariadb.com/Tools/ubuntubionic InRelease » ne prend pas en charge l'architecture « i386 » N: Le fichier configuré « main/binary-i386/Packages » ne sera pas pris en compte car le dépôt « https://updates.atomicorp.com/channels/atomic/ubuntubionic InRelease » ne prend pas en charge l'architecture « i386 »Can i have some help ?
Hi, I am not sure what platform you are working on (ubuntu or synology or both)?
If you are using ubuntu, I suggest you to use the apt-get command to remove the database package, for instance:
$ sudo apt-get purge mariadb-server
You may check which mariadb packages are installed with:
$ sudo dpkg -l | grep mariadb
Ubuntu documentation for apt-get: https://help.ubuntu.com/community/AptGet/Howto
Regards, Faustin
Uninstall or delete MariaDB completely for re-installation的更多相关文章
- ubuntu16.04 uninstall cuda 9.0 completely and install 8.0 instead
卸载cuda 9.0sudo apt-get --purge remove cudasudo apt autoremoveto remove cuda 9.0 Thensudo apt-get cle ...
- CentOS 安装MariaDB
1.安装 #同时安装mariadb和mariadb-server [root@bigdata-senior01 yum.repos.d]# yum -y install mariadb mariadb ...
- MariaDB学习记录
MariaDB的学习 MariaDB的学习 关于MariaDB的历史,不再概述 下面是mariadb的官网:https://mariadb.com/ 同样的,MariaDB一样有连接java的jar包 ...
- C中级 MariaDB Connector/C API 编程教程
引言 - 环境搭建 首先开始环境搭建. 主要在Window 10 + Visual Studio 2015 上构建使用 mariadb connector/c api 进行数据操作开发. 为什么选择在 ...
- mariaDB 安装/卸载+启动/关闭 服务
1.设置环境变量 无论是用户环境变量还是系统环境变量 2.启动服务 进入根目录 名字根据 --install 后的 参数来决定 叫MariaDB,MySQL 都可以 mysqld.exe --inst ...
- Mariadb/MySQL数据库单表查询基本操作及DML语句
Mariadb/MySQL数据库单表查询基本操作及DML语句 作者:尹正杰 版权声明:原创作品,谢绝转载!否则将追究法律责任. 一数据库及表相关概述 1>.数据库操作 创建数据库: CREATE ...
- DotNet 资源大全中文版(Awesome最新版)
Awesome系列的.Net资源整理.awesome-dotnet是由quozd发起和维护.内容包括:编译器.压缩.应用框架.应用模板.加密.数据库.反编译.IDE.日志.风格指南等. 算法与数据结构 ...
- Git for Windows v2.11.0 Release Notes
homepage faq contribute bugs questions Git for Windows v2.11.0 Release Notes Latest update: December ...
- 在windows平台下electron-builder实现前端程序的打包与自动更新
由于8月份上旬公司开发一款桌面应用程序,在前端开发程序打包更新时遇到一些困扰多日的问题,采用electron-builder最终还是得到解决~ 以下是踩坑的过程及对electron打包与更新思路的梳理 ...
- 【资源大全】.NET资源大全中文版(Awesome最新版)
算法与数据结构(Algorithms and Data structures) 应用程序接口(API) 应用程序框架(Application Frameworks) 模板引擎(Application ...
随机推荐
- Windows下使用Wireshark分析USB通信
WireShark中对USB数据捕获 可以监视与主机连接的usb数据. usb设备是三段地址描述,例如1.15.1,第一个是总线,第二个是设备地址,第三个是端口. USB数据抓包分析 这些是鼠标的数据 ...
- USB协议详解第5讲(USB描述符-接口描述符)
1.USB描述符 USB描述符有设备描述符.标准配置描述符.接口描述符.端点描述符.字符串描述符,HID设备有HID描述符.报告描述符和物理描述符.今天主要是学习USB接口描述符的组成. 2.接口描述 ...
- KSM的使用
使能KSM KSM只会处理通过madvise系统调用显式指定的用户进程地址空间,因此用户程序想使用这个功能就必须在分配地址空间时显式地调用madvise(addr,length,MADV_MERGEA ...
- Linux内存管理2.6 -反向映射RMAP(最终版本)
所谓反向映射是相对于从虚拟地址到物理地址的映射,反向映射是从物理页面到虚拟地址空间VMA的反向映射. RMAP能否实现的基础是通过struct anon_vma.struct anon_vma_cha ...
- html5新标签 画布 canvas 替代了 flash
绘制矩形边框,和填充不同的是绘制使用的是strokeRect, 和strokeStyle实现的 绘制路径 绘制路径的作用是为了设置一个不规则的多边形状态 路径都是闭合的,使用路径进行绘制的时候需要既定 ...
- 016 Python 中的基本运算符
#!/usr/bin/env python # -*- coding:utf-8 -*- # Datatime:2022/7/28 15:01 # Filename:016 Python 中的基本运算 ...
- 初学者浅析C++类与对象
C++类与对象 class class基本语法 class ClassName { public: // 公有成员 Type memberVariable; // 数据成员 ReturnType me ...
- 自学PHP笔记(四) PHP变量和常量
PHP中变量有普通变量.可变变量和预定义变量,而常量就是普通变量和预定义变量. 1. 变量 在PHP中变量是内存中得一个命名单元,在系统中为程序中每个变量都分配一个存储单元,在这些存储单元中可以存储任 ...
- vue 强制刷新
页面传的数值动态改变,接口接受的参数也就动态更改,但接收的数据有时候不会及时改变,通过this.$forceUpdate()页面强制刷新来解决这个问题.
- 线性枚举(C语言)
1.求最大值 比如求一个线性表中的最大值,可以先设定一个最大值,把它初始化为一个非常小的数,然后遍历给定的线性表,将其中的每个元素和目前的最大值比较,如果比它大,则更新这个最大值: 如果比它小,就不做 ...