Linux shell编程——if语句 详解
其他 / 2019年6月28日

传统if 从句子——以条件表达式作为 if条件 if [ 条件表达式 ] then  command  command  command else  command  command fi   条件表达式     文件表达式 if [ -f  file ]    如果文...

Shell 显示带颜色字体
其他 / 2019年6月28日

shell脚本中echo显示内容带颜色显示,echo显示带颜色,需要使用参数-e   格式如下:   echo -e "\033[字背景颜色;文字颜色m字符串\033[0m"   例如:   echo -e "\033[41;36m something here \033[0m"   其中41的位置代表底色, 36的位置是代表字的颜色   注:  www.2cto.com   ...

Redis + Gearman + Mysql 实现读写分离
Redis / 2019年6月28日

通过Gearman实现MySQL到Redis的数据复制 Redis +  Gearman + Mysql   实现读写分离  mysql更新同步redis 一  安装LNMP环境或者 LAMP 无论哪种架构 启动相应服务   mysql  nginx   apache  ... 配置好一个...

Redis 之 phpredisadmin 可视化web 管理
Redis / 2019年6月28日

这里假定已经安装 LAMP 又或者 LNMP redis 等 插件已经完成安装可以使用 ; 具体的安装方法 看前几篇文档 配置一个站点 假定为 manage.redis.com 站点根目录 /home/wwwroot/manage.redis.com 安装phpredisadmin cd /home/wwwroot/manage.redis.com git clone https://github...

Nginx的几个常用配置和技巧
Nginx / 2019年6月28日

一个站点配置多个域名 server {     listen       80;     server_name  ops-coffee.cn b.ops-coffee.cn; } server_name后跟多...

Nginx与安全有关的几个配置
Nginx / 2019年6月28日

隐藏版本号 http {     server_tokens off; } 经常会有针对某个版本的nginx安全漏洞出现,隐藏nginx版本号就成了主要的安全优化手段之一,当然最重要的是及时升级修复漏洞 开启HTTPS server {     listen 443; &nbsp...

Linux 自动加载 .bashrc (非 root用户)
Linux / 2019年6月26日

经常出现添加一个新用户之后,使用该新用户文件夹,文件等颜色全是白色不区分,需要复制 root 下配置好的 .bashrc 并且需要source  ,退出再次登录后依然需要source; 为新创建用户创建默认.bashrc并自动加载 拷贝默认的.bashrc 进入新用户的根目录并更改用户所属 [root@world-alive:~]#groupadd webapps [root@world...

Let’s Encrypt免费泛域名证书申请
SSL / 2019年6月5日

Let’s Encrypt免费泛域名证书安装步骤如下: 一、首先下载ACME.SH,以下四条命令任选一条即可,醒醒用的是第四条。 curl https://get.acme.sh | sh wget -O - https://get.acme.sh | sh curl https://raw.githubusercontent.com/Neilpang/acme.sh/master/a...