專案環境搭建

2021-08-16 21:01:25 字數 1040 閱讀 5048

1、安裝資料庫:輸入資料庫例項名(一般預設orcl)、資料庫管理員密碼(自定義oracle);

2、plsql登陸,本機連orcl,使用者名稱sys或system,密碼oracle(他機連本機:建tnsname)

3、建表空間:

create tablespace tcis_indx datafile 'c:\oracle\oradata\tcis\tcisindex.dbf' size 200m;    

create tablespace tcis_data datafile 'c:\oracle\oradata\tcis\tcisdata.dbf' size 200m;

建使用者hkct、密碼hkct:

create user hkct identified by hkct     

default tablespace tcis_data     

temporary tablespace temp

profile default;     

grant connect to hkct with admin option;     

grant dba to hkct with admin option;     

grant resource to hkct with admin option;     

grant unlimited tablespace to hkct with admin option;

也可以執行指令碼1;

4、導表

imp hkct/hkct@orcl fromuser='hkct' touser= 'hkct' file='tcis.dmp' log='exptcis.log'
執行指令碼2;

5、安裝eos6.5:輸入資料庫伺服器ip、埠、資料庫例項名(orcl)、使用者名稱(hkct)、密碼(hkct)並初始化資料庫,完成;(eos自帶應用伺服器tomcat)

6、匯入源**;

7、部署並啟動服務;

專案環境搭建

python3.6 django 1.11 1.1 採用apt方式安裝 建議方案 在ubuntu 16.04版本中,系統預設安裝了python 2.7和3.5版本,因為系統本身用到python的程式,刪除預設的版本又擔心系統有問題,那有沒有辦法同時在安裝和使用python 3.6版本呢?1 配置軟體...

Weex專案環境搭建

官方指導 node.js需要4.0 4.改變原有的環境變數,1 我們要先配置npm的全域性模組的存放路徑以及cache的路徑,例如我希望將以上兩個資料夾放在nodejs的主目錄下,便在nodejs下建立 node global 及 node cache 兩個資料夾,輸入以下命令改變npm配置 1.n...

Vue專案環境搭建

參考 1 安裝及執行 全域性安裝 vue cli cnpm install global vue cli 版本2 建立乙個基於 webpack 模板的新專案 vue init webpack my project 這裡需要進行一些配置,預設回車即可 cd my project cnpm instal...