vclas安裝程序以及相關(guān)說(shuō)明-2mnwyqdep_第1頁(yè)
vclas安裝程序以及相關(guān)說(shuō)明-2mnwyqdep_第2頁(yè)
vclas安裝程序以及相關(guān)說(shuō)明-2mnwyqdep_第3頁(yè)
vclas安裝程序以及相關(guān)說(shuō)明-2mnwyqdep_第4頁(yè)
vclas安裝程序以及相關(guān)說(shuō)明-2mnwyqdep_第5頁(yè)
已閱讀5頁(yè),還剩16頁(yè)未讀, 繼續(xù)免費(fèi)閱讀

下載本文檔

版權(quán)說(shuō)明:本文檔由用戶提供并上傳,收益歸屬內(nèi)容提供方,若內(nèi)容存在侵權(quán),請(qǐng)進(jìn)行舉報(bào)或認(rèn)領(lǐng)

文檔簡(jiǎn)介

學(xué)習(xí)元LINUX安裝指南師范大學(xué)現(xiàn)代教育技術(shù)丁國(guó)柱2013.111.準(zhǔn)備工作1.安裝svn,參考svn配置.docx2.安裝ant

:yum

install

antLearning

Cellbnu

edu

cn/index22.

代碼、1.新建學(xué)習(xí)元#mkdir–p/lcell代碼、程序2.#svnco#svn

co#svn

coLearning

Cellbnu

edu

cn/index32.安裝jdk1.將/lcell/linux_soft下的jdk-6u30-linux-下x64.bin

拷貝到/usr/local/java#mkdir–p/usr/local/java#cd

/lcell/linux_soft#cp

jdk-6u30-linux-x64.bin

/usr/local/java#

cd

/usr/local/java# od

+x

jdk-6u30-linux-x64.bin#./

jdk-6u30-linux-x64.binLearning

Cellbnu

edu

cn/index42.1配置jdk#vi

/etc/profile//增加內(nèi)容JAVA_HOME=/usr/local/java/jdk1.6.0_30PATH=$PAHT:$JAVA_HOME/binexport

JAVA_HOME

PATH//按wq保存退出Learning

Cellbnu

edu

cn/index5//更新環(huán)境

source/etc/profile//7.測(cè)試是否安裝成功

#java#javac#echo

$JAVA_HOME#echo

$PATH//正常顯示的就OK了。Learning

Cellbnu

edu

cn/index63.安裝mysql#yum

install

mysql#yum

install

mysql-server#yum

install

mysql-devel#chgrp

-R

mysql

/var/lib/mysql# od

-R

770

/var/lib/mysqlLearning

Cellbnu

edu

cn/index73.1配置mysql#service

mysqld

start#mysql#SET

PASSWORD

FOR

root@localhost

=

PASSWORD('root');#chkconfig

--levels

345

mysqld

on//更新mysql配置文件,將

f拷貝到fLearning

Cellbnu

edu

cn/index83.2增加學(xué)習(xí)元數(shù)據(jù)庫(kù)#mysql

–u

root

–p#rootset names

utf8CREATE

DATABASE

`learningcell`

DEFAULTCHARACTER

SET

utf8

COLLATE

utf8_general_ci;//將/lcell/linux_soft/mysqldata/learningcell的文件全部拷貝到:/usr/local/mysql/data/learningcell/

下Learning

Cellbnu

edu

cn/index94.安裝openoffice#cd

/lcell/linux_soft#tar

zxvfApache_OpenOffice_incubating_3.4.1_Linux_x86-64_

.tar#cd

/RPMS/s-3.4-#rpm–ivh

*.rpm#cddesktop-integration/#rpm

–ivh

3.4-redhat-9593.noarch.rpmLearning

Cellbnu

edu

cn/index10啟動(dòng)openoffice新開(kāi)一個(gè)終端運(yùn)行#/opt/3/program/soffice

-headless

-accept="socket,host=,port=8100;urp;"

-no

startwizardLearning

Cellbnu

edu

cn/index115.安裝swf1.安裝依賴程序#yum

-y

install

gcc

gcc-c++

autoconf

libjpeg

libjpeg-devel

libpnglibpng-develfreetype

freetype-devellibxml2

libxml2-devel

zlib

zlib-devel

glibcglibc-develglib2

glib2-devel

bzip2

bzip2-devel

ncursesncurses-devel

curlcurl-devele2fsprogs

e2fsprogs-devel

krb5-server

krb5-devel

libidn

libidn-developenldapopenldap-devel

nss_ldap

openldap-clients

openldap-server

giflib-develLearning

Cellbnu

edu

cn/index12解壓swftools安裝#cd

/lcell/linux_soft#

./configure

--prefix=/usr/local/swftools#make#make

install//將swftools配置成可運(yùn)行命令#vim

/etc/profile//最后一行后 一行:export

PATH=$PATH:/usr/local/swftools/bin/#source/etc/profile //更新新環(huán)境變量

#pdf2swf//測(cè)試是否正常Learning

Cellbnu

edu

cn/index13安裝xpdf語(yǔ)言包#tar

zxvf

xpdf-chinese-simplified.tar.gz#unzip

font.zip#mv

Gbsn00lp.ttf

gkai00mp.ttf

xpdf-chinese-simplified/CMap/#cd

/usr/share/xpdf/xpdf-chinese-simplified#vi

add-to-xpdfrc//加入內(nèi)容如下:cidToUnicode

Adobe-GB1GB1.cidToUnicodeunicodeMapCN.unicodeMapunicodeMap.unicodeMap/usr/share/xpdf/xpdf-chinese-simplified/Adobe-/usr/share/xpdf/xpdf-chinese-simplified/ISO-2022-/usr/share/xpdf/xpdf-chinese

-unicodeMapcMapDirtoUnicodeDirGBK

/usr/share/xpdf/xpdf-chinese-simplified/GBK.unicodeMapAdobe-GB1

/usr/share/xpdf/xpdf-chinese-simplified/CMap/usr/share/xpdf/xpdf-chinese-simplified/CMapdisplayCIDFontTT

Adobe-GB1

/usr/share/xpdf/xpdf-chinese-simplified/CMap/gkai00mp.ttf//保存后退出Learning

Cellbnu

edu

cn/index145.安裝memcached#yum

install

memcached//啟動(dòng)memcached#memcached

-d

-m

1024

-u

root

-p

11211

-P/tmp/memcached.pid//-m

表示為memcached分配1G內(nèi)存//-p

11211

表示運(yùn)行端口是11211Learning

Cellbnu

edu

cn/index156.配置運(yùn)行tomcat#cd

/lcell/linux_soft#unzip

tomcat.zip#vim

tomcat/conf/server.xml//修改學(xué)習(xí)元程序運(yùn)行位置:<Context

path=""docBase="/lcell/lcCode/WebRoot"reloadable="false"

crossContext="true"privileged="true"></Context

>Learning

Cellbnu

edu

cn/index16啟動(dòng)tomcat#cd

/lcell/tomcat/bin# od+x

*.sh

//將sh文件修改成可運(yùn)行文件#./startup.sh//啟動(dòng)tomcat//在本地查看是否能正常運(yùn)行Learning

Cellbnu

edu

cn/index177.安裝nginx#cd

/lcell/linux_soft#rpm

–ivh

nginx-release-centos-6-0.el6.ngx.noarch.rpm#yum

install

nginx

–yLearning

Cellbnu

edu

cn/index18配置nginx參考fLearning

Cellbnu

edu

cn/index19配置,但不安全1.最簡(jiǎn)單的操作關(guān)閉#service

iptables

stop

2.配置#vi/etc/sysconfig/iptables

//新增:-A

INPUT

-m

state

--state

NEW

-m

tcp

溫馨提示

  • 1. 本站所有資源如無(wú)特殊說(shuō)明,都需要本地電腦安裝OFFICE2007和PDF閱讀器。圖紙軟件為CAD,CAXA,PROE,UG,SolidWorks等.壓縮文件請(qǐng)下載最新的WinRAR軟件解壓。
  • 2. 本站的文檔不包含任何第三方提供的附件圖紙等,如果需要附件,請(qǐng)聯(lián)系上傳者。文件的所有權(quán)益歸上傳用戶所有。
  • 3. 本站RAR壓縮包中若帶圖紙,網(wǎng)頁(yè)內(nèi)容里面會(huì)有圖紙預(yù)覽,若沒(méi)有圖紙預(yù)覽就沒(méi)有圖紙。
  • 4. 未經(jīng)權(quán)益所有人同意不得將文件中的內(nèi)容挪作商業(yè)或盈利用途。
  • 5. 人人文庫(kù)網(wǎng)僅提供信息存儲(chǔ)空間,僅對(duì)用戶上傳內(nèi)容的表現(xiàn)方式做保護(hù)處理,對(duì)用戶上傳分享的文檔內(nèi)容本身不做任何修改或編輯,并不能對(duì)任何下載內(nèi)容負(fù)責(zé)。
  • 6. 下載文件中如有侵權(quán)或不適當(dāng)內(nèi)容,請(qǐng)與我們聯(lián)系,我們立即糾正。
  • 7. 本站不保證下載資源的準(zhǔn)確性、安全性和完整性, 同時(shí)也不承擔(dān)用戶因使用這些下載資源對(duì)自己和他人造成任何形式的傷害或損失。

最新文檔

評(píng)論

0/150

提交評(píng)論