上一页 1 2 3 4 5 6 7 8 9 ··· 20 下一页
摘要: 1.首先安装第三方源(以下源比默认源包含更多安装包,建议添加该源使用) # yum install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm //(可能需要使用root账户,切换root执行即可) 2 阅读全文
posted @ 2022-06-28 22:37 勤快的懒羊羊 阅读(490) 评论(0) 推荐(0) 编辑
摘要: CentOS下创建管理员权限用户 用CentOS时,root是超级管理员,不能给其他人用。下面介绍创建用户并赋予管理员权限的方法步骤: 1、新建用户,这里新建一个admin的用户 adduser admin 2、设置新用户密码 passwd admin (回车后输入密码,然后回车后再确认密码) 提示 阅读全文
posted @ 2022-06-28 22:35 勤快的懒羊羊 阅读(3296) 评论(0) 推荐(0) 编辑
摘要: 数据库表设计 1 --员工表 2 create table Employee 3 ( 4 id NUMBER primary key, 5 employeeID NUMBER not null, 6 employeeName VARCHAR2(100) not null, 7 employeeSex 阅读全文
posted @ 2022-06-14 00:47 勤快的懒羊羊 阅读(411) 评论(2) 推荐(1) 编辑
摘要: 安装cnpmnpm install cnpm -g --registry=https://registry.npm.taobao.org,执行命令报下面错误 执行:strings /usr/lib64/libstdc++.so.6 | grep GLIBC 发现没有GLIBCXX_3.4.14 发现 阅读全文
posted @ 2022-05-27 00:24 勤快的懒羊羊 阅读(215) 评论(0) 推荐(0) 编辑
摘要: 1 getAllInfo: [[{iP: '3', domain: '环境', attribute: '0',name:'服务器名'}]] 1 <table style="text-align: center;font-size: 10px" v-for="(item,index) in getAl 阅读全文
posted @ 2022-05-13 17:04 勤快的懒羊羊 阅读(153) 评论(0) 推荐(0) 编辑
摘要: 1 getAllInfo: [[{iP: '3', domain: '环境', attribute: '0',name:'服务器名'}]] 1 for (let i = 0; i < _this.getAllInfo.length; i++) { 2 for (let j = 0; j < _thi 阅读全文
posted @ 2022-05-13 17:01 勤快的懒羊羊 阅读(458) 评论(0) 推荐(0) 编辑
摘要: 给标签元素的class 添加className即可 1 <style> 2 3 .className{ 4 -webkit-animation: twinkling 1s infinite ease-in-out 5 } 6 .animated{ 7 -webkit-animation-durati 阅读全文
posted @ 2022-05-13 16:32 勤快的懒羊羊 阅读(686) 评论(0) 推荐(0) 编辑
摘要: 1 package com.example.demo.vue_project_login.controller; 2 3 import net.sf.json.JSON; 4 import net.sf.json.JSONArray; 5 import net.sf.json.JSONObject; 阅读全文
posted @ 2022-05-09 20:43 勤快的懒羊羊 阅读(418) 评论(0) 推荐(0) 编辑
摘要: 我们测试搭建一个简单的负载均衡,然后关闭其中一台再来访问,会发现我们的浏览器卡住一直转圈圈,过了很久才会显示结果。 由此我们可以得出结论Nginx负载的时候如果其中一台服务挂掉了,它会把请求转发到另一个可以提供服务的机器,其中这之间的超时等待默认是60s 我们可以通过这一个配置去改变这个时间(pro 阅读全文
posted @ 2022-04-30 22:59 勤快的懒羊羊 阅读(6901) 评论(0) 推荐(1) 编辑
摘要: 数据库中存储的是html序列化后的文本 前端页面获取时只需要使用v-html标签即可 <p v-html="item.content">{{item.content}}</p> 展示效果 备注:VUE3.0的使用方法,需要把<p>标签中的内容删除,如下所示 <p v-html="item.conte 阅读全文
posted @ 2022-04-26 01:37 勤快的懒羊羊 阅读(2258) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 8 9 ··· 20 下一页