Linux系統(tǒng)安裝數(shù)字報(bào)刊系統(tǒng)
廣告:
53BK電子報(bào)刊系統(tǒng)支持的系統(tǒng)環(huán)境:
硬件最低配置:2核cpu,2G內(nèi)存,30G硬盤(pán),2M獨(dú)享網(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ā)行版和服務(wù)器版)以上版本
SLES v12 SP2、SP3 或 SP4(SUSE Enterprise Linux Server v12 SP2、SP3 或 SP4 )
服務(wù)器需要開(kāi)放端口:80、22、3389
Linux系統(tǒng)登錄用戶(hù)名一般默認(rèn)為:root
服務(wù)器需要安裝環(huán)境及軟件:
1. 軟件:mono 3.8 、xsp3.8、nginx-1.16.1
2. 數(shù)據(jù)庫(kù):sql server 2017 for linux、sql server 2019 for linux
3. 53BK數(shù)字報(bào)刊系統(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服務(wù)器
1. 控制臺(tái)遠(yuǎn)程登錄軟件(僅支持控制臺(tái)型):putty軟件:putty-64bit-0.7 ssh登錄,需要開(kāi)放 22端口 。下載地址: (請(qǐng)?jiān)?普通下載地址:"下面下載)
2. 上傳下載服務(wù)器文件軟件:WinSCP軟件:WinSCP5144 ssh登錄,需要開(kāi)放 22端口。下載地址:http://www.onlinedown.net/soft/20088.htm (請(qǐng)?jiān)?普通下載地址:"下面下載)
3. win10遠(yuǎn)程連接控制Linux服務(wù)器(桌面型):需要開(kāi)放3389端口
請(qǐng)參照: windows 10 如何遠(yuǎn)程連接 centos 7.6(通過(guò)xrdp)詳情: http://www.tjsimaide.com/news/detail/20630.html
4. 遠(yuǎn)程登錄成功,先不要更改系統(tǒng)語(yǔ)言,請(qǐng)保持英文界面。等安裝好sql server數(shù)據(jù)庫(kù)后,再更改系統(tǒng)語(yǔ)言。否則 sql server 2017 for linux 可能安裝不成功。
二、安裝mono3.8.0
Mono是Xamarin資助的一個(gè)項(xiàng)目,是微軟的.NET框架的開(kāi)源實(shí)現(xiàn)。
mono3.8.0安裝請(qǐng)參照:Linux系統(tǒng)(centos7.6)安裝mono 詳情: http://www.tjsimaide.com/news/detail/20634.html
三、安裝XSP3.8
xsp ,一個(gè)mono提供的web服務(wù)器 ,運(yùn)行asp.net應(yīng)用程序。
Linux系統(tǒng)(centos7.6)安裝XSP3.8 詳情:http://www.tjsimaide.com/news/detail/20635.html
啟用 fastcgi.service服務(wù)
# systemctl stop fastcgi.service #停止服務(wù) # systemctl start fastcgi.service #啟動(dòng)服務(wù) # systemctl restart fastcgi.service #重新啟動(dòng)服務(wù)
四、安裝Web服務(wù)器:nginx-1.16.1
Linux系統(tǒng)(centos7.6)安裝Web服務(wù)器nginx-1.16.1 詳情:http://www.tjsimaide.com/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 / { #請(qǐng)求的url過(guò)濾,正則匹配,~為區(qū)分大小寫(xiě),~*為不區(qū)分大小寫(xiě)。 #root /usr/share/nginx/html; #index index.html index.htm; root /var/www/html/; #index index.html index.htm; charset utf-8; #網(wǎng)站設(shè)為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 重啟服務(wù)器瀏覽效果 /var/www/html 新建測(cè)試文件
啟用nginx.service服務(wù).
service nginx restart
附加:
查看服務(wù)器已開(kāi)啟的端口 netstat -lntp
五、安裝數(shù)據(jù)庫(kù):sql server 2017 for linux
Linux系統(tǒng)(centos7.6)安裝sql server 2017 for linux 詳情:http://www.tjsimaide.com/news/detail/20638.html
六、設(shè)置 Linux系統(tǒng)顯示中文
Linux系統(tǒng)(centos7)如何顯示中文 詳情:http://www.tjsimaide.com/news/detail/20639.html
七、安裝數(shù)字報(bào)刊系統(tǒng)
1. 用WinSCP上傳壓縮包到/var/www/html目錄下面。然后在服務(wù)器上解壓,把paperweb里面文件全部移到 /var/www/html根目錄下面。
2. 用sql server 2017 命令行工具新建一個(gè)數(shù)據(jù)庫(kù):newspaper sql語(yǔ)句: CREATE DATABASE newspaper
3. 配置config/53bknet.config里面數(shù)據(jù)庫(kù)連接字符串。
<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 (安裝完重啟計(jì)算機(jī))
ln -s /usr/lib64/libgdiplus.so.0.0.0 /usr/lib64/libgdiplus.so
5. 在服務(wù)器瀏覽器上輸入網(wǎng)址:http://127.0.0.1/Install/Default.aspx 開(kāi)始安裝53bk數(shù)字報(bào)刊系統(tǒng)
常見(jiàn)錯(cuò)誤 詳情: http://www.tjsimaide.com/news/detail/20640.html
廣告: