• python-linux-集群nginx


    一命令基本格式

    ----cd ~

    ----cd /

    ---cd ..  上级

    ----pwd  当前路径

    ----ls -l   -a  -h

    ----权限rwxrwxrwx  755

    二文件处理

    ----mkdir -p 目录名      创建目录

    ----touch  文件名       创建文件

    ----rm -rf 目录、文件     删除

    -----cp  原文件/目录  目标文件/目录    复制

    -----mv  原文件/目录  目标文件/目录    剪切

    -----cat 文件     查看文件

    -----/

    -----/bin  保存命令

    ----/boot 启动文件

    ----/dev  设备文件

    ----/etc   配置文件

    ----/home

    ----/lib    系统库

    ----/mnt   系统挂载

    -----/media  普通挂载

    ----/root   

    ----/tmp    临时目录

    ----/sbin    超级命令

    ---/proc     写入内存

    ---/sys      

    ---/usr       系统软件资源

    --------/usr/bin/     系统命令

    -------/usr/sbin/     系统超级命令

    ------/var  系统文档

    三文件搜索

    ----locate 文件名      必须更新数据库updatedb

    ----whereis  文件  返回路径

    -----which   命令     返回命令文件

    -----find   搜索范围  搜索条件

    ------grep   字符串  文件名   字符串搜索

    ------vi

    通配符:* []

    四帮助命令

    ----man  ls     查看ls的帮助命令

    ---ls ----help

    -----who   查看登陆用户信息

    -----last    查看过去登陆用户信息

    五压缩与解压缩命令

    -----gzip  -d  源文件     压缩文件

    -----gzip    压缩文件      解压

    ----tar -cvf  打包文件名  源文件

    ----tar  xf   xxxx.tar     解压

    六机关和重启命令

    ----shutdown 选项  时间   关机

    ----poweroff

    -----init 0

    七其他命令

    定时任务:

    --------------vi 1.py

    进入编辑模式  i

    开始写代码

    退出编辑模式 Esc

    保存退出  :wq

    一次性:at

    安装chkconfig --list|grep atd

    启动service atd restart

    访问控制

    命令at 选项 时间

    循环:crontab

    mount /dev/sr0 /mnt/cdrom

    yum install crontabs

    service crond status

    Crontab -e 打开编辑器写下(时,天,月,年,周)

     10 * * * * /root/sh/apache_check.sh

    -------------修改文件权限:chmod 777 /root/test.sh

    怎么往hello.log文件中输入apple字符串。使用bash命令

    1.创建hello.log

    2.创建test.sh

    3.编辑test.sh

    #!/bin/bash

    echo "apple" >> /root/hello.log

    4.运行 /root/test.sh  ./test.sh

    5.hello.log出现apple

    集群

    组成:vip(ip地址) , 分发器(nginx,服务器(web

  • 相关阅读:
    nowcoderD Xieldy And His Password
    Codeforces681D Gifts by the List
    nowcoder80D applese的生日
    Codeforces961E Tufurama
    Codeforces957 Mahmoud and Ehab and yet another xor task
    nowcoder82E 无向图中的最短距离
    nowcoder82B 区间的连续段
    Codeforces903E Swapping Characters
    Codeforces614C Peter and Snow Blower
    Codeforces614D Skills
  • 原文地址:https://www.cnblogs.com/person1-0-1/p/11390658.html
Copyright © 2020-2023  润新知