人妻无码中文字幕永久在线,99RE6这里有精品热视频,国产成人综合色就色综合 ,蜜臀av在线观看

新聞建站cms系統(tǒng)、政府cms系統(tǒng)定制開發(fā)

廣州網(wǎng)站建設公司-閱速公司

asp.net新聞發(fā)布系統(tǒng)、報紙數(shù)字報系統(tǒng)方案
/
http://www.jdki.com.cn/
廣州網(wǎng)站建設公司
您當前位置:首頁>博客日記

博客日記

Linux系統(tǒng)安裝數(shù)字報刊系統(tǒng)

發(fā)布時間:2019/11/22 11:37:42  作者:Admin  閱讀:884  

廣告:

53BK電子報刊系統(tǒng)支持的系統(tǒng)環(huán)境:

硬件最低配置:2核cpu,2G內(nèi)存,30G硬盤,2M獨享網(wǎng)速

Linux系統(tǒng)支持的版本范圍:
RHEL 7.3、7.4、7.5、7.6 (商業(yè)版Red Hat Enterprise Linux7.3、7.4、7.5、7.6和社區(qū)版CentOS 7.3、7.4、7.5 、 7.6)
Ubuntu 16.04 (桌面發(fā)行版和服務器版)以上版本
SLES v12 SP2、SP3 或 SP4(SUSE Enterprise Linux Server v12 SP2、SP3 或 SP4 )

服務器需要開放端口:80、22、3389
Linux系統(tǒng)登錄用戶名一般默認為:root

服務器需要安裝環(huán)境及軟件:

1. 軟件:mono 3.8 、xsp3.8、nginx-1.16.1
2. 數(shù)據(jù)庫:sql server 2017 for linux、sql server 2019 for linux
3. 53BK數(shù)字報刊系統(tǒng)V6.1 官網(wǎng)下載:http://www.53bk.com/

軟件下載地址:
mono 3.8:
http://download.mono-project.com/sources/mono/
http://download.mono-project.com/sources/mono/mono-3.8.0.tar.bz2
xsp3.8:
http://download.mono-project.com/sources/xsp/
http://download.mono-project.com/sources/xsp/xsp-3.8.tar.gz
nginx-1.16.1:
http://nginx.org/en/download.html
http://nginx.org/download/nginx-1.16.1.tar.gz
sql server 2017 for linux:
https://packages.microsoft.com/yumrepos/mssql-server-2017-rhel7/
https://packages.microsoft.com/yumrepos/mssql-server-2017-rhel7/mssql-server-14.0.3238.1-19.x86_64.rpm

一、Windows系統(tǒng)下控制Linux服務器
1. 控制臺遠程登錄軟件(僅支持控制臺型):putty軟件:putty-64bit-0.7 ssh登錄,需要開放 22端口 。下載地址: (請在"普通下載地址:"下面下載)
2. 上傳下載服務器文件軟件:WinSCP軟件:WinSCP5144 ssh登錄,需要開放 22端口。下載地址:http://www.onlinedown.net/soft/20088.htm (請在"普通下載地址:"下面下載)
3. win10遠程連接控制Linux服務器(桌面型):需要開放3389端口
請參照: windows 10 如何遠程連接 centos 7.6(通過xrdp)詳情: http://www.jdki.com.cn/news/detail/20630.html
4. 遠程登錄成功,先不要更改系統(tǒng)語言,請保持英文界面。等安裝好sql server數(shù)據(jù)庫后,再更改系統(tǒng)語言。否則 sql server 2017 for linux 可能安裝不成功。

二、安裝mono3.8.0
Mono是Xamarin資助的一個項目,是微軟的.NET框架的開源實現(xiàn)。
mono3.8.0安裝請參照:Linux系統(tǒng)(centos7.6)安裝mono 詳情: http://www.jdki.com.cn/news/detail/20634.html

三、安裝XSP3.8
xsp ,一個mono提供的web服務器 ,運行asp.net應用程序。
Linux系統(tǒng)(centos7.6)安裝XSP3.8 詳情:http://www.jdki.com.cn/news/detail/20635.html
啟用 fastcgi.service服務

# systemctl stop fastcgi.service #停止服務
# systemctl start fastcgi.service #啟動服務
# systemctl restart fastcgi.service #重新啟動服務

四、安裝Web服務器:nginx-1.16.1
Linux系統(tǒng)(centos7.6)安裝Web服務器nginx-1.16.1 詳情:http://www.jdki.com.cn/news/detail/20637.html
配置nginx: vi /etc/nginx/conf.d/default.conf

location / {
root /var/www/html;
index index.html index.htm;
autoindex on;
}

改成:

location / { #請求的url過濾,正則匹配,~為區(qū)分大小寫,~*為不區(qū)分大小寫。 
#root /usr/share/nginx/html;
#index index.html index.htm;
root /var/www/html/;
#index index.html index.htm;
charset utf-8; #網(wǎng)站設為utf-8編碼
fastcgi_pass 127.0.0.1:9000;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
#fastcgi_index Default.aspx;
autoindex on; 
#fastcgi_keep_conn on; 
#fastcgi_read_timeout=150; 
#fastcgi_send_timeout=150; 
#fastcgi_buffers 8 32k;
#fastcgi_buffer_size 32k; 
include fastcgi_params; 
}

同目錄新建文件:fastcgi_params

vi /etc/nginx/conf.d/fastcgi_params

fastcgi_param PATH_INFO "";
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;

reboot 重啟服務器瀏覽效果 /var/www/html 新建測試文件
啟用nginx.service服務.
service nginx restart

附加:
查看服務器已開啟的端口 netstat -lntp

五、安裝數(shù)據(jù)庫:sql server 2017 for linux
Linux系統(tǒng)(centos7.6)安裝sql server 2017 for linux 詳情:http://www.jdki.com.cn/news/detail/20638.html

六、設置 Linux系統(tǒng)顯示中文
Linux系統(tǒng)(centos7)如何顯示中文 詳情:http://www.jdki.com.cn/news/detail/20639.html

七、安裝數(shù)字報刊系統(tǒng)
1. 用WinSCP上傳壓縮包到/var/www/html目錄下面。然后在服務器上解壓,把paperweb里面文件全部移到 /var/www/html根目錄下面。
2. 用sql server 2017 命令行工具新建一個數(shù)據(jù)庫:newspaper sql語句: CREATE DATABASE newspaper
3. 配置config/53bknet.config里面數(shù)據(jù)庫連接字符串。
<add key="IsLinux" value="1" />
<add key="ConnectionString" value="Data Source=(local);Initial Catalog=newspaper;User ID=SA;Password=12345678;Connect Timeout=20;max pool size=500" />
4. yum install libgdiplus-devel (安裝完重啟計算機)
ln -s /usr/lib64/libgdiplus.so.0.0.0 /usr/lib64/libgdiplus.so
5. 在服務器瀏覽器上輸入網(wǎng)址:http://127.0.0.1/Install/Default.aspx 開始安裝53bk數(shù)字報刊系統(tǒng)

linux安裝數(shù)字報系統(tǒng)

常見錯誤 詳情: http://www.jdki.com.cn/news/detail/20640.html

廣告:

相關文章
Linux
數(shù)字報
cms新聞系統(tǒng)購買咨詢
掃描關注 廣州閱速軟件科技有限公司
掃描關注 廣州閱速科技