Mysql for Ubuntu配置安装

news/2024/11/30 13:40:10/

安装命令

sudo apt-get install mysql-server

查看是否安装成功

ps aux | grep mysqld
mysql      819  0.1  4.4 1424280 177096 ?      Sl   22:04   0:00 /usr/sbin/mysqld --daemonize --pid-file=/run/mysqld/mysqld.pid
zhengdo+  3954  0.0  0.0  21532  1088 pts/0    S+   22:14   0:00 grep --color=auto mysqld

运行mysql

sudo mysql -u root -p
[sudo] summmer 的密码:#此处输入ubuntu密码
Enter password: #此处直接按回车键或输入root都可以

在这里插入图片描述


http://www.ppmy.cn/news/534237.html

相关文章

安装科来-csnas_tech_12.0.5.12506_x64

1.这是科来-csnas_tech_12.0.5.12506_x64软件的安装包 2.右键解压到科来-csnas_tech_12.0.5.12506_x64\(E) 3.双击.exe文件 4.点击下一步 5.下一步 6.我接受,下一步 7.下一步 8.不用修改路径,下一步 9.下一步 10.下一步 11.创建桌面图标,创建…

数据结构(Java)-排序算法-插入排序

插入排序法思想: 插入排序的基本思想是:把n个待排序的元素看成为一个有序表和一个无序表,开始时有序表中只包含一个元素,无序表中包含有n-1个元素,排序过程中每次从无序表中取出第一个元素,把它依次与有序表元素进行比…

VRRP的配置

首先,先看这个图片,每个IP地址我都分配了。 接下来,就是实验操作了: [R2]INT E0/0/0 [R2-Ethernet0/0/0]IP address 12.1.1.3 24 [R2-Ethernet0/0/0]q [R2]int e0/0/1 [R2-Ethernet0/0/1]ip address 24.1.1.2 24 [R2]int e0/0/0 &…

Windows下命令行下启动ORACLE服务

检查监听器状态:C:\>lsnrctl statusLSNRCTL for 32-bit Windows: Version 9.2.0.1.0 - Production on 30-6月 -2009 21:08:04Copyright (c) 1991, 2002, Oracle Corporation. All rights reserved.正在连接到 (DESCRIPTION(ADDRESS(PROTOCOLIPC)(KEYEXTPROC1)))T…

解决mysql出现the table is full的问题

mysql出现"the table is full"的问题,一般有两个原因: 一 .You are using the MEMORY (HEAP) storage engine; in this case you need to increase the value of the max_heap_table_size system variable. See Section 5.1.3, “Server System Variables”. ERROR 1…

oracle sql plus12560,windows下 sqlplus / as sysdba 报ora-12560的终极解决方法

windows下 sqlplus / as sysdba 报ora-12560的终极解决方法 1.确认windows注冊表中的ORACLE_HOME 键及其 键值 是正确的,是有效的 比方:HKEY_LOCAL_MACHINESOFTWAREORACLEKEY_OraDb10g_home1下。找到ORACLE_HOME 键,相应的键值为H:oracleprod…

Python错误 UnicodeEncodeError: 'UCS-2' codec can't encode characters in position 73-73:

Python爬取页面时遇到的字符编码问题 在利用Python爬取微博页面时,遇到错误UnicodeEncodeError: ‘UCS-2’ codec can’t encode characters in position 73-73: Non-BMP character not supported in Tk,在网上找了一些资料,但都比较复杂&am…

解决mysql出现“the table is full”的问题

今天中午收到mysql错误日志监控发来的警报,错误日志如下: 101209 13:13:32 [ERROR] /usr/local/mysql/bin/mysqld: The table test_1291870945841162 is full 101209 13:13:32 [ERROR] /usr/local/mysql/bin/mysqld: The table test_1291870945841162 is…