国产老熟女高潮毛片A片仙踪林,欧美喂奶吃大乳,狠狠爱无码一区二区三区,女神的私人医生动漫免费阅读

新聞建站cms系統、政府cms系統定制開發

廣州網站建設公司-閱速公司

asp.net新聞發布系統、報紙數字報系統方案
/
http://www.tjsimaide.com/
廣州網站建設公司
您當前位置:首頁>博客日記

博客日記

Linux系統安裝數字報刊系統

發布時間:2019/11/22 11:37:42  作者:Admin  閱讀:886  

廣告:

53BK電子報刊系統支持的系統環境:

硬件最低配置:2核cpu,2G內存,30G硬盤,2M獨享網速

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

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

服務器需要安裝環境及軟件:

1. 軟件:mono 3.8 、xsp3.8、nginx-1.16.1
2. 數據庫:sql server 2017 for linux、sql server 2019 for linux
3. 53BK數字報刊系統V6.1 官網下載: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系統下控制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.tjsimaide.com/news/detail/20630.html
4. 遠程登錄成功,先不要更改系統語言,請保持英文界面。等安裝好sql server數據庫后,再更改系統語言。否則 sql server 2017 for linux 可能安裝不成功。

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

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

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

四、安裝Web服務器:nginx-1.16.1
Linux系統(centos7.6)安裝Web服務器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 / { #請求的url過濾,正則匹配,~為區分大小寫,~*為不區分大小寫。 
#root /usr/share/nginx/html;
#index index.html index.htm;
root /var/www/html/;
#index index.html index.htm;
charset utf-8; #網站設為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

五、安裝數據庫:sql server 2017 for linux
Linux系統(centos7.6)安裝sql server 2017 for linux 詳情:http://www.tjsimaide.com/news/detail/20638.html

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

七、安裝數字報刊系統
1. 用WinSCP上傳壓縮包到/var/www/html目錄下面。然后在服務器上解壓,把paperweb里面文件全部移到 /var/www/html根目錄下面。
2. 用sql server 2017 命令行工具新建一個數據庫:newspaper sql語句: CREATE DATABASE newspaper
3. 配置config/53bknet.config里面數據庫連接字符串。
<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. 在服務器瀏覽器上輸入網址:http://127.0.0.1/Install/Default.aspx 開始安裝53bk數字報刊系統

linux安裝數字報系統

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

廣告:

相關文章
Linux
數字報
cms新聞系統購買咨詢
掃描關注 廣州閱速軟件科技有限公司
掃描關注 廣州閱速科技
主站蜘蛛池模板: 蒲江县| 巴林左旗| 仲巴县| 平凉市| 武城县| 海原县| 曲沃县| 龙海市| 无极县| 光泽县| 天等县| 弥勒县| 巍山| 长宁区| 琼中| 高邑县| 乌兰浩特市| 昆明市| 会东县| 中江县| 安龙县| 丹寨县| 衡山县| 汝南县| 沂南县| 万载县| 合肥市| 仙游县| 五大连池市| 文安县| 德令哈市| 南昌市| 浦东新区| 张北县| 哈密市| 辰溪县| 石台县| 晋中市| 定边县| 泸溪县| 滨海县|