美文网首页
Liux部署总结(1)

Liux部署总结(1)

作者: _小毛驴 | 来源:发表于2021-03-22 11:45 被阅读0次
  1. 解决tail命令提示“tail: inotify 资源耗尽,无法使用 inotify 机制,回归为 polling 机制”
> sysctl fs.inotify
> echo fs.inotify.max_user_watches=100000 | sudo tee -a /etc/sysctl.conf
> sudo sysctl -p
  1. Linux scp命令
# 从本地复制到远程:
> scp local_file remote_username@remote_ip:remote_folder 
#或者 
> scp local_file remote_username@remote_ip:remote_file 
# 或者 
> scp local_file remote_ip:remote_folder 
# 或者 
> scp local_file remote_ip:remote_file 
# 拷贝本地文件夹
> scp -r local_file remote_ip:remote_file 
  1. Linux系统里统计文件夹下的文件个数
# 统计当前目录下文件的个数(不包括目录)
> ls -l | grep "^-" | wc -l
# 统计当前目录下文件的个数(包括子目录)
> ls -lR| grep "^-" | wc -l
# 查看某目录下文件夹(目录)的个数(包括子目录)
> ls -lR | grep "^d" | wc -l
  1. curl 的用法指南
> curl https://www.example.com
# -d参数用于发送 POST 请求的数据体。
> curl -d'login=emma&password=123'-X POST https://google.com/login
> curl -d 'login=emma' -d 'password=123' -X POST  https://google.com/login

相关文章

  • Liux部署总结(1)

    解决tail命令提示“tail: inotify 资源耗尽,无法使用 inotify 机制,回归为 polling...

  • 学习小组—豹—Day2

    liux服务器登陆软件:putty liux学习网站 https://man.linuxde.net/pwd 马哥...

  • 7.Hadoop的源码编译

    1.CentOs联网 配置CentOs能够连接外网,Liux虚拟机能够ping www.baidu.com是畅通的...

  • liux.

    多想3至5年后 有朋友会这样问我, 想做好 想做广 想学很多很多的东西 所以还需要持之以恒 收一收心 我想我能做的...

  • liux笔记

    0、用户相关操作 useradd username:添加一个用户(只能管理员才能添加新用户) password x...

  • unison+inotify实现文件双向同步

    1、方案选择  在网上搜寻了很多方案,在liux下做文件同步,有如下几种方式:  1、nfs实现web数据共享; ...

  • Hadoop 集群搭建记录

    Liux 环境准备 版本 CentOS 7 JDK 1.8 Hadoop 2.7.6 root 账户激活(设置ro...

  • linux用户权限

    linux用户权限 用户管理 增加用户:# useradd [用户名]例如: useradd liux 设置用户密...

  • WebApi调试

    这些天在搞 WebApi ,踩了不少坑。总结下经验教训:1、如果WebApi部署在本机上正常,但是部署到服务器就不...

  • docker 常用部署Demo

    在此记录常用Docker 部署项目的几个Demo ,学习总结,同时方便后期提高部署项目速度。 Docker 部署 ...

网友评论

      本文标题:Liux部署总结(1)

      本文链接:https://www.haomeiwen.com/subject/ihdzcltx.html