linux下檢視系統資訊
# uname --help
usage: uname [
option].
..print certain system information. with no option
, same as
-s.-a,
--all print all information, in the following order,
except omit -p and
-i if unknown:
-s,--kernel-name print the kernel name
-n,--nodename print the network node hostname
-r,--kernel-release print the kernel release
-v,--kernel-version print the kernel version
-m,--machine print the machine hardware name
-p,--processor print the processor type (non-portable)
-i,--hardware-platform print the hardware platform (non-portable)
-o,--operating-system print the operating system
--help display this help and exit
--version output version information and exit
# uname -s 核心
linux
root@izbp1hxtmn3a1etzuczekrz:/# uname -n 網路節點主機名稱
izbp1hxtmn3a1etzuczekrz
# uname -r 核心發行版
4.4.0-146-generic
# uname -v 核心版本
#172-ubuntu smp wed apr 3 09:00:08 utc 2019
# uname -m 機器硬體名稱
x86_64
# uname -p 處理器型別
x86_64
# uname -i 硬體平台
x86_64
# uname -o 作業系統
gnu/linux
檢視核心版本、系統資訊(常用三種辦法)
# uname -a
linux izbp1hxtmn3a1etzuczekrz 4.4.0-146-generic #172-ubuntu smp wed apr 3 09:00:08 utc 2019 x86_64 x86_64 x86_64 gnu/linux
root@izbp1hxtmn3a1etzuczekrz:/# more /etc/issue
ubuntu 16.04.6 lts \n \l
# more /proc/version
linux version 4.4.0-146-generic (buildd@lcy01-amd64-025) (gcc version 5.4.0 20160609 (ubuntu 5.4.0-6ubuntu1~16.04.10) ) #172-ubuntu smp wed apr 3
09:00:08 utc 2019
# cat /proc/version
linux version 4.4.0-146-generic (buildd@lcy01-amd64-025) (gcc version 5.4.0 20160609 (ubuntu 5.4.0-6ubuntu1~16.04.10) ) #172-ubuntu smp wed apr 3 09:00:08 utc 2019
檢視apache2
# apache2 -version
server version: apache/2.4.18 (ubuntu)
server built: 2019-04-03t13:34:47
# apache2 -v
server version: apache/2.4.18 (ubuntu)
server built: 2019-04-03t13:34:47
檢視php
# php -version
php 7.0.33-0ubuntu0.16.04.5 (cli) ( nts )
# php -v
php 7.0.33-0ubuntu0.16.04.5 (cli) ( nts )
檢視mysql注意:v大寫
# mysql -v
# mysql -version
檢視redis
# redis-server --version
redis server v=3.0.6 sha=00000000:0 malloc=jemalloc-3.6.0 bits=64 build=28b6715d3583bf8e
# redis-cli -v
redis-cli 3.0.6
ubuntu 下安裝redis
$sudo apt-get update
$sudo apt-get install redis-server
清屏
第一種:
# clear
第二種 ctrl+l(鍵盤操作)
以上命令會重新整理螢幕,本質上只是讓終端顯示頁向後翻了一頁,如果向上滾動螢幕還可以看到之前的操作資訊
第三種:
# reset
該命令將完全重新整理終端螢幕,之前的終端輸入操作資訊將都會被清空
Nodejs搭建伺服器的那些事兒?
搭建伺服器最先是http協議 我們不用自己寫,應用進來就行 其中listen 括號中的是埠 http提供了一種方法createserver function req,res 用來創造乙個伺服器 那麼我們要了解我們從網頁上的來的資料有兩個請求 get 和post get請求被鑲在路徑中,那麼我們獲取他...
隨筆 聊一聊伺服器的那些事兒
今天和乙個搞前端的同學聊天,他認為的伺服器貌似和我們開發的時候的伺服器不一樣,正好藉著這個機會聊聊什麼是伺服器 大家眼中的伺服器是什麼樣子的。也就是大家心目中最常見的機房的形象,專門的環境和人員對大型伺服器進行管理。而在運維的同學眼中可能是這樣的 特點 企業購買或者租用伺服器,需要配備專門的運維人員...
聊一下伺服器上OOM的那些事兒
為什麼今天來討論這個話題呢?因為昨天遇到乙個大坑,其實也不是算大坑吧,就是一件特別奇怪的事兒。不多bb,直接上圖,在我提交sparksql和datax同步任務的時候發現部分任務報錯如下 部分任務oom了,所在機器配置是物理記憶體為32g,我提交了20個任務.datax同步任務有最大使用記憶體限制為1...