摘要: 下载地址:nginx.org安装依赖包: yum -y install gcc pcre-devel zlib-devel openssl openssl-devel设置安装目录:./configure --prefix=/usr/local/nginx安装:make && make instal开 阅读全文
posted @ 2022-06-22 20:54 wbnsyw 阅读(171) 评论(0) 推荐(0)
摘要: Git全局设置 git config --global user.name "yuhang" git config --global user.email "1441674237@qq.com" 创建Git仓库 mkdir helleogit git init git clone https://g 阅读全文
posted @ 2022-06-22 20:53 wbnsyw 阅读(35) 评论(0) 推荐(0)
摘要: Linux下启动:在redis目录下执行 src/redis-server ./redis.conf(后台运行)Linux下启动客户端:./redis-cli -h localhost -p 6379 -a 123456(密码) win下启动:双击redis-serverwin下启动客户端并连接远程 阅读全文
posted @ 2022-06-22 20:52 wbnsyw 阅读(99) 评论(0) 推荐(0)
摘要: 常用命令ls(访问目录)pwd 查看当前所在目录mkdir 【目录名】 创建目录rmdir 【目录名】 删除目录(只能删除空目录)touch 【文件名】 如果文件不存在 则新建文件rm 【文件名】 删除指定文件 cat -n 【文件名】 查看指定文件内容more 【文件名】 查看指定文件内容tail 阅读全文
posted @ 2022-06-22 20:52 wbnsyw 阅读(32) 评论(0) 推荐(0)