码迷,mamicode.com
首页 >  
搜索关键字:host    ( 15768个结果
http强制访问https - Apache
server { listen 80; server_name www.yourweb.com; rewrite ^(.*)$ https://$host$1 permanent; } ...
分类:Web程序   时间:2021-06-08 22:57:22    阅读次数:0
Pigeon源码分析(五) -- 服务端netty部分
服务端netty的channelHandler有这么多 public class NettyServerPipelineFactory implements ChannelPipelineFactory { private NettyServer server; private static Cod ...
分类:Web程序   时间:2021-06-07 21:09:49    阅读次数:0
生产环境oracle 12C DG搭建过程
1、主库准备工作 Host IP DB_NAME DB_UNIQUE_NAME Net Service Name(网络服务名) 主库192.168.137.128 ORCLDB WENDING db_wending 备库192.168.137.129 ORCLDB PHYSTDBY db_physt ...
分类:数据库   时间:2021-06-07 20:39:51    阅读次数:0
安装docker遇到的坑 Could not resolve host: download.docker.com
vim /etc/sysconfig/network-scripts/ifcfg-ens33 增加如下内容 DNS1=8.8.8.8 DNS2=114.114.114.114 PEERDNS="no" 重启网络 service network restart ...
分类:其他好文   时间:2021-06-07 20:27:38    阅读次数:0
pymysql功能封装
import pymysql# username : adil# password : helloyyjclass DataBaseHandle(object): ''' 定义一个 MySQL 操作类''' def __init__(self, host, username, password, d ...
分类:数据库   时间:2021-06-07 20:23:52    阅读次数:0
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
Python_redis
import redisr = redis.Redis(host = "118.xx.x.xx",password="xxxxxx*",port=xxxx,db=4)r = redis.Redis(host = "118.xx.x.xx",password="xxxxxx*",port=xxxx,d ...
分类:编程语言   时间:2021-06-06 19:33:19    阅读次数:0
Python_发送邮件
import yamailusername = "xxxxxx@qq.com"password = "xxxxxx"host = "smtp.qq.com"# host = "smtp.163.com" #163# host = "smtp.126.com" #qq# smtp.send(to="a ...
分类:编程语言   时间:2021-06-06 19:32:03    阅读次数:0
Docker安装Redis集群
拉取redis镜像 docker pull redis 创建redis容器 docker create --name redis-node1 --net host -v /data/redis-data/node1:/data redis --cluster-enabled yes --cluste ...
分类:其他好文   时间:2021-06-06 19:28:17    阅读次数:0
15768条   上一页 1 ... 3 4 5 6 7 ... 1577 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!