centos前端環境安裝

2022-03-04 09:08:17 字數 3609 閱讀 5215

許多朋友不清楚自己是否有資料盤需要掛載(雖然購買時自己買沒買你應該知道的,但還是有人不知道啊),那麼你應該在linux伺服器上使用使用「fdisk -l」命令檢視。如下圖:若您執行fdisk -l命令,發現沒有 /dev/xvdb 標明您的雲服務無資料盤,那麼您無需進行掛載,此時該教程對您不適用

yum -y update更新相關安裝包

說明:/mnt/openresty 是openresty安裝目錄

make && make install
source  /etc/profile (使修改的環境變數生效)
[unit]

description=nginx

after=network.target

[service]

type=forking

execstart=/mnt/openresty/nginx/sbin/nginx

execreload=/mnt/openresty/nginx/sbin/nginx -s reload

execstop=/mnt/openresty/nginx/sbin/nginx -s quit

privatetmp=true

[install]

wantedby=multi-user.target

引數說明

description:描述服務

after:描述服務類別

[service]服務執行引數的設定

type=forking是後台執行的形式

execstart為服務的具體執行命令

execreload為重啟命令

execstop為停止命令

privatetmp=true表示給服務分配獨立的臨時空間

注意:[service]的啟動、重啟、停止命令全部要求使用絕對路徑

[install]執行級別下服務安裝的相關設定,可設定為多使用者,即系統執行級別為3

systemctl enable nginx.service(開機啟動)

systemctl disable nginx.service (開機禁用)

檢查配置檔案nginx.conf檔案的正確性命令 nginx -t檢測正確性

yum -y update

1.curl -sl | bash -

2.yum install -y nodejs

3.npm install pm2 -g

yum install -y git
1.ssh-keygen -t rsa -c "[email protected]"

2.三次回車直接使用預設值

3.cd ~/.ssh

4.cat id_rsa.pub 複製內容到gitee上

1.在專案的package.json中script加入 "pm2": "pm2 start npm --name 'pc_hhb' -- run start"

2.npm run pm2

以hhb的前端專案為例子,進入/mnt/openresty/nginx/conf/ 新加入 vhost資料夾,所有的新的配置都放在這裡。

## www.cbi360.net_hhb.conf內容 

}#新增蜘蛛重定向

location ^~ /hhb

location /

#新增健康檢測

include vhost/www.cbi360.net_hhb_monitor.conf;

}

進入/mnt/openresty/nginx/conf/ 找到nginx.conf

#這裡一定要加root 不然自定義日誌不會生效

user root;

worker_processes 4;

events

http

新增埠 返回 success 代表成功(--permanent永久生效,沒有此引數重啟後失效)

//單個開放

firewall-cmd --zone=public --add-port=80/tcp --permanent

firewall-cmd --zone=public --add-port=443/tcp --permanent

//批量開放

firewall-cmd --zone=public --add-port=80-85/tcp --permanent

//關閉埠

firewall-cmd --zone=public --remove-port=443/tcp --permanent

//過載

firewall-cmd --reload

CENTOS64bit安裝前端開發環境

1.檢視系統版本 uname a linux vm11060057 2.6.18 164.el5 1 smp thu sep 3 03 28 30 edt 2009 x86 64 x86 64 x86 64 gnu linux head n 1 etc issue centos release 5....

centos安裝桌面環境

我們安裝gnome,但是在centos 6裡,gnome已經被改為desktop了 yum disablerepo enablerepo c6 media groupinstall desktop 當然也可以看下有沒有 groupinstall 改為 grouplist 安裝好了gnome,還需安裝...

CentOS 安裝Perl環境

1 安裝perl環境 yum install perl 這個命令基本上把perl的模組給安裝齊了。yum install cpan cpan這個就不用說了吧,大家都懂。如果你對perl模組版本要求比較高,希望是新版的那麼請按照一下安裝 yum install perl yum install cpa...