centos7 安裝scala筆記

2021-08-14 11:49:33 字數 664 閱讀 7142

安裝scala

cd /soft

tar -zxvf scala-2.12.4.tgz -c /usr/local/

cd /usr/local/

環境變數:

echo "export scala_home=/usr/local/scala-2.12.4" >> /etc/profile

echo -e 'export path=$path:$scala_home/bin'>> /etc/profile

source /etc/profile

進入scala的shell環境:scala

hello world例子: object helloworld }

hello world呼叫方式: helloworld.main(array())

退出repl環境::q

如果要將scala scp到其他節點,(也即拷貝資料夾scala-2.12.4到目錄/usr/local/下):

sudo scp -r /usr/local/scala-2.12.4 node2:/usr/local/

sudo scp -r /usr/local/scala-2.12.4 node3:/usr/local/

scp過去以後,配置scala的環境變數即可。

Centos7筆記之Docker CE安裝

一 目標 centos7.6下安裝docker ce 二 平台 root hiibm uname r 3.10.0 957.el7.x86 64 root hiibm cat etc redhat release centos linux release 7.6.1810 core docker版本...

Centos7筆記之NFS服務安裝

一 目標 centos7下安裝nfs服務 二 平台 centos7.6 三 配置解析 1.軟體名 nsf 2.服務名 nsf server 3.配置檔案 etc exports 四 安裝nfs服務 1.yum install nfs y 安裝nfs服務 2.systemctl restart nfs...

centos7 安裝centos桌面

一 輸入命令 yum groupinstall gnome desktop graphical administration tools 二 設定系統啟動等級。systemctl get default 獲取當前系統執行形式,會顯示multi user.target 命令列終端 或者 graphic...