记录抒写
首页
软件
归档
娱乐
扩展
关于
GPT
记录是一种习惯 丶抒写是一种态度
小站告示
admin@jinchuang.org
Nginx http跳转https 80端口跳转433
2017-07-21
技术积累
Nginx
修改你需要调整nginx配置文件server { ...... if ($server_port = 80){ return 301 https://$server_name$request_uri;} if ($scheme = http){ return 301 https://$server_name$request_uri;} error...
Centos7安装Redis
2017-07-21
技术积累
Redis
centos7下安装redis下载:redis-3.2.3wget http://download.redis.io/releases/redis-3.2.3.tar.gz tar -xf redis-3.2.3.tar.gz cd redis-3.2.3 make make install cd utils ./install_server.sh如果...
php7安装redis扩展
2017-07-21
技术积累
PHP
Redis
给php7安装下redis扩展 下载扩展: phpredis-php7unzip phpredis-php7.zip cd phpredis-php7 /usr/local/php7/bin/phpize ./configure --with-php-config=/usr/local/php7/bin/php-config make make ins...
Linux iptables 端口转发-单网卡
2017-07-21
技术积累
Linux
Iptables
PC1 ip:192.168.23.252 PC2 ip:192.168.23.253 目的:访问pc1 的web服务跳转到pc2的web服务上 开启linux 自带的转发功能echo 1 > /proc/sys/net/ipv4/ip_forward 没有任何规则的iptablesservice iptables stop iptables ...
Windows Cmd下面使用wget命令
2017-07-21
技术积累
软件工具
Windows
linux 上用wget命令下载文件,windows也可以实现 安装版本:GnuWin wget exe可执行单文件1.14版本:wget-1.14.zip exe可执行单文件1.14版本:把压缩文件解压出来的wget.exe移动到 C:\Windows\System32 目录下面(要有管理员权限才行)
Mysql 5.7.29 安装配置
2017-07-21
技术积累
Linux
Mysql
1 安装好开发环境各种依赖包yum groupinstall "Development tools"2 安装依赖包yum install libaio3 新建用户组和用户groupadd mysql useradd mysql -g mysql4 建立存放数据库目录mkdir /data5 解压包指定目录# 使用官方二进制编译好的包...
Python ssh登录远程执行命令
2017-07-21
技术积累
Python
SSH
先安装必须的模块pip install paramiko脚本内容#!/usr/bin/python #-*- coding:utf-8 -*- import paramiko hostname = '192.168.1.1' port = 22 username = 'root' password = 'root' if __name__ == ...
JDK 1.8 配置
2017-07-21
技术积累
Linux
Jdk
官方下载地址:Java SE Development Kit 8 Downloads# 解压包 tar xf jdk-8u251-linux-x64.tar.gz -C /usr/local#修改系统变量 vim /etc/profile 最下面添加 JAVA_HOME=/usr/local/jdk1.8.0_251 JRE_HOME=$JAVA...
centos7 防火墙
2017-07-21
技术积累
Iptables
Centos7
CentOS 7.0默认使用的是firewall作为防火墙,使用iptables需要安装相关包 关闭防火墙systemctl stop firewalld.service #停止firewall systemctl disable firewalld.service #禁止firewall开机启动使用iptablesyum -y install ipt...
NGINX 配置文件优化
2017-07-21
技术积累
Linux
Nginx
参考文章 http://www.ha97.com/5194.html http://www.cnblogs.com/dawnlee/p/5142724.html#运行用户 user nginx; #进程文件pid pid pid/nginx.pid; #全局错误日志定义类型,[ debug | info | notice | warn | er...
使用python脚本发送邮件
2017-07-21
技术积累
Python
Mail
脚本参考菜鸟教程的代码,基本几大类邮箱都可以使用,按需填写对应的信息即可#!/usr/bin/python # -*- coding: UTF-8 -*- import sys import smtplib from email.mime.text import MIMEText from email.utils import formataddr ...
linux 随机数生成的几种方式
2017-07-21
技术积累
命令
Linux中随机生成字符串的方法很多,常用的有以下几种:(1) echo $(($RANDOM)) 通过系统环境变量 (2) echo $RANDOM | md5sum|cut -c 1-8 (3) openssl rand -base64 65 openssl产生随机数 (4) date +%s%N ...
«
1
...
19
20
21
22
23
»
顶部