计算机基础
米玖
这个作者很懒,什么都没留下…
展开
-
小程序 VUE vant
创建项目 1.cmd到目录执行 1、第一步:npm init 2、第二步:npm install --production 3、第三步: npm i @vant/weapp -S --production 2.在微信开发工具执行npm 构建(构建完会生成一个miniprogram_npm文件夹),并且项目详情 本地设置 设置为使用nmp模块 步骤二 修改 app.json 将 app.json 中的 "style": "v2" 去除,小程序的新版基础组...原创 2022-01-20 11:00:52 · 664 阅读 · 0 评论 -
linux nginx安装
tar -zxvf nginx-1.14.2.tar.gz mv /usr/local/software/nginx-1.14.2 /usr/local/nginx cd /usr/local/nginx ./configure --prefix=/usr/local/nginx --with-http_gzip_static_module --with-http_ssl_module --without-http_rewrite_module make && make install .原创 2022-01-18 21:37:36 · 1838 阅读 · 0 评论 -
rabbitmq liunx centos 6.5环境搭建
参考以下两篇文章https://blog.csdn.net/a15134566493/article/details/51393955https://blog.csdn.net/mx472756841/article/details/50733886赋权[root@localhost sbin]# ./rabbitmqctl set_permissions -p / rabbitadmin '....转载 2018-04-14 09:36:23 · 148 阅读 · 0 评论 -
mysql事务隔离级别
1.查看当前会话隔离级别 select @@tx_isolation; 2.查看系统当前隔离级别 select @@global.tx_isolation; 3.设置当前会话隔离级别 set session transaction isolatin level repeatable read; 4.设置转载 2017-03-17 17:59:09 · 266 阅读 · 0 评论 -
git的常用命令梳理
--配置自己的信息 git config --global user.name "chenxu" git config --global user.email "vip@chennxu.com" --设置git的工作空间 mkdir code cd code/ git init --添加到缓存区 git add -- index.txt git add . [ps原创 2016-07-21 00:56:44 · 291 阅读 · 0 评论 -
二进制基本原理
<pre name="code" class="java">package test; /** * @Classname: Binary * @Description: TODO 二进制 * @Author: chenn_xu@sina.cn * @Date: 2015年10月22日 上午11:11:18 * @Version:V1.0 * * 本篇代码...原创 2015-10-22 14:55:19 · 3907 阅读 · 0 评论 -
oracle 数据库批处理文件
目录结构 初始化脚本 |----orcl_sql |---- init_user.sql |---- tab_home.sql |---- TAB_USER.sql |---- init.bat init.bat@echo off @echo --------------------------------------------------------原创 2015-08-07 00:27:27 · 1625 阅读 · 0 评论 -
window下 查看端口占用程序 并结束其进程
--找端口为8080 >netstat -aon | findstr "8080" --杀死xxxx进程 >taskkill /pid xxxx /f原创 2015-10-07 11:05:33 · 298 阅读 · 0 评论 -
window下添加tomcat为服务启动启动,且待oracle服务启动后再启动
dos 命令进入tomcat的bin目录下,执行 service.bat install 【安装服务】 service.bat remove 【删除服务】 运行 regedit 进入注册表编辑器 找到 HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\ 新建多字符串值或者找到DependOnService[依赖原创 2015-10-07 10:45:59 · 534 阅读 · 0 评论