mysql 查看并修改默认端口号

1. 登录mysql

[[email protected] /]# mysql -u root -p

Enter password:

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

Your MySQL connection id is 92

Server version: 5.1.66 Source distribution

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

2. 使用命令show global variables like ‘port‘;查看端口号

mysql> show global variables like ‘port‘;

+---------------+-------+

| Variable_name | Value |

+---------------+-------+

| port | 3306 |

+---------------+-------+

1 row in set (0.00 sec)

3. 修改端口,编辑/etc/my.cnf文件,早期版本有可能是my.conf文件名,增加端口参数,并且设定端口,注意该端口未被使用,保存退出。

[email protected] etc]# vi my.cnf

[mysqld]

port=3506

datadir=/var/lib/mysql

socket=/var/lib/mysql/mysql.sock

user=mysql

# Disabling symbolic-links is recommended to prevent assorted security risks

symbolic-links=0

[mysqld_safe]

log-error=/var/log/mysqld.log

pid-file=/var/run/mysqld/mysqld.pid

"my.cnf" 11L, 261C written

[[email protected] etc]#

4. 重新启动mysql

[[email protected] ~]# /etc/init.d/mysqld restart

Stopping mysqld: [ OK ]

Starting mysqld: [ OK ]

5.再次登录后检查端口已修改为’3506’.

[email protected] etc]# mysql -u root -p

Enter password:

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

Your MySQL connection id is 2

Server version: 5.1.66 Source distribution

Copyright (c) 2000, 2012, 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> show global variables like ‘port‘;

+---------------+-------+

| Variable_name | Value |

+---------------+-------+

| port | 3506 |

+---------------+-------+

1 row in set (0.00 sec)

mysql>

时间: 2024-10-12 20:33:51

mysql 查看并修改默认端口号的相关文章

apache修改默认端口号

找到:apache>>config>>httpd.conf Ctrl+F 查找:Listen 80,把它改成#Listen 80,重起一行:输入Listen 8888,这样端口号就变成8888了. 不过有一个缺点:每次输入的时候都要localhost:8888,因为这不是默认端口. apache修改默认端口号,布布扣,bubuko.com

MySql修改默认端口号,修改my.ini的端口号

MySql默认端口号为3306,如果安装多个或者冲突需要修改端口号,修改my.ini的端口号就可以了,文件一般情况下在安装目录下.下面是具体说明: 方法/步骤 先在服务里停止mysql的服务器,再找到mysql安装目录下面的my.ini文件,把里面的端口号3306替换成其它的端口号. 修改下面两个地方:[client] port=3306 [mysqld] # The TCP/IP Port the MySQL Server will listen onport=3306 3 如果提示修改不了可

kafka修改默认端口号

kafka默认端口号:9092     改为 19092 端口号可以被任意修改.如果端口号设置为小于1024,那么kafka需要以root身份启动. config下 1.service.properties                                                     port = 19092    不指定的话,按照默认9092 2.connect-distributed.properties                               

create-react-app 脚本搭建工程,修改默认端口号

前言: create-react-app生成的项目,默认端口号是3000.但是,总是有人蠢蠢欲动,想要修改这个3000端口.本文中的主要内容,就是使用各种方案修改这个3000端口,总有一款适合你. 主体: (1)方案1 3000端口是webpack配置里面写的,可以通过传递一个PORT全局变量,来修改这个端口.当然,您还可以在node_modules/react-scripts/目录下面,批量搜索替换3000字样. 详解: 前用create-react-app创建的项目是有scripts文件夹的

Nginx、Apache2修改默认端口号

Ubuntu15.04 Nginx.Apache2修改默认端口号 通过Ubuntu 搭建WEB服务器,根据需求,有时候会需要修改web服务的端口号,这里我记录整理了Nginx和Apache修改默认端口号和网站目录的过程. Nginx修改默认端口 1.修改配置文件 vi /etc/nginx/sites-enabled/default listen 81 default_server; # 修改自己需要的端口号 listen 81 default_server; 2.重载Nginx服务 /etc/

SpringBoot修改默认端口号

server.port=8088 学习了:https://blog.csdn.net/zknxx/article/details/53433592 java -jar a.jar --server.port=8088 java -jar a.jar -Dserver.port=8088 原文地址:https://www.cnblogs.com/stono/p/9127422.html

sqlserver、mysql、oracle各自的默认端口号

sqlserver.mysql.oracle各自的默认端口号 sqlserver默认端口号为:1433 URL:"jdbc:microsoft:sqlserver://localhost:1433;DatabaseName=dbname" DRIVERNAME:"com.microsoft.jdbc.sqlserver.SQLServerDriver"; mysql      默认端口号为:3306 URL:jdbc:mysql://localhost:3306/t

sqlserver、mysql、oracle、神通数据库(oscar)、达梦(dm)各自的默认端口号

sqlserver默认端口号为:1433 URL=jdbc:microsoft:sqlserver://localhost:1433;DatabaseName=dbname DriverClasses = com.microsoft.jdbc.sqlserver.SQLServerDriver mysql      默认端口号为:3306 URL=jdbc:mysql://localhost:3306/test? user=root&password=&useUnicode=true&am

修改mysql的默认端口号

mysql的默认端口号是3306,修改端口号的话,找到mysql的安装目录,找到my.ini文件 修改这两处的3306值,重启mysql即可 原文地址:https://www.cnblogs.com/modou/p/9510737.html