上一页 1 2 3 4 5 6 ··· 9 下一页
摘要: table.on('checkbox(user-table)', function(obj){ console.log(obj); //当前行的一些常用操作集合 console.log(obj.checked); //当前是否选中状态 console.log(obj.data); //选中行的相关数 阅读全文
posted @ 2022-10-18 09:46 鲨鱼大王 阅读(28) 评论(0) 推荐(0) 编辑
摘要: <script type="text/javascript"> var b= self.setInterval('getip(),1000') function getip(){ loadScript("http://pv.sohu.com/cityjson?ie=utf-8",function() 阅读全文
posted @ 2022-08-22 11:28 鲨鱼大王 阅读(143) 评论(0) 推荐(0) 编辑
摘要: uni.downloadFile({ url: data.url, success: (downloadResult) => { if (downloadResult.statusCode 200) { plus.runtime.install(downloadResult.tempFilePath 阅读全文
posted @ 2022-06-20 11:00 鲨鱼大王 阅读(42) 评论(0) 推荐(0) 编辑
摘要: 服务操作 systemctl stop firewalld.service //关闭防火墙 systemctl restart firewalld.service //开启防火墙 systemctl disable firewalld.service //关闭自启动 systemctl enable 阅读全文
posted @ 2022-06-10 11:47 鲨鱼大王 阅读(25) 评论(0) 推荐(0) 编辑
摘要: 安装 erlang 下载 erlang 安装包 wget http://erlang.org/download/otp_src_24.3.tar.gz 解压 erlang 安装包 tar -xvzf /usr/root/otp_src_24.3.tar.gz 安装 erlang 的依赖工具 yum 阅读全文
posted @ 2022-06-08 19:55 鲨鱼大王 阅读(103) 评论(0) 推荐(0) 编辑
摘要: 下载nacos压缩包 wget https://download.fastgit.org/alibaba/nacos/releases/download/1.3.2/nacos-server-1.3.2.tar.gz 解压nacos tar -zxvf nacos-server-1.3.2.tar. 阅读全文
posted @ 2022-06-08 15:39 鲨鱼大王 阅读(91) 评论(0) 推荐(0) 编辑
摘要: 下载并解压Redis wget https://download.redis.io/releases/redis-6.2.6.tar.gz 解压redis tar xzf redis-6.2.6.tar.gz 移动redis目录,一般都会将redis目录放置到 /usr/local/redis目录 阅读全文
posted @ 2022-06-08 15:23 鲨鱼大王 阅读(28) 评论(0) 推荐(0) 编辑
摘要: 解压放入你想安装的目录,然后移动并改名 tar -zxvf mysql-5.7.37-linux-glibc2.12-x86_64.tar.gz mv -v mysql-5.7.37-linux-glibc2.12-x86_64 /usr/local/mysql 再创建用户和用户组 groupadd 阅读全文
posted @ 2022-06-08 14:43 鲨鱼大王 阅读(36) 评论(0) 推荐(0) 编辑
摘要: 1.解压缩Java tar -zxvf jdk-8u151-linux-x64.tar.gz 2.配置环境变量 vi /etc/profile set java environment JAVA_HOME=/usr/local/java/jdk1.8.0_301 JRE_HOME=/usr/loca 阅读全文
posted @ 2022-06-08 10:22 鲨鱼大王 阅读(218) 评论(0) 推荐(0) 编辑
摘要: //一键安装上面四个依赖 yum -y install gcc zlib zlib-devel pcre-devel openssl openssl-devel 2.下载并解压安装包 //创建一个文件夹 cd /usr/local mkdir nginx cd nginx //下载tar包 wget 阅读全文
posted @ 2022-06-08 09:14 鲨鱼大王 阅读(726) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 ··· 9 下一页