這篇文章將為大家詳細(xì)講解有關(guān)Redash中文商業(yè)版Centos7本地部署的示例分析,小編覺得挺實(shí)用的,因此分享給大家做個(gè)參考,希望大家閱讀完這篇文章后可以有所收獲。
創(chuàng)新互聯(lián)建站憑借專業(yè)的設(shè)計(jì)團(tuán)隊(duì)扎實(shí)的技術(shù)支持、優(yōu)質(zhì)高效的服務(wù)意識(shí)和豐厚的資源優(yōu)勢(shì),提供專業(yè)的網(wǎng)站策劃、做網(wǎng)站、成都網(wǎng)站建設(shè)、網(wǎng)站優(yōu)化、軟件開發(fā)、網(wǎng)站改版等服務(wù),在成都十多年的網(wǎng)站建設(shè)設(shè)計(jì)經(jīng)驗(yàn),為成都數(shù)千家中小型企業(yè)策劃設(shè)計(jì)了網(wǎng)站。
一.安裝前準(zhǔn)備
1. 、進(jìn)入源文件目錄下: cd /etc/yum.repos.d/
2. 、備份原版本yum文件: sudo mv /etc/yum.repos.d/CentOS-Base.repo /etc/yum.repos.d/CentOS-Base.repo.backup
3. 、下載阿里yum源文件作為默認(rèn)源文件:sudowget -O /etc/yum.repos.d/CentOS-Base.repo http://mirrors.aliyun.com/repo/Centos-7.repo
3. 、清理原緩存: sudo yum clean all
4. 、建立緩存以后方便緩存中搜索: sudo yum makecache
5. 、更新系統(tǒng)包: sudo yum update -y
6. 、安裝常用包: sudo yum -y install gccgcc-c++ kernel-devel make zlibzlib-devellibffi-developenssl-devel git python3-devel postgresql-devel*
7. 、進(jìn)入root用戶下修改當(dāng)前用戶添加到root組:
su -
sudo usermod -g root 當(dāng)前centos用戶名
二.安裝PostgreSql9.6
1. 、安裝postgresql源:sudo yum install –y https://download.postgresql.org/pub/repos/yum/9.6/redhat/rhel-7-x86_64/pgdg-redhat-repo-42.0-11.noarch.rpm
2. 、安裝postgresql6客戶端: sudo yum install -y postgresql96
3. 、安裝postgresql6服務(wù)端: sudo yum install -y postgresql96-server
4. 、初始化: sudo/usr/pgsql-9.6/bin/postgresql96-setup initdb
5. 、設(shè)置開機(jī)自啟: sudosystemctl enable postgresql-9.6
6. 、啟動(dòng)postgresql9.6服務(wù): sudosystemctl start postgresql-9.6
7. 、進(jìn)入postgresql數(shù)據(jù)庫(kù)進(jìn)行初步配置 :
sudo -u postgrespsql alter user postgres with password '此處填寫登陸密碼';
create role 當(dāng)前centos用戶名;
alter role 當(dāng)前centos用戶名 login;
\q
三. 安裝redis
1. 、下載fedora的epel倉(cāng)庫(kù): sudo yum install epel-release -y
2. 、安裝: sudo yum install redis
3. 、啟動(dòng)redis: sudosystemctl start redis
4. 、設(shè)置開機(jī)自啟: sudosystemctl enable redis.service
四.安裝Nodejs
1. 、sudo yum install nodejs –y
2. 、sudo npm config set registry https://registry.npm.taobao.org
3. 、sudo npm install n -g
4. 、sudo n stable
五. 安裝python3
1. 、sudo yum -y groupinstall "Development tools"
2. 、sudo yum -y install zlib-devel bzip2-devel openssl-develncurses-develsqlite-develreadline-develtk-develgdbm-devel db4-devel libpcap-devel xz-devel python3-devel
3. 、sudo wget https://www.python.org/ftp/python/3.6.2/Python-3.6.2.tar.xz
4. 、sudo mkdir /usr/local/python3
5. 、tar -xvJf Python-3.6.2.tar.xz
6. 、cd Python-3.6.2
7. 、./configure --prefix=/usr/local/python3
8. 、sudo make &&sudo make install
9. 、sudo vi /etc/profile加入以下環(huán)境變量:
PATH=$PATH:/usr/local/python3/bin
10. 、使環(huán)境變量生效:source /etc/profile
11. 、echo $PATH 驗(yàn)證是否生效
六.安裝Redash中文商業(yè)版源碼:
1. 、下載代碼:git clone https://github.com/dazdata/redash.git && cd redash
2. 、更換國(guó)內(nèi)源: npm config set registry https://registry.npm.taobao.org
3. 、查看當(dāng)前源: npm config get registry
4. 、前端安裝依賴包: npm install
5. 、前端打包:npm run build
6. 、配置pip國(guó)內(nèi)源:sudo cp pip.conf /etc/pip.conf
7. 、安裝Python虛擬環(huán)境:sudo pip3 install virtualenv
8. 、創(chuàng)建Python虛擬環(huán)境:virtualenv venv
9. 、激活Python虛擬環(huán)境:source venv/bin/activate
10. 、安裝Pip包:
sudo pip3 install --upgrade pip
sudo pip3 install psycopg2-binary
sudo pip3 install -r requirements.txt -r requirements_dev.txt -r requirements_bundles.txt
11. 、初始化數(shù)據(jù)庫(kù)表結(jié)構(gòu):./manage.py database create_tables
12. 、退出虛擬環(huán)境,安裝完成:deactivate
七.啟動(dòng)和配置
分別打開三個(gè)終端,都執(zhí)行cd redash進(jìn)入目錄后分別執(zhí)行下列三命令之一:
第一個(gè)終端:
source venv/bin/activate
./manage.py runserver --debugger --reload
第二個(gè)終端:
source venv/bin/activate
./manage.py rq worker
第三個(gè)終端:
source venv/bin/activate
./manage.py rq scheduler
打開瀏覽器,輸入地址:http://localhost:5000
每次終端啟動(dòng)運(yùn)行一個(gè)服務(wù)。若需要停止服務(wù),直接按Ctrl+C鍵,執(zhí)行 deactivate退出python虛擬環(huán)境。
關(guān)于“Redash中文商業(yè)版Centos7本地部署的示例分析”這篇文章就分享到這里了,希望以上內(nèi)容可以對(duì)大家有一定的幫助,使各位可以學(xué)到更多知識(shí),如果覺得文章不錯(cuò),請(qǐng)把它分享出去讓更多的人看到。
新聞名稱:Redash中文商業(yè)版Centos7本地部署的示例分析
網(wǎng)站URL:http://muchs.cn/article48/iegihp.html
成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供微信公眾號(hào)、網(wǎng)站排名、云服務(wù)器、做網(wǎng)站、域名注冊(cè)、網(wǎng)站設(shè)計(jì)公司
聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請(qǐng)盡快告知,我們將會(huì)在第一時(shí)間刪除。文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如需處理請(qǐng)聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時(shí)需注明來(lái)源: 創(chuàng)新互聯(lián)