Linux系統(tǒng)運維基礎(chǔ)6

1裂明、自建yum倉庫,分別為網(wǎng)絡(luò)源和本地源

網(wǎng)絡(luò)源

#備份原有yum配置文件

cd /etc/yum.repo.d

mkdir bak

mv?*.repo?bak/

上傳163源

cat CentOS7-Base-163.repo

# CentOS-Base.repo

#

# The mirror system uses the connecting IP address of the client and the

# update status of each mirror to pick mirrors that are updated to and

# geographically close to the client.? You should use this for CentOS updates

# unless you are manually picking other mirrors.

#

# If the mirrorlist= does not work for you, as a fall back you can try the

# remarked out baseurl= line instead.

#

#

[base]

name=CentOS-$releasever - Base - 163.com

#mirrorlist=http://mirrorlist.centos.org/?release=$releasever&arch=$basearch&repo=os

baseurl=http://mirrors.163.com/centos/$releasever/os/$basearch/

gpgcheck=1

gpgkey=http://mirrors.163.com/centos/RPM-GPG-KEY-CentOS-7

#released updates

[updates]

name=CentOS-$releasever - Updates - 163.com

#mirrorlist=http://mirrorlist.centos.org/?release=$releasever&arch=$basearch&repo=updates

baseurl=http://mirrors.163.com/centos/$releasever/updates/$basearch/

gpgcheck=1

gpgkey=http://mirrors.163.com/centos/RPM-GPG-KEY-CentOS-7

#additional packages that may be useful

[extras]

name=CentOS-$releasever - Extras - 163.com

#mirrorlist=http://mirrorlist.centos.org/?release=$releasever&arch=$basearch&repo=extras

baseurl=http://mirrors.163.com/centos/$releasever/extras/$basearch/

gpgcheck=1

gpgkey=http://mirrors.163.com/centos/RPM-GPG-KEY-CentOS-7

#additional packages that extend functionality of existing packages

[centosplus]

name=CentOS-$releasever - Plus - 163.com

baseurl=http://mirrors.163.com/centos/$releasever/centosplus/$basearch/

gpgcheck=1

enabled=0

gpgkey=http://mirrors.163.com/centos/RPM-GPG-KEY-CentOS-7


yum clean all

yum makecache


本地源

#創(chuàng)建

mkdir /mnt/cdrom

mount /dev/cdrom /mnt/cdrom

cp /mnt/cdrom/Packages/* /mnt/yum

#建倉庫

createrepo -v /mnt/yum

#在網(wǎng)絡(luò)源前面添加

[base-local]

name=Centos

baseurl=file:///mnt/yum

enable=1

gpgckeck=0

測試

yum repolist已加載插件:fastestmirror, langpacksRepository base is listed more than once in the configurationLoading mirror speeds from cached hostfile * base: mirrors.aliyun.com * extras: mirrors.aliyun.com * updates: mirrors.aliyun.com源標識? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? 源名稱? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? 狀態(tài)base/7/x86_64? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? CentOS-7 - Base - mirrors.aliyun.com? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? 10,097base-local? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? Centos? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? 4,021extras/7/x86_64? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? CentOS-7 - Extras - mirrors.aliyun.com? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? 307updates/7/x86_64? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? CentOS-7 - Updates - mirrors.aliyun.com? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? 1,010repolist: 15,435


2倾贰、編譯安裝http2.4县习,實現(xiàn)可以正常訪問沟启,并將編譯步驟和結(jié)果提交三娩。

cd /data/

tar -xvf httpd-2.4.46.tar.bz2

yum install gcc openssl-devel pcre-devel apr-devel apr-util-devel

cd /data/httpd-2.4.46/

mkdir -p /apps/httpd24

mkdir -p /etc/httpd

./configure --prefix=/apps/httpd24 --sysconfdir=/etc/httpd? --enable-ssl? --enable-so

make && make install

/apps/httpd24/bin/apachectl start

報錯

AH00558: httpd: Could not reliably determine the server's fully qualified domain name, using fe80::9186:9ae5:e200:c1d6. Set the 'ServerName' directive globally to suppress this message

解決

cd /etc/httpd/

vi httpd.conf

#ServerName www.example.com:80

改成(去掉注釋)

ServerName www.example.com:80

/apps/httpd24/bin/apachectl start


3、利用sed 取出ifconfig命令中本機的IPv4地址

ifconfig |sed -nr '2s/^[^0-9]+([0-9.]+).*/\1/p'

10.0.0.77


4抑钟、刪除/etc/fstab文件中所有以#開頭涯曲,后面至少跟一個空白字符的行的行首的#和空白字符

cat /etc/fstab |sed -r 's/^#\ ?(.*)/\1/'|sed '/^$/d'

/etc/fstab

Created by anaconda on Sun Jul 26 16:55:01 2020

Accessible filesystems, by reference, are maintained under '/dev/disk'

See man pages fstab(5), findfs(8), mount(8) and/or blkid(8) for more info

/dev/mapper/centos_mobanji01-root /? ? ? ? ? ? ? ? ? ? ? xfs? ? defaults? ? ? ? 0 0

UUID=95be88d4-4459-4996-a8cf-6d2fa2aa6344 /boot? ? ? ? ? ? ? ? ? xfs? ? defaults? ? ? ? 0 0

/dev/mapper/centos_mobanji01-swap swap? ? ? ? ? ? ? ? ? ? swap? ? defaults? ? ? ? 0 0


5、處理/etc/fstab路徑,使用sed命令取出其目錄名和基名

目錄名

echo /etc/fstab | sed -nr 's@^(.*)/([^/]+)/?$@\1@p'

/etc

基名

echo /etc/fstab | sed -nr 's@^(.*)/([^/]+)/?$@\2@p'

fstab

?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
  • 序言:七十年代末味赃,一起剝皮案震驚了整個濱河市掀抹,隨后出現(xiàn)的幾起案子,更是在濱河造成了極大的恐慌心俗,老刑警劉巖傲武,帶你破解...
    沈念sama閱讀 211,948評論 6 492
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件,死亡現(xiàn)場離奇詭異城榛,居然都是意外死亡揪利,警方通過查閱死者的電腦和手機,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 90,371評論 3 385
  • 文/潘曉璐 我一進店門狠持,熙熙樓的掌柜王于貴愁眉苦臉地迎上來疟位,“玉大人,你說我怎么就攤上這事喘垂√鹂蹋” “怎么了?”我有些...
    開封第一講書人閱讀 157,490評論 0 348
  • 文/不壞的土叔 我叫張陵正勒,是天一觀的道長得院。 經(jīng)常有香客問我,道長章贞,這世上最難降的妖魔是什么祥绞? 我笑而不...
    開封第一講書人閱讀 56,521評論 1 284
  • 正文 為了忘掉前任,我火速辦了婚禮,結(jié)果婚禮上蜕径,老公的妹妹穿的比我還像新娘两踏。我一直安慰自己,他們只是感情好兜喻,可當我...
    茶點故事閱讀 65,627評論 6 386
  • 文/花漫 我一把揭開白布梦染。 她就那樣靜靜地躺著,像睡著了一般虹统。 火紅的嫁衣襯著肌膚如雪弓坞。 梳的紋絲不亂的頭發(fā)上,一...
    開封第一講書人閱讀 49,842評論 1 290
  • 那天车荔,我揣著相機與錄音,去河邊找鬼戚扳。 笑死忧便,一個胖子當著我的面吹牛,可吹牛的內(nèi)容都是我干的浑度。 我是一名探鬼主播田巴,決...
    沈念sama閱讀 38,997評論 3 408
  • 文/蒼蘭香墨 我猛地睜開眼檐迟,長吁一口氣:“原來是場噩夢啊……” “哼!你這毒婦竟也來了蒂教?” 一聲冷哼從身側(cè)響起,我...
    開封第一講書人閱讀 37,741評論 0 268
  • 序言:老撾萬榮一對情侶失蹤脆荷,失蹤者是張志新(化名)和其女友劉穎凝垛,沒想到半個月后,有當?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體蜓谋,經(jīng)...
    沈念sama閱讀 44,203評論 1 303
  • 正文 獨居荒郊野嶺守林人離奇死亡梦皮,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點故事閱讀 36,534評論 2 327
  • 正文 我和宋清朗相戀三年,在試婚紗的時候發(fā)現(xiàn)自己被綠了桃焕。 大學時的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片剑肯。...
    茶點故事閱讀 38,673評論 1 341
  • 序言:一個原本活蹦亂跳的男人離奇死亡,死狀恐怖观堂,靈堂內(nèi)的尸體忽然破棺而出让网,到底是詐尸還是另有隱情,我是刑警寧澤师痕,帶...
    沈念sama閱讀 34,339評論 4 330
  • 正文 年R本政府宣布溃睹,位于F島的核電站,受9級特大地震影響七兜,放射性物質(zhì)發(fā)生泄漏丸凭。R本人自食惡果不足惜,卻給世界環(huán)境...
    茶點故事閱讀 39,955評論 3 313
  • 文/蒙蒙 一、第九天 我趴在偏房一處隱蔽的房頂上張望惜犀。 院中可真熱鬧铛碑,春花似錦、人聲如沸虽界。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,770評論 0 21
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽莉御。三九已至撇吞,卻和暖如春,著一層夾襖步出監(jiān)牢的瞬間礁叔,已是汗流浹背牍颈。 一陣腳步聲響...
    開封第一講書人閱讀 32,000評論 1 266
  • 我被黑心中介騙來泰國打工, 沒想到剛下飛機就差點兒被人妖公主榨干…… 1. 我叫王不留琅关,地道東北人煮岁。 一個月前我還...
    沈念sama閱讀 46,394評論 2 360
  • 正文 我出身青樓,卻偏偏與公主長得像涣易,于是被迫代替她去往敵國和親画机。 傳聞我的和親對象是個殘疾皇子,可洞房花燭夜當晚...
    茶點故事閱讀 43,562評論 2 349

推薦閱讀更多精彩內(nèi)容