Linux相关
linux运行出现的问题
十九子八六
走一步,再走一步
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
Centos7下执行service iptables start 报错
1、刚开始的我也是在网上找了不少相关的方法,执行完后还是不行执行如下命令systemctl stop firewalldsystemctl mask firewalld安装iptables-serviceyum install iptables-services设置开机启动systemctl enable iptablessystemctl stop iptablessystemctl start iptablessystemctl restart iptablessys...原创 2021-08-10 15:12:29 · 368 阅读 · 0 评论 -
Failed to bind NettyServer on /192.168.49.1:20880, cause: Failed to bind to: /0.0.0.0:20880
tomcat/server.xml 下autoDeploy="false" deployOnStartup="false"转载 2017-12-16 02:13:30 · 7026 阅读 · 0 评论 -
如何在linux运行打压的jar包
我是使用Idea,打包的一个springboot项目1,首先将jar包导入到linux的一个目录中2,在当前目录写一个脚本start.sh,内容如下#!/bin/shjava -jar servlet-1.0.0.jar3,在当前目录执行chmod,给start.sh赋权限chmod 777 start.sh4,在当前目录执行脚本./start.sh5,在浏览器访问程序http原创 2018-01-13 16:33:11 · 443 阅读 · 0 评论 -
linux解压指令
linux使用unzip指令解压*.zip原创 2018-01-20 01:05:08 · 553 阅读 · 0 评论 -
Mysql8.0.5 授权远程访问的命令
mysql5适用的授权命令在mysql8上不适用使用mysql -uroot -p ,登录mysql,然后执行下列语句CREATE USER ‘root’@’%’ IDENTIFIED BY ‘你的密码’;GRANT ALL ON . TO ‘root’@’%’;ALTER USER ‘root’@’%’ IDENTIFIED WITH mysql_native_password BY ‘...转载 2019-03-25 19:47:05 · 1544 阅读 · 0 评论 -
Linux系统上安装mysql8.0及以上版本,远程授权失败的解决方式
1,创建用户的语句,可以新创建用户,也可以使用已有的用户,create user ‘hh’@’%’ identified by ‘RRrr’;grant all privileges on . to ‘hh’@’%’ identified by ‘RRrr’ with grant option; ,2,授权语句,末尾不加 identified by ‘RRrr’ with grant opt...原创 2019-04-09 17:18:02 · 1383 阅读 · 0 评论
分享