最新文章

DockerDocker常用命令

Docker常用命令

#载入镜像dockerpullubuntu#用某个镜像启动一个容器,并以命令行进入容器dockerrun-itubuntu/bin/bash#后台运行容器dockerrun-itd--nameubuntu-testubuntu/bin/bash#查看所有容器dockerps-a#启动一个已经停止的容器dockerstart{CONTAINERID}#停止容器dockerstop{CONTAINERID}#进入容器...
RedisRedis Cluster集群搭建

Redis Cluster集群搭建

#RedisCluster配置教程**简介**RedisCluster支持数据分片存储、主从复制、故障自动切换。集群的搭建可以参考官方文档https://redis.io/topics/cluster-tutorial**Redis高可用集群的搭建****1.安装redis环境**首先需要准备3个以上的redis环境(建议6个以上),安装步骤如下:```bashwg...
CentOSCentos一键配置pptp VPN服务(转载)

Centos一键配置pptp VPN服务(转载)

文章来源https://blog.linuxeye.cn/412.html安装脚本wgethttp://mirrors.linuxeye.com/scripts/vpn_centos.shchmod+x./vpn_centos.sh./vpn_centos.sh脚本内容#!/bin/bash##Author:yeho<lj2007331ATgmail.com>#Blog:https://blog.linuxeye.com##InstallsaPPTPVPN-onlysystemforCentO
PHPlaravel打印页面SQL

laravel打印页面SQL

修改app/Providers/AppServiceProvider.phpuseIlluminate\Support\Facades\DB;publicfunctionboot(){DB::listen(function($sql){//$sqlisanobjectwiththeproperties://sql:Thequery//bindings:thesqlqueryvariables//time:Theexecutiontimeforthequery//connectionName:Thename
PHPPHP生成随机汉字

PHP生成随机汉字

functiongetChar($num)//$num为生成汉字的数量{$b='';for($i=0;$i<$num;$i++){//使用chr()函数拼接双字节汉字,前一个chr()为高位字节,后一个为低位字节$a=chr(mt_rand(0xB0,0xD0)).chr(mt_rand(0xA1,0xF0));//转码$b.=iconv('GB2312','UTF-8',$a);}return$b;}echogetChar(mt_rand(100,2
杂项composer修改镜像地址

composer修改镜像地址

国外镜像会很慢,可以修改成阿里云的#所有项目都会使用这个镜像composerconfig-grepo.packagistcomposerhttps://mirrors.aliyun.com/composer/#取消配置composerconfig-g--unsetrepos.packagist#仅修改当前工程配置,仅当前工程可使用该镜像地址composerconfigrepo.packagistcomposer...
Elasticsearchelasticsearch利用x-pack添加权限验证

elasticsearch利用x-pack添加权限验证

viconfig/elasticsearch.ymlxpack.security.enabled:truexpack.security.transport.ssl.enabled:true./bin/elasticsearch-dbin/elasticsearch-setup-passwordsinteractiveelasticsearch-head连接地址修改为http://192.168.36.61:9100/?auth_user=elastic&auth_password=passwd方式
CentOSCentOS免密登录

CentOS免密登录

这里介绍两种方式方式一登录服务器ssh-keygen-trsa-b2048会提示保存到什么地方,可以自己取名比如adtuuopensslrsa-inadtuu-outformpem>adtuu.pem下载pem到本地yuminstalllrzszszadtuu.pem本地登录服务器ssh-iadtuu.pemroot@ip方式二本地电脑ssh-keygen-trsa-b2048#会提示保存到什么地...
热门搜索词