码迷,mamicode.com
首页 >  
搜索关键字:startup directory    ( 8983个结果
flask实现文件下载功能
import datetime import os from flask import Flask, send_from_directory, request from flask_cors import CORS app = Flask(__name__) CORS(app) @app.route ...
分类:其他好文   时间:2020-07-04 15:15:29    阅读次数:94
推荐 33 个 IDEA 最牛配置
1、设置maven 1、在File->settings->搜索maven2、Mavan home directory--设置maven安装包的bin文件夹所在的位置3、User settings file--设置setting文件所在的位置4、Local repository--设置本地仓库的 2、 ...
分类:其他好文   时间:2020-07-03 12:42:37    阅读次数:67
expdp/impdp 数据泵导入导出
create directory mydata as '逻辑目录路径'; 例如: create directory mydata as '/data/oracle/oradata/mydata'; grant read,write on directory mydata to public sele ...
分类:其他好文   时间:2020-07-02 16:41:40    阅读次数:51
virtualenv中执行python脚本报错ImportError: No module named markupsafe 或 No such file or directory: '/tmp/tmp0lEZD9/lib/python'
2env为我使用virtualen创建的虚拟python环境,我的本地要使用的各类库已下载到文件夹lianxi下面,ceshi2.txt为我要安装的各类库包列表 (2env) [root@xxxxxxx]$ ./2env/bin/python wsgi.pyTraceback (most recen ...
分类:编程语言   时间:2020-07-01 20:37:26    阅读次数:58
virtualenv虚拟环境中安装MarkupSafe后报错
其中:lianxi目录为我已下载好各类的离线库包(按自己的使用需要去下载),ceshi2.txt是我本次想要安装的库列表,例:MarkupSafe==1.1.1 (2env) [root@xxxxx]$ pip install --no-index --find-links=lianxi -r ./ ...
分类:其他好文   时间:2020-07-01 20:28:21    阅读次数:40
Mybatis 报错 java.io.IOException: Could not find resource mybatis-config.xml
1 <build> 2 <resources> 3 <resource> 4 <directory>src/main/java</directory> 5 <includes> 6 <include>**/*.properties</include> 7 <include>**/*.xml</inc ...
分类:编程语言   时间:2020-07-01 20:10:39    阅读次数:240
error while loading shared libraries: libhiredis.so.0.14: cannot open shared object file: No such file or directory
hiredis 的应用程序出错。 ./example-libevent: error while loading shared libraries: libhiredis.so.0.14: cannot open shared object file: No such file or directo ...
分类:其他好文   时间:2020-07-01 13:03:53    阅读次数:97
git配置教程
一.配置ssh 1.检查本机是否有ssh key设置 如果没有则提示: No such file or directory如果有则进入~/.ssh路径下(ls查看当前路径文件,rm删除所有文件) 2.使用Git Bash生成新的ssh key $ cd ~ #保证当前路径在”~”下 $ ssh-ke ...
分类:其他好文   时间:2020-07-01 00:07:34    阅读次数:73
tomcat源码springboot搭建的跑包含websocket的项目
之前我们用tomcat源码跑起来了,那么如何加入我们的应用呢?springboot内嵌了tomcat,怎么剥离?如果项目里有websocket配置,又有哪些注意项?好,我们看一下操作。 1、要剥离springboot的内嵌tomcat,先修改pom.xml: 1.1、新增 <dependency> ...
分类:编程语言   时间:2020-06-30 22:21:29    阅读次数:69
PM2 实现 自动重启 node 服务 , 例如 服务器重启时,自动启动 之前的服务
sudo pm2 start xxxx // 启动服务 sudo pm2 save // 保存服务 sudo pm2 startup // 把已启动服务加到systemd中 sudo systemctl reboot // 重启,发现之前的服务都已经启动 sudo pm2 unstartup sys ...
分类:其他好文   时间:2020-06-29 18:37:12    阅读次数:263
8983条   上一页 1 ... 29 30 31 32 33 ... 899 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!