码迷,mamicode.com
首页 >  
搜索关键字:localhost    ( 15941个结果
pymysql使用模板
db = pymysql.connect(host="localhost", port=3306, user="root", passwd="xxx", db="stu_info")cursor = db.cursor(cursor=pymysql.cursors.DictCursor)cursor ...
分类:数据库   时间:2021-06-07 20:09:12    阅读次数:0
Pymysql连接
PyMysql连接数据库 防止sql注入 import pymysql ? ? def insertsql(): # 建立连接 connection_sql = pymysql.connect( host='localhost', port=3306, user='root', password=' ...
分类:数据库   时间:2021-06-07 20:05:01    阅读次数:0
gitlab 代理报错
解决从github上拉代码时报错“Failed to connect to localhost port 1080: Connection refused” 需要两行命令解决问题主要原因是使用了proxy代理,我们只需要关闭代理 git config --global http.proxy //查看 ...
分类:其他好文   时间:2021-06-05 18:13:54    阅读次数:0
vue封装axios
安装axios npm install axios 封装 import axios from 'axios' // 创建axios实例 const service = axios.create({ baseURL: 'http://localhost:9001', // api的base_url t ...
分类:移动开发   时间:2021-06-04 19:39:19    阅读次数:0
含IP地址的url访问WebAPI接口
Visual Studio 断点调试webapi接口,只能用localhost登录api,无法用ip地址作为url访问 解决方法: 1、必须以管理员身份运行VS 2、修改【applicationhost.config】文件下的内容 ①项目文件夹下找到隐藏文件夹".vs”->config->appli ...
分类:Windows程序   时间:2021-06-02 20:43:33    阅读次数:0
SpringMVC流程
2021年6月1日22:32:04 今天学习了一下SpringMVC。总结一下。 SpringMVC的过程 前提:一个SpringMVC的服务启动好了。等待请求进来。 浏览器发送了一个请求过来比如是http://localhost:8080/hello 服务器接到了这个请求。 开始SpringMVC ...
分类:编程语言   时间:2021-06-02 20:40:24    阅读次数:0
Centos 7安装pm2
1、首先需要安装node,node安装教程前一篇已经说了,是安装pm2 [root@localhost ~]# npm install -g pm2 2、pm2 命令参考 2.1 启动进程/应用 pm2 start bin/www 或 pm2 start app.js 2.2 重命名进程/应用 pm ...
分类:其他好文   时间:2021-06-02 18:51:56    阅读次数:0
spark连接mysql数据库
安装启动检查Mysql服务。netstat -tunlp (3306) spark 连接mysql驱动程序。–cp /usr/local/hive/lib/mysql-connector-java-5.1.40-bin.jar /usr/local/spark/jars 启动 Mysql shell ...
分类:数据库   时间:2021-06-02 18:50:45    阅读次数:0
微服务部署
服务器规划: 修改3个微服务的配置文件: [root@localhost resources]# vi /opt/simple-microservice/order-service/order-service-biz/src/main/resources/application-fat.yml [r ...
分类:其他好文   时间:2021-06-02 18:16:48    阅读次数:0
09 spark连接mysql数据库
1.安装启动检查Mysql服务。netstat -tunlp (3306) 2.spark 连接mysql驱动程序。–cp /usr/local/hive/lib/mysql-connector-java-5.1.40-bin.jar /usr/local/spark/jars 3.启动 Mysql ...
分类:数据库   时间:2021-06-02 18:04:49    阅读次数:0
15941条   上一页 1 ... 3 4 5 6 7 ... 1595 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!