Linux(CentOS 7)操作系统
消息队列(Kafka、RabbitMQ、RocketMQ),缓存(Redis),搜索引擎(ES),集群分布式(需要购买多台服务器,如果没有服务器我们就只能使用虚拟机)!
Linux一切皆文件 :文件就是 读、写、(权限)
学习方式:
- 认识Linux
- 基本的命令(重点:Git讲了一些基本的命令(文件操作、目录管理、文件属性、Vim编辑器、账号管理、磁盘管理......))
- 软件的安装和部署!(Java、tomcat、docker)
Linux --> Redis --> docker
LAMP(Linux + Apache + MySQL + PHP) 或 LNMP(Linux + Nginx + MySQL + PHP)
Linux vs Windows
1、环境搭建
详细讲解请看服务器购买、环境搭建及运行
2、走进Linux
开机登录
开机会启动许多程序。它们在Windows叫做“服务”(service),在Linux就叫做“守护进程”(daemon)。
开机成功后,它会显示一个文本登录界面,这个界面就是我们经常看到的登录界面,在这个登录界面中会提示用户输入用户名,而用户输入的用户名将作为参数传给login程序来验证用户的身份,密码是不显示的,输完回车即可!
一般来说,用户的登录方式有三种:
- 命令行登录
- ssh登录
- 图形界面登录
最高权限账户为 root ,可以操作一切!
关机
在Linux领域内大多用在服务器上,很少遇到关机的操作。毕竟服务器上跑一个服务是永无止境的,除非特殊情况下,不得已才会关机。
关机指令为:shutdown;
sync # 将数据由内存同步到硬盘中 shutdown # 关机指令,你可以 man shutdown 来看一下帮助文档。例如你可以运行如下命令关机: shutdown -h 10 # 这个命令告诉大家,计算机将在10分钟后关机 shutdown -h now # 立马关机 shutdown -h 20:25 # 系统会在今天20:25关机 shutdown -h +10 # 十分钟后关机 shutdown -r now # 系统立马重启 shutdown -r +10 # 系统十分钟后重启 reboot # 就是重启,等同于 shutdown -r now half # 关闭系统,等同于shutdown -h now 和 poweroff
最后总结一下,不管是重启系统还是关闭系统,首先要运行 sync 命令,把内存中的数据写到磁盘中。
Linux中没有错误就代表操作成功!
系统目录结构
- 一切皆文件
- 根目录 / ,所有的文件都挂载在这个节点下
登录系统后,在当前命令窗口下输入命令:
ls /
你会看到如下图所示:
树状目录结构:
以下是对这些目录的解释:
- /bin:bin是Binary的缩写,这个目录存放着最经常使用的命令。
- /boot:这里存放的是启动Linux时使用的一些核心文件,包括一些连接文件以及镜像文件。
- /dev:dev是Device(设备)的缩写,存放的是Linux的外部设备,在Linux中访问设备的方式和访问文件的方式是相同的。
- /etc:这个目录是用来存放所有的系统管理所需要的配置文件和子目录。
- /home:用户的主目录,在Linux中,每个用户都有一个自己的目录,一般该目录名是以用户的账号命名的。
- /lib:这个目录里存放着系统最基本的动态连接共享库,其作用类似于Windows里的DLL文件。
- /lost+found:这个目录一般情况下是空的,当系统非法关机后,这里就存放了一些文件。
- /media:linux系统会自动识别一些设备,例如U盘、光驱等等,当识别后,linux会把识别的设备挂载到这个目录下。
- /mnt:系统提供该目录是为了让用户临时挂载别的文件系统的,我们可以将光驱挂载在/mnt/上,然后进入该目录就可以查看光驱里的内容了。
- /opt:这是给主机额外安装软件所摆放的目录。比如你安装一个ORACLE数据库则就可以放到这个目录下。默认是空的。
- /proc:这个目录是一个虚拟的目录,它是系统内存的映射,我们可以通过直接访问这个目录来获取系统信息。
- /root:该目录为系统管理员,也称作超级权限者的用户主目录。
- /sbin:s就是Super User的意思,这里存放的是系统管理员使用的系统管理程序。
- /srv:该目录存放一些服务启动之后需要提取的数据。
- /sys:这是linux2.6内核的一个很大的变化。该目录下安装了2.6内核中新出现的一个文件系统sysfs。
- /tmp:这个目录是用来存放一些临时文件的。
- /usr:这是一个非常重要的目录,用户的很多应用程序和文件都放在这个目录下,类似于windows下的program files目录。
- /usr/bin:系统用户使用的应用程序。
- /usr/sbin:超级用户使用的比较高级的管理程序和系统守护程序。Super
- /usr/src:内核源代码默认的放置目录。
- /var:这个目录中存放着在不断扩充着的东西,我们习惯将那些经常被修改的目录放在这个目录下。包括各种日志文件。
- /run:是一个临时文件系统,存储系统启动以来的信息。当系统重启时,这个目录下的文件应该被删掉或清除。
- /www:存放服务器网站相关的资源、环境、网站的项目
3、常用的基本命令
目录管理
绝对路径、相对路径
绝对路径,路径的全称:C:\ProgramData\xxx
比如说 C:\ProgramData 目录下,那这个xxx文件,对应我们相对应的配置就是/xxx
cd :切换目录命令!
./ :当前目录
cd .. :返回上一级目录
ls(列出目录!)
在Linux中 ls 可能是最常被使用的!
-a参数:all,查看全部的文件,包括隐藏文件
-l参数:列出所有的文件,包含文件的属性和权限,不显示隐藏文件
所有的Linux命令可以组合使用!
cd 命令 切换目录
cd 目录名(绝对路径都是以 / 开头,相对路径,对于当前目录该如何寻找 ../../ )
大家只要多尝试使用就会了!
pwd 显示当前用户所在的目录!
[root@iZwz94pp1jlrh60g51w9b8Z ~]# pwd /root [root@iZwz94pp1jlrh60g51w9b8Z ~]# cd /bin [root@iZwz94pp1jlrh60g51w9b8Z bin]# pwd /bin [root@iZwz94pp1jlrh60g51w9b8Z bin]# cd /usr/local [root@iZwz94pp1jlrh60g51w9b8Z local]# pwd /usr/local
mkdir 创建一个目录
[root@iZwz94pp1jlrh60g51w9b8Z home]# mkdir test1 [root@iZwz94pp1jlrh60g51w9b8Z home]# ls kuangstudy redis test1 www [root@iZwz94pp1jlrh60g51w9b8Z home]# cd test1 [root@iZwz94pp1jlrh60g51w9b8Z test1]# cd .. [root@iZwz94pp1jlrh60g51w9b8Z home]# mkdir test2/test3/test4 mkdir: cannot create directory ‘test2/test3/test4’: No such file or directory [root@iZwz94pp1jlrh60g51w9b8Z home]# mkdir -p test2/test3/test4 [root@iZwz94pp1jlrh60g51w9b8Z home]# ls kuangstudy redis test1 test2 www [root@iZwz94pp1jlrh60g51w9b8Z home]# cd test2 [root@iZwz94pp1jlrh60g51w9b8Z test2]# ls test3 [root@iZwz94pp1jlrh60g51w9b8Z test2]# cd test3 [root@iZwz94pp1jlrh60g51w9b8Z test3]# ls test4
rm 删除目录
批量删除文件:
[root@iZwz94pp1jlrh60g51w9b8Z home]# rm -rf f2 f3 kuangstudy.txt
[root@iZwz94pp1jlrh60g51w9b8Z local]# cd /home [root@iZwz94pp1jlrh60g51w9b8Z home]# mkdir test1 [root@iZwz94pp1jlrh60g51w9b8Z home]# ls kuangstudy redis test1 www [root@iZwz94pp1jlrh60g51w9b8Z home]# cd test1 [root@iZwz94pp1jlrh60g51w9b8Z test1]# cd .. [root@iZwz94pp1jlrh60g51w9b8Z home]# mkdir test2/test3/test4 mkdir: cannot create directory ‘test2/test3/test4’: No such file or directory [root@iZwz94pp1jlrh60g51w9b8Z home]# mkdir -p test2/test3/test4 [root@iZwz94pp1jlrh60g51w9b8Z home]# ls kuangstudy redis test1 test2 www [root@iZwz94pp1jlrh60g51w9b8Z home]# cd test2 [root@iZwz94pp1jlrh60g51w9b8Z test2]# ls test3 [root@iZwz94pp1jlrh60g51w9b8Z test2]# cd test3 [root@iZwz94pp1jlrh60g51w9b8Z test3]# ls test4 [root@iZwz94pp1jlrh60g51w9b8Z test3]# cd /home [root@iZwz94pp1jlrh60g51w9b8Z home]# ls kuangstudy redis test1 test2 www [root@iZwz94pp1jlrh60g51w9b8Z home]# rmdir test1 [root@iZwz94pp1jlrh60g51w9b8Z home]# ls kuangstudy redis test2 www [root@iZwz94pp1jlrh60g51w9b8Z home]# rmdir test2 rmdir: failed to remove ‘test2’: Directory not empty [root@iZwz94pp1jlrh60g51w9b8Z home]# rmdir -p test2 rmdir: failed to remove ‘test2’: Directory not empty [root@iZwz94pp1jlrh60g51w9b8Z home]# rmdir -p test2/test3/test4 [root@iZwz94pp1jlrh60g51w9b8Z home]# mkdir -p test2/test3/test4 [root@iZwz94pp1jlrh60g51w9b8Z home]# rmdir test2/test3/test4 [root@iZwz94pp1jlrh60g51w9b8Z home]# ls kuangstudy redis test2 www [root@iZwz94pp1jlrh60g51w9b8Z home]# rmdir -p test2/test3/test4 rmdir: failed to remove ‘test2/test3/test4’: No such file or directory [root@iZwz94pp1jlrh60g51w9b8Z home]# ls kuangstudy redis test2 www [root@iZwz94pp1jlrh60g51w9b8Z home]# rmdir -p test2/test3/test4 rmdir: failed to remove ‘test2/test3/test4’: No such file or directory [root@iZwz94pp1jlrh60g51w9b8Z home]# ls kuangstudy redis test2 www [root@iZwz94pp1jlrh60g51w9b8Z home]# cd test2/test3 [root@iZwz94pp1jlrh60g51w9b8Z test3]# cd test4 -bash: cd: test4: No such file or directory [root@iZwz94pp1jlrh60g51w9b8Z test3]# mkdir test4 [root@iZwz94pp1jlrh60g51w9b8Z test3]# cd ../.. [root@iZwz94pp1jlrh60g51w9b8Z home]# rmdir -p test2/test3/test4 [root@iZwz94pp1jlrh60g51w9b8Z home]# ls kuangstudy redis www
rmdir 仅能删除空的目录,如果下面存在文件,需要先删除文件,递归删除多个目录 -p 参数即可
cp(复制文件或者目录)
cp 原来的地方 新的地方!
[root@iZwz94pp1jlrh60g51w9b8Z home]# cp install.sh kuangstudy # 拷贝文件至目录 [root@iZwz94pp1jlrh60g51w9b8Z home]# ls install.sh kuangshen kuangstudy www [root@iZwz94pp1jlrh60g51w9b8Z home]# cd kuangstudy/ [root@iZwz94pp1jlrh60g51w9b8Z kuangstudy]# ls install.sh [root@iZwz94pp1jlrh60g51w9b8Z kuangstudy]# cd .. [root@iZwz94pp1jlrh60g51w9b8Z home]# cp install.sh kuangstudy # 如果文件重复,就选择覆盖(y)或者放弃(n) cp: overwrite ‘kuangstudy/install.sh’? y
rm(移除文件或者目录!)
-f 忽略不存在的文件,不会出现警告,强制删除!
-r 递归删除目录!
-i 互动,删除询问是否删除
rm -rf / # 系统中所有的文件就被删除了,删库跑路的操作!
[root@iZwz94pp1jlrh60g51w9b8Z kuangstudy]# ls install.sh [root@iZwz94pp1jlrh60g51w9b8Z kuangstudy]# rm -rf install.sh
mv 移动文件或者目录!重命名文件
-f 强制
-u 只替换已经更新过的文件
[root@iZwz94pp1jlrh60g51w9b8Z home]# ls install.sh kuangshen kuangstudy www [root@iZwz94pp1jlrh60g51w9b8Z home]# mv install.sh kuangstudy/ # 移动文件 [root@iZwz94pp1jlrh60g51w9b8Z home]# ls kuangshen kuangstudy www [root@iZwz94pp1jlrh60g51w9b8Z home]# cd kuangstudy/ [root@iZwz94pp1jlrh60g51w9b8Z kuangstudy]# ls install.sh [root@iZwz94pp1jlrh60g51w9b8Z kuangstudy]# cd .. [root@iZwz94pp1jlrh60g51w9b8Z home]# ls kuangshen kuangstudy www [root@iZwz94pp1jlrh60g51w9b8Z home]# mv kuangstudy kuangstudy2 # 重命名文件夹! [root@iZwz94pp1jlrh60g51w9b8Z home]# ls kuangshen kuangstudy2 www
基本属性
看懂文件属性
Linux系统是一种典型的多用户系统,不同的用户处于不同的地位,拥有不同的权限。为了保护系统的安全性,Linux系统对不同的用户访问同一文件(包括目录文件)的权限做了不同的规定。
在Linux中我们可以使用ll或者ls -l命令来显示一个文件的属性以及文件所属的用户和组,如:
实例中,boot文件的第一个属性用"d"表示。"d"在Linux中代表该文件是一个目录文件。
在Linux中第一个字符代表这个文件是目录、文件或链接文件等等:
- 当为[ d ]则是目录
- 当为[ - ]则是文件;
- 若是[ l ]则表示为链接文档(link file);
- 若是[ b ]则表示为装置文件里面的可供储存的接口设备(可随机存取装置);
- 若是[ c ]则表示为装置文件里面的串行端口设备,例如键盘、鼠标(一次性读取装置)。
接下来的字符中,以三个为一组,且均为[ rwx ]的三个参数的组合
其中,[ r ]代表可读(read)、[ w ]代表可写(write)、[ x ]代表可执行(execute)。
要注意的是,这三个权限的位置不会改变,如果没有权限,就会出现减号[ - ]而已。
每个文件的属性由左边第一部分的10个字符来确定(如下图):
从左至右用0-9这些数字来表示。
第0位确定文件类型,第1-3位确定属主(该文件的所有者)拥有该文件的权限。第4-6位确定属组(所有者的同组用户)拥有该文件的权限,第7-9位确定其他用户拥有该文件的权限。
其中:
第 1、4、7 位表示读权限,如果用 r 字符表示,则有读权限,如果用 - 字符表示,则没有读权限;
第 2、5、8 位表示写权限,如果用 w 字符表示,则有写权限,如果用 - 字符表示没有写权限;
第 3、6、9 位表示可执行权限,如果用 x 字符表示,则有执行权限,如果用 - 字符表示,则没有执行权限。
对于文件来说,它都有一个特定的所有者,也就是对该文件具有所有权的用户。
同时,在Linux系统中,用户是按组分类的,一个用户属于一个或多个组。
文件所有者以外的用户又可以分为文件所有者的同组用户和其他用户。
因此,Linux系统按文件所有者、文件所有者同组用户和其它用户来规定了不同的文件访问权限。
在以上实例中,boot文件是一个目录文件,属主和属组都为root。
修改文件属性
- chgrp:更改文件属组
chgrp [-R] 属组名 文件名
-R:递归更改文件属组,就是在更改某个目录文件的属组时,如果加上-R的参数,那么该目录下的所有文件的属组都会更改。
- chown:更改文件属主,也可以同时更改文件属组
chown [–R] 属主名 文件名 chown [-R] 属主名:属组名 文件名
- chmod:更改文件9个属性
chmod [-R] xyz 文件或目录
Linux文件属性有两种设置方法,一种是数字,一种是符号。Linux 文件的基本权限就有九个,分别是owner/group/others(拥有者/组/其他)三种身份各有自己的read/write/execute权限。先复习一下刚刚上面提到的数据:文件的权限字符为: [ -rwxrwxrwx ], 这九个权限是三个三个一组的!其中,我们可以使用数字来代表各个权限,各权限的分数对照表如下:
r:4 w:2 x:1 可读可写不可执行 rw- 6 可读可写可执行 rwx 7 chmod 777 [文件名] 文件赋予用户可读可写可执行!
每种身份(owner/group/others)各自的三个权限(r/w/x)分数是需要累加的,例如当权限为:[ -rwxrwx ]--- 分数则是:
- owner = rwx = 4+2+1 = 7
- group = rwx = 4+2+1 = 7
- others= --- = 0+0+0 = 0
chmod 770 filename
可以自己下去多进行测试!
文件内容查看
我们会经常使用到文件查看!
Linux系统中使用以下命令来查看文件的内容:
- cat 由第一行开始显示文件内容,用来读文章,或者读取配置文件,都使用 cat 命令
- tac 从最后一行开始显示,可以看出tac是cat倒着写!
[root@iZwz94pp1jlrh60g51w9b8Z network-scripts]# ifconfig eth0: flags=4163<UP,BROADCAST,RUNNING,MULTICAST> mtu 1500 inet 172.17.69.40 netmask 255.255.240.0 broadcast 172.17.79.255 inet6 fe80::216:3eff:fe08:b1ff prefixlen 64 scopeid 0x20<link> ether 00:16:3e:08:b1:ff txqueuelen 1000 (Ethernet) RX packets 483319 bytes 634469009 (605.0 MiB) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 181652 bytes 53264870 (50.7 MiB) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 lo: flags=73<UP,LOOPBACK,RUNNING> mtu 65536 inet 127.0.0.1 netmask 255.0.0.0 inet6 ::1 prefixlen 128 scopeid 0x10<host> loop txqueuelen 1000 (Local Loopback) RX packets 194 bytes 11737 (11.4 KiB) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 194 bytes 11737 (11.4 KiB) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 [root@iZwz94pp1jlrh60g51w9b8Z network-scripts]# cat ifcfg-eth0 # Created by cloud-init on instance boot automatically, do not edit. # If you don't want cloud-init genrated automatically,you can disable it in /etc/cloud/cloud.cfg # For more information, please refer to: https://help.aliyun.com/document_detail/57803.html # BOOTPROTO=dhcp DEVICE=eth0 ONBOOT=yes STARTMODE=auto TYPE=Ethernet USERCTL=no [root@iZwz94pp1jlrh60g51w9b8Z network-scripts]# tac ifcfg-eth0 USERCTL=no TYPE=Ethernet STARTMODE=auto ONBOOT=yes DEVICE=eth0 BOOTPROTO=dhcp # # For more information, please refer to: https://help.aliyun.com/document_detail/57803.html # If you don't want cloud-init genrated automatically,you can disable it in /etc/cloud/cloud.cfg # Created by cloud-init on instance boot automatically, do not edit.
- nl 显示的时候,顺道输出行号!看代码的时候,希望显示行号!
- more 一页一页地显示文件内容,带余下内容的(空格代表翻页,enter 代表向下看一行,:f 行号)
- less 与 more 类似,但是比 more 更好的是,它可以往前翻页!(空格翻页,pageDown,pageUp键代表翻动页面!退出 q 命令,查找字符串 / 要查询的字符向下查询,向上查询使用 ? 要查询的字符串,n 继续搜寻下一个,N向上寻找!)
- head 只看头几行 通过 -n 参数来控制显示几行!
- tail 只看尾巴几行 -n 参数 要查看几行!
你可以使用 man [命令] 来查看各个命令的使用文档,如:man cp。
网络配置目录:cd/etc/sysconfig/
ifconfig 命令查看网络配置!