IT数码 购物 网址 头条 软件 日历 阅读 图书馆
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
图片批量下载器
↓批量下载图片,美女图库↓
图片自动播放器
↓图片自动播放器↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁
 
   -> 系统运维 -> linux之大数据定制篇 -> 正文阅读

[系统运维]linux之大数据定制篇

1.Shell编程

  • Linux运维工程师在进行服务器集群管理时,需要编写Shell程序来进行服务器管理。
  • 对于JavaEE和Python程序员来说,工作的需要,你的老大会要求你编写一些Shell脚本进行程序或者是服务器的维护,比如编写一个定时备份数据库的脚本。
  • 对于大数据程序员来说,需要编写Shell程序来管理集群。

1.1 shell脚本的执行方式

  • 脚本以#!/bin/bash开头
  • 脚本需要有可执行权限
  • 一般以.sh命名,当然后缀名不限制

编写一个shell脚本,输出“ hello world!”

[root@hadoop ~]# cd /home/shell
[root@hadoop shell]# vim myshell.sh  (见下图)

[root@hadoop shell]# ll
总用量 4
-rw-r--r--. 1 root root 32 3月  30 00:05 myshell.sh
[root@hadoop shell]# /home/shell/myshell.sh
-bash: /home/shell/myshell.sh: 权限不够

# sh+.sh不用授权能执行shell脚本,但是不推荐
[root@hadoop shell]# sh /home/shell/myshell.sh
hello world!

# 授权
[root@hadoop shell]# chmod 744 myshell.sh
[root@hadoop shell]# ll
总用量 4
-rwxr--r--. 1 root root 32 3月  30 00:05 myshell.sh
# 执行
[root@hadoop shell]# /home/shell/myshell.sh
hello world!

在这里插入图片描述

1.2 shell变量

Linux Shell中的变量分为:系统变量和用户自定义变量

1.2.1 系统变量

  • 系统变量:$HOME、$PWD、$SHELL、$USER等;
  • 显示当前shell中所有变量:set
    在这里插入图片描述
    输出系统变量
[root@hadoop shell]# vim myshell.sh
[root@hadoop shell]#  /home/shell/myshell.sh
PATH=/usr/lib64/qt-3.3/bin:/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin:/root/bin
USER=root

在这里插入图片描述

1.2.2 自定义变量

  • 定义变量:变量=值
  • 撤销变量:unset 变量
  • 声明静态变量:readonly变量,注意:不能unset
  • 变量名称可以由字母、数字和下划线组成,但是不能以数字开头。
  • 等号两侧不能有空格
  • 变量名称一般习惯为大写
[root@hadoop shell]# vim myshell.sh
[root@hadoop shell]#  /home/shell/myshell.sh
A=100
A=

在这里插入图片描述

# 声明静态的变量不能unset
[root@hadoop shell]# vim myshell.sh
[root@hadoop shell]#  /home/shell/myshell.sh
A=100
/home/shell/myshell.sh: line 9: unset: A: cannot unset: readonly variable
A=100

在这里插入图片描述

1.2.3 将命令的返回值赋给变量

在这里插入图片描述

[root@hadoop shell]# vim myshell.sh
[root@hadoop shell]#  /home/shell/myshell.sh
总用量 68 -rwxr-xr-x. 1 tom police 0 2月 21 23:19 abc.txt -rw-r--r--. 1 tom root 0 2月 21 19:27 apple.txt -rw-r--r--. 1 root police 1796 2月 17 21:43 a.txt -rw-r--r--. 1 root root 53 2月 18 11:03 hello.txt -rw-r--r--. 1 root root 142 2月 17 21:46 mycal -rw-r--r--. 1 root root 5685 2月 18 14:41 myhome.tar.gz -rw-r--r--. 1 root root 6510 2月 18 11:29 mypackage.zip -rwxr--r--. 1 root root 26 3月 3 19:39 mytask1.sh -rwxr--r--. 1 root root 49 3月 3 19:54 mytask2.sh -rwxr--r--. 1 root root 75 3月 3 22:22 mytask3.rh drwxr-xr-x. 3 root root 4096 3月 4 00:24 newdisk drwxr-xr-x. 2 root root 4096 3月 30 01:34 shell drwxr-xr-x. 3 root root 4096 3月 3 19:57 test drwx------. 4 tom police 4096 2月 22 01:07 tom -rw-r--r--. 1 root root 440 2月 25 01:07 to.txt drwx------. 4 tom police 4096 2月 15 18:07 xm drwx------. 5 zwj wudang 4096 3月 8 19:45 zwj

date=2022年 03月 30日 星期三 01:34:31 CST

在这里插入图片描述

1.3 设置环境变量

  系统运维 最新文章
配置小型公司网络WLAN基本业务(AC通过三层
如何在交付运维过程中建立风险底线意识,提
快速传输大文件,怎么通过网络传大文件给对
从游戏服务端角度分析移动同步(状态同步)
MySQL使用MyCat实现分库分表
如何用DWDM射频光纤技术实现200公里外的站点
国内顺畅下载k8s.gcr.io的镜像
自动化测试appium
ctfshow ssrf
Linux操作系统学习之实用指令(Centos7/8均
上一篇文章      下一篇文章      查看所有文章
加:2022-03-30 19:10:50  更:2022-03-30 19:11:25 
 
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁

360图书馆 购物 三丰科技 阅读网 日历 万年历 2024年11日历 -2024/11/15 23:52:08-

图片自动播放器
↓图片自动播放器↓
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
图片批量下载器
↓批量下载图片,美女图库↓
  网站联系: qq:121756557 email:121756557@qq.com  IT数码