首页 数据库 mysql教程 linux下MySQL安装与删除 (Ubuntu下)

linux下MySQL安装与删除 (Ubuntu下)

Jun 07, 2016 pm 03:52 PM
linux mysql ubuntu 删除 安装

1、MySQL安装 A)MySQL安装: sudo apt-get install mysql-server mysql-client B)启动/停止MySQL服务: MySQL 在安装以后,MySQL 就已经启动;如果需要手动启动或停止则如下操作: 手动启动服务: sudo start mysql 手动停止服务: sudo stop mysql 当修改

1、MySQL安装

A)MySQL安装:    sudo apt-get install mysql-server mysql-client  

B)启动/停止MySQL服务:

      MySQL 在安装以后,MySQL 就已经启动;如果需要手动启动或停止则如下操作:

      手动启动服务:       sudo start mysql  

      手动停止服务:       sudo stop mysql

      当修改mysql相关配置的时候,需要手动重启MySQL服务,就需要如上操作。

      查看mysql进程是否已经启动:

      

?

ps  -aux  |  grep  mysql 

       #ps -aux 显示当前所有进程(包括 mysql , 和 name 用户 ),  grep mysql 用来查找 mysql 进程 ;具体使用可以查看 ps,  grep 用法

       #man  ps              ;     man  grep

或者使用:

?

sudo netstat -tap | grep mysql

 两种命令的结果:

 

?

name@ThinkPad:~$ ps -aux | grep mysql

Warning: bad ps syntax, perhaps a bogus'-'? See http://procps.sf.net/faq.html

mysql      25994 0.0  0.9 137800 18400 ?        Ssl 10:18   0:10 /usr/sbin/mysqld

name       26543 0.0  0.1   8544  2320 pts/2   S+   11:06  0:00 mysql -u root -p

name       27068 0.0  0.1   8388  2064 pts/1   S+   18:21  0:00 mysql -u root -p

name       27917 0.0  0.0   5412   788 pts/3   S+   21:45  0:00 grep --color=auto mysql

 

 

name@ThinkPad:~$ sudo netstat -tap | grep mysql

tcp        0      0 localhost:mysql         *:*                     LISTEN      25994/mysqld

 

C)MySQL 配置文件结构:

      MySQL 配置文件为 my.cnf , 位置在 /etc/my.cnf       以及   /etc/mysql/my.cnf

      

?

#

# The MySQL database server configuration file.

#

# You can copy this to one of:

# - "/etc/mysql/my.cnf"to set global options,

# - "~/.my.cnf"to set user-specific options.

#

# One can use all long options that the program supports.

# Run program with --helpto get a list of available options and with

# --print-defaults to see which it would actually understand and use.

#

# For explanations see

# http://dev.mysql.com/doc/mysql/en/server-system-variables.html

 

# This will be passed toall mysql clients

# It has been reported that passwords should be enclosed with ticks/quotes

# escpecially if they contain"#" chars...

# Remember to edit /etc/mysql/debian.cnf when changing the socket location.

[client]

port        = 3306

socket      = /var/run/mysqld/mysqld.sock

 

# Here is entries for some specific programs

# The following values assume you have at least32M ram

 

# This was formally known as [safe_mysqld]. Both versions are currently parsed.

[mysqld_safe]

socket      = /var/run/mysqld/mysqld.sock

nice        = 0

 

[mysqld]

#

# * Basic Settings

#

 

#

# * IMPORTANT

#   If you make changes to these settings and your system uses apparmor, you may

#   also need to also adjust /etc/apparmor.d/usr.sbin.mysqld.

#

 

user        = mysql

socket      = /var/run/mysqld/mysqld.sock

port        = 3306

basedir     = /usr

datadir     = /var/lib/mysql

tmpdir      = /tmp

skip-external-locking

#

# Instead of skip-networking thedefault is now to listen only on

# localhost which is more compatible and is not less secure.

bind-address        =127.0.0.1

#

# * Fine Tuning

#

key_buffer      =16M

max_allowed_packet  =16M

thread_stack        =192K

thread_cache_size       =8

# This replaces the startup script and checks MyISAM tables if needed

# the first time they are touched

myisam-recover         = BACKUP

#max_connections        =100

#table_cache            =64

#thread_concurrency     =10

#

# * Query Cache Configuration

#

query_cache_limit   =1M

query_cache_size        =16M

#

# * Logging and Replication

#

# Both location gets rotated by the cronjob.

# Be aware that this log type is a performance killer.

# As of 5.1you can enable the log at runtime!

#general_log_file        = /var/log/mysql/mysql.log

#general_log             =1

 

log_error                = /var/log/mysql/error.log

 

# Here you can see queries with especially long duration

#log_slow_queries   = /var/log/mysql/mysql-slow.log

#long_query_time =2

#log-queries-not-using-indexes

#

# The following can be used as easy to replay backup logs or for replication.

# note: if you are setting up a replication slave, see README.Debian about

#       other settings you may need to change.

#server-id      =1

#log_bin            = /var/log/mysql/mysql-bin.log

expire_logs_days    =10

max_binlog_size         =100M

#binlog_do_db       = include_database_name

#binlog_ignore_db   = include_database_name

#

# * InnoDB

#

# InnoDB is enabled bydefault with a 10MB datafile in /var/lib/mysql/.

# Read the manual for more InnoDB related options. There are many!

#

# * Security Features

#

# Read the manual, too, if you want chroot!

# chroot = /var/lib/mysql/

#

# For generating SSL certificates I recommend the OpenSSL GUI"tinyca".

#

# ssl-ca=/etc/mysql/cacert.pem

# ssl-cert=/etc/mysql/server-cert.pem

# ssl-key=/etc/mysql/server-key.pem

 

 

 

[mysqldump]

quick

quote-names

max_allowed_packet  =16M

 

[mysql]

#no-auto-rehash #faster start of mysql but no tab completition

 

[isamchk]

key_buffer      =16M

 

#

# * IMPORTANT: Additional settings that can override those from this file!

#   The files must end with'.cnf', otherwise they'll be ignored.

#

!includedir /etc/mysql/conf.d/

   在启动MySQL的时候会通过读取配置文件my.cnf ,并根据这个文件的路径: /var/run/mysqld/mysqld.sock 启动MySQL

 datadir = /var/lib/mysql  #这句是数据库所在位置,比如如果创建一个数据库mysql_first,则数据库文件放置在该目录下。

 

    log_error = /var/log/mysql/error.log  # mysql错误文件,如果在执行mysql出错了,可以查看该文件。

 

D)进入MySQL

      进入MySQL一般需要密码, 除非使用 safe_mysql

      如果不提供密码则会出现如下错误提示:

?

ERROR 1045(28000): Access denied for user'name'@'localhost'(using password: NO)

      这是因为在安装MySQL输入了密码,需要提供密码;

      具体:

 

?

name@ThinkPad:~$ sudo mysql -u root -p

Enter password:

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

Your MySQL connection id is40

Server version: 5.1.58-1ubuntu1(Ubuntu)

 

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

This software comes with ABSOLUTELY NO WARRANTY. This is free software,

and you are welcome to modify and redistribute it under the GPL v2license

 

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

 

mysql>

      sudo mysql -u root -p  # 这里的几个参数:  u 表示 user ,后面是参数;  p 表示 password ,会在后面有 Enter password: 提示

      也可以直接提供用户和密码(使用 -- )   

      sudo mysql --user=root  --password=123456

 

C)退出MySQL

      主要有三种方式:

  mysql> exit
  Bye

  mysql> quit
  Bye

       mysql> #直接按Ctrl + D



 

 

2、卸载MySQL

A)卸载MySQL软件

?

sudo apt-get autoremove --purge mysql-server-5.1

sudo apt-get remove mysql-server

sudo apt-get autoremove mysql-server

sudo apt-get remove mysql-common

    

sudo apt-get autoremove --purge mysql-server-5.1 # 中 mysql-server-5.1是系统安装的 mysql-server版本

B)清理其他数据

?

dpkg -l |grep ^rc|awk'{print $2}' |sudo xargs dpkg -P<br> <br> <br> <br> <br> <br> <br> <br> <br> <br> 1、删除 mysql<br> <br>

1 sudo apt-get autoremove --purge mysql-server-5.0
2 sudo apt-get remove mysql-server
3 sudo apt-get autoremove mysql-server
4 sudo apt-get remove mysql-common (非常重要)

上面的其实有一些是多余的,建议还是按照顺序执行一遍

清理残留数据

dpkg -|grep ^rc|awk '{print $2}' |sudo xargs dpkg -P

2、安装 mysql



登录后复制

1 sudo apt-get install mysql-server
2 sudo apt-get install mysql-client
3 sudo apt-get install php5-mysql(安装php5-mysql 是将php和mysql连接起来)

 

一旦安装完成,MySQL 服务器应该自动启动。您可以在终端提示符后运行以下命令来检查 MySQL 服务器是否正在运行:

登录后复制

1 sudo netstat -tap | grep mysql


当您运行该命令时,您可以看到类似下面的行:

tcp 0 0 localhost.localdomain:mysql *:* LISTEN -

如果服务器不能正常运行,您可以通过下列命令启动它:


1 sudo /etc/init.d/mysql restart


3、进入mysql

$mysql -uroot -p 管理员密码
配置 MySQL 的管理员密码:

1 sudo mysqladmin -u root password newpassword



本站声明
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn

热AI工具

Undresser.AI Undress

Undresser.AI Undress

人工智能驱动的应用程序,用于创建逼真的裸体照片

AI Clothes Remover

AI Clothes Remover

用于从照片中去除衣服的在线人工智能工具。

Undress AI Tool

Undress AI Tool

免费脱衣服图片

Clothoff.io

Clothoff.io

AI脱衣机

AI Hentai Generator

AI Hentai Generator

免费生成ai无尽的。

热门文章

R.E.P.O.能量晶体解释及其做什么(黄色晶体)
3 周前 By 尊渡假赌尊渡假赌尊渡假赌
R.E.P.O.最佳图形设置
3 周前 By 尊渡假赌尊渡假赌尊渡假赌
R.E.P.O.如果您听不到任何人,如何修复音频
3 周前 By 尊渡假赌尊渡假赌尊渡假赌

热工具

记事本++7.3.1

记事本++7.3.1

好用且免费的代码编辑器

SublimeText3汉化版

SublimeText3汉化版

中文版,非常好用

禅工作室 13.0.1

禅工作室 13.0.1

功能强大的PHP集成开发环境

Dreamweaver CS6

Dreamweaver CS6

视觉化网页开发工具

SublimeText3 Mac版

SublimeText3 Mac版

神级代码编辑软件(SublimeText3)

无法以 root 身份登录 mysql 无法以 root 身份登录 mysql Apr 08, 2025 pm 04:54 PM

无法以 root 身份登录 MySQL 的原因主要在于权限问题、配置文件错误、密码不符、socket 文件问题或防火墙拦截。解决方法包括:检查配置文件中 bind-address 参数是否正确配置。查看 root 用户权限是否被修改或删除,并进行重置。验证密码是否准确无误,包括大小写和特殊字符。检查 socket 文件权限设置和路径。检查防火墙是否阻止了 MySQL 服务器的连接。

mysql 是否更改表锁定表 mysql 是否更改表锁定表 Apr 08, 2025 pm 05:06 PM

MySQL修改表结构时,通常使用元数据锁,可能导致锁表。为了减少锁的影响,可采取以下措施:1. 使用在线DDL保持表可用;2. 分批执行复杂修改;3. 在小表或非高峰期操作;4. 使用PT-OSC工具实现更精细的控制。

MySQL 中的查询优化对于提高数据库性能至关重要,尤其是在处理大型数据集时 MySQL 中的查询优化对于提高数据库性能至关重要,尤其是在处理大型数据集时 Apr 08, 2025 pm 07:12 PM

1.使用正确的索引索引通过减少扫描的数据量来加速数据检索select*fromemployeeswherelast_name='smith';如果多次查询表的某一列,则为该列创建索引如果您或您的应用根据条件需要来自多个列的数据,则创建复合索引2.避免选择*仅选择那些需要的列,如果您选择所有不需要的列,这只会消耗更多的服务器内存并导致服务器在高负载或频率时间下变慢例如,您的表包含诸如created_at和updated_at以及时间戳之类的列,然后避免选择*,因为它们在正常情况下不需要低效查询se

mysql用户和数据库的关系 mysql用户和数据库的关系 Apr 08, 2025 pm 07:15 PM

MySQL 数据库中,用户和数据库的关系通过权限和表定义。用户拥有用户名和密码,用于访问数据库。权限通过 GRANT 命令授予,而表由 CREATE TABLE 命令创建。要建立用户和数据库之间的关系,需创建数据库、创建用户,然后授予权限。

mysql 是否要付费 mysql 是否要付费 Apr 08, 2025 pm 05:36 PM

MySQL 有免费的社区版和收费的企业版。社区版可免费使用和修改,但支持有限,适合稳定性要求不高、技术能力强的应用。企业版提供全面商业支持,适合需要稳定可靠、高性能数据库且愿意为支持买单的应用。选择版本时考虑的因素包括应用关键性、预算和技术技能。没有完美的选项,只有最合适的方案,需根据具体情况谨慎选择。

RDS MySQL 与 Redshift 零 ETL 集成 RDS MySQL 与 Redshift 零 ETL 集成 Apr 08, 2025 pm 07:06 PM

数据集成简化:AmazonRDSMySQL与Redshift的零ETL集成高效的数据集成是数据驱动型组织的核心。传统的ETL(提取、转换、加载)流程复杂且耗时,尤其是在将数据库(例如AmazonRDSMySQL)与数据仓库(例如Redshift)集成时。然而,AWS提供的零ETL集成方案彻底改变了这一现状,为从RDSMySQL到Redshift的数据迁移提供了简化、近乎实时的解决方案。本文将深入探讨RDSMySQL零ETL与Redshift集成,阐述其工作原理以及为数据工程师和开发者带来的优势。

mysql 可以在 android 上运行吗 mysql 可以在 android 上运行吗 Apr 08, 2025 pm 05:03 PM

MySQL无法直接在Android上运行,但可以通过以下方法间接实现:使用轻量级数据库SQLite,由Android系统自带,无需单独服务器,资源占用小,非常适合移动设备应用。远程连接MySQL服务器,通过网络连接到远程服务器上的MySQL数据库进行数据读写,但存在网络依赖性强、安全性问题和服务器成本等缺点。

如何针对高负载应用程序优化 MySQL 性能? 如何针对高负载应用程序优化 MySQL 性能? Apr 08, 2025 pm 06:03 PM

MySQL数据库性能优化指南在资源密集型应用中,MySQL数据库扮演着至关重要的角色,负责管理海量事务。然而,随着应用规模的扩大,数据库性能瓶颈往往成为制约因素。本文将探讨一系列行之有效的MySQL性能优化策略,确保您的应用在高负载下依然保持高效响应。我们将结合实际案例,深入讲解索引、查询优化、数据库设计以及缓存等关键技术。1.数据库架构设计优化合理的数据库架构是MySQL性能优化的基石。以下是一些核心原则:选择合适的数据类型选择最小的、符合需求的数据类型,既能节省存储空间,又能提升数据处理速度

See all articles