上一页 1 ··· 8 9 10 11 12
摘要: 1. 页面CSS代码区中CSS代码 #sideCatalog a{ font-size:12px; font-weight:normal !important; } 2. 侧边栏公告区中js代码 <script type="text/javascript"> //以下是锚点JS,自动生成目录 var 阅读全文
posted @ 2020-09-16 11:01 大白菜! 阅读(289) 评论(0) 推荐(1) 编辑
摘要: sudo apt-get install lsof //安装lsof sudo lsof -i:端口号 //查找对应的进程号 sudo kill -9 进程号 //杀死对应的进程 阅读全文
posted @ 2020-09-15 16:32 大白菜! 阅读(305) 评论(0) 推荐(1) 编辑
摘要: 1、想要配置Eclipse的环境,就要先下载Eclipse,并安装它,不会下载安装的小伙伴可以点击下面给的链接,里面有我写的详细的教程,这里就不重复了 Eclipse下载与安装:https://blog.csdn.net/qq_39135287/article/details/82108080 2、 阅读全文
posted @ 2020-09-11 10:26 大白菜! 阅读(1030) 评论(0) 推荐(1) 编辑
摘要: <!DOCTYPE html> <head> <meta charset="UTF-8"> <link rel="shortcut icon" href="https://images.cnblogs.com/cnblogs_com/Rui6/1845398/o_200911002702%E8%93 阅读全文
posted @ 2020-09-11 10:18 大白菜! 阅读(128) 评论(0) 推荐(0) 编辑
摘要: // 按钮提示框 // <input type="button" name="btn2" id="btn2" value="删除" onclick="return confirm('Yes/No');); // 按钮提示框 // <input type="button" name="btn2" id 阅读全文
posted @ 2020-09-11 10:04 大白菜! 阅读(1119) 评论(2) 推荐(0) 编辑
摘要: 1.下载解压 1.1 MySql 5.7.26下载地址: https://dev.mysql.com/downloads/mysql/5.7.html#downloads 1.2 解压 tar -xvf mysql-5.7.26-linux-glibc2.12-x86_64.tar 再移动并重命名一 阅读全文
posted @ 2020-09-11 09:59 大白菜! 阅读(109) 评论(0) 推荐(0) 编辑
摘要: 1.查看防火墙状态 firewall-cmd --state 2.启动防火墙 systemctl start firewalld 3.关闭防火墙 systemctl stop firewalld 4.检查防火墙开放的端口 firewall-cmd --permanent --zone=public 阅读全文
posted @ 2020-09-11 09:48 大白菜! 阅读(131) 评论(0) 推荐(0) 编辑
摘要: 集群模式设置为no 就可以开启服务 cluster-enable no 阅读全文
posted @ 2020-09-11 08:42 大白菜! 阅读(510) 评论(0) 推荐(0) 编辑
摘要: 这里以linux服务器为例,为redis配置密码。 1.第一种方式 (当前这种linux配置redis密码的方法是一种临时的,如果redis重启之后密码就会失效,) (1)首先进入redis,如果没有开启redis则需要先开启: [root@iZ94jzcra1hZ bin]# redis-cli 阅读全文
posted @ 2020-09-11 08:41 大白菜! 阅读(130) 评论(0) 推荐(0) 编辑
摘要: 修改的用户都以root为列。 一、拥有原来的myql的root的密码; 方法一:在mysql系统外,使用mysqladmin # mysqladmin -u root -p password "test123" Enter password: 【输入原来的密码】 方法二:通过登录mysql系统, # 阅读全文
posted @ 2020-09-11 08:39 大白菜! 阅读(397) 评论(0) 推荐(0) 编辑
上一页 1 ··· 8 9 10 11 12