内射老阿姨1区2区3区4区_久久精品人人做人人爽电影蜜月_久久国产精品亚洲77777_99精品又大又爽又粗少妇毛片

CentOSLAMP配置是怎樣的

今天就跟大家聊聊有關(guān)CentOS LAMP配置是怎樣的,可能很多人都不太了解,為了讓大家更加了解,小編給大家總結(jié)了以下內(nèi)容,希望大家根據(jù)這篇文章可以有所收獲。

成都創(chuàng)新互聯(lián)公司主營海州網(wǎng)站建設(shè)的網(wǎng)絡(luò)公司,主營網(wǎng)站建設(shè)方案,重慶APP軟件開發(fā),海州h5小程序開發(fā)搭建,海州網(wǎng)站營銷推廣歡迎海州等地區(qū)企業(yè)咨詢

今天用yum方法搭建起了個CentOSLAMP環(huán)境,中間遇到了很多問題,經(jīng)過google和各位前輩的幫助,終于將環(huán)境搭建起來,現(xiàn)在把完整的步驟記錄下來:

一、換源,sohu的相當(dāng)好用。

備份CentOS-Base.repo

view sourceprint?cp /etc/yum.repos.d/CentOS-Base.repo /etc/yum.repos.d/CentOS-Base.repo.bak

替換源

用vi打開CentOS-Base.repo,并將內(nèi)容清空,然后將下面的內(nèi)容復(fù)制進(jìn)去,并保存。

view sourceprint?# CentOS-Base.repo

#

# This file uses a new mirrorlist system developed by Lance Davis for CentOS.

# The mirror system uses the connecting IP address of the client and the

# update status of each mirror to pick mirrors that are updated to and

# geographically close to the client. You should use this for CentOS updates

# unless you are manually picking other mirrors.

[base]

name=CentOS-$releasever - Base

baseurl=http://mirrors.sohu.com/centos/$releasever/os/$basearch/

gpgcheck=1

gpgkey=http://mirrors.sohu.com/centos/RPM-GPG-KEY-CentOS-5

#released updates

[updates]

name=CentOS-$releasever - Updates

baseurl=http://mirrors.sohu.com/centos/$releasever/updates/$basearch/

gpgcheck=1

gpgkey=http://mirrors.sohu.com/centos/RPM-GPG-KEY-CentOS-5

#packages used/produced in the build but not released

[addons]

name=CentOS-$releasever - Addons

baseurl=http://mirrors.sohu.com/centos/$releasever/addons/$basearch/

gpgcheck=1

gpgkey=http://mirrors.sohu.com/centos/RPM-GPG-KEY-CentOS-5

#additional packages that may be useful

[extras]

name=CentOS-$releasever - Extras

baseurl=http://mirrors.sohu.com/centos/$releasever/extras/$basearch/

gpgcheck=1

gpgkey=http://mirrors.sohu.com/centos/RPM-GPG-KEY-CentOS-5

#additional packages that extend functionality of existing packages

[centosplus]

name=CentOS-$releasever - Plus

baseurl=http://mirrors.sohu.com/centos/$releasever/centosplus/$basearch/

gpgcheck=1

enabled=0

gpgkey=http://mirrors.sohu.com/centos/RPM-GPG-KEY-CentOS-5

二、更新一下系統(tǒng)

view sourceprint?#yum -y update

三、安裝Apache

view sourceprint?#yum install httpd

安裝完成后,用

view sourceprint?/etc/init.d/httpd start

啟動apache

設(shè)為開機(jī)啟動

view sourceprint?#chkconfig httpd on

四、安裝MySQL

view sourceprint?#yum install mysql mysql-server

同樣,完成后,用

view sourceprint?/etc/init.d/mysqld start

啟動mysql

設(shè)置MYSQL密碼

view sourceprint?#/usr/bin/mysqladmin -u root -h localhost password '新密碼'

#mysql -u root –p #進(jìn)入MYSQL,

#Enter Password:# [輸入密碼即可]

更新MYSQL密碼

view sourceprint?mysql> USE mysql;

mysql> UPDATE user SET Password=PASSWORD('newpassword') WHERE user='root';

mysql> FLUSH PRIVILEGES;

允許遠(yuǎn)程登錄

view sourceprint?mysql>GRANT ALL PRIVILEGES ON *.* TO 'username'@'%' IDENTIFIED BY 'password' WITH GRANT OPTION;

完成后就能用mysql-front遠(yuǎn)程管理mysql了。

讓MYSQL數(shù)據(jù)庫更安全

view sourceprint?mysql -u root -p [此時會要求你輸入剛剛設(shè)置的密碼,輸入后回車即可

mysql> DROP DATABASE test; [刪除test數(shù)據(jù)庫]

mysql> DELETE FROM mysql.user WHERE user =’’; [刪除匿名帳戶]

mysql> FLUSH PRIVILEGES; [重載權(quán)限]

mysql> exit;  [退出MYSQL]

設(shè)為開機(jī)啟動

view sourceprint?#chkconfig mysqld on

五、安裝PHP

view sourceprint?#yum install php php-mysql php-common php-gd php-mbstring php-mcrypt php-devel php-xml libmcrypt

view sourceprint?#/etc/init.d/httpd start [運(yùn)行HTTPD]

六、測試一下

在/var/www/html/新建個test.php文件,將以下內(nèi)容寫入,然后保存。

view sourceprint?

phpinfo();

?>

然后在客戶端瀏覽器里打開http://IP/test.php,若能成功顯示,則表示安裝成功。

至此,安裝完畢。

看完上述內(nèi)容,你們對CentOS LAMP配置是怎樣的有進(jìn)一步的了解嗎?如果還想了解更多知識或者相關(guān)內(nèi)容,請關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道,感謝大家的支持。

網(wǎng)頁名稱:CentOSLAMP配置是怎樣的
文章起源:http://m.rwnh.cn/article30/gspipo.html

成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供營銷型網(wǎng)站建設(shè)、關(guān)鍵詞優(yōu)化、小程序開發(fā)網(wǎng)站收錄、ChatGPT、網(wǎng)站排名

廣告

聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請盡快告知,我們將會在第一時間刪除。文章觀點(diǎn)不代表本網(wǎng)站立場,如需處理請聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時需注明來源: 創(chuàng)新互聯(lián)

搜索引擎優(yōu)化
兰州市| 石林| 乳山市| 内乡县| 玛多县| 泽普县| 类乌齐县| 腾冲县| 茂名市| 德庆县| 湟中县| 丹巴县| 手游| 甘洛县| 天峨县| 秦皇岛市| 叙永县| 盐山县| 海阳市| 龙井市| 南郑县| 金溪县| 临清市| 清河县| 永德县| 进贤县| 耒阳市| 清水河县| 屏东市| 呈贡县| 青岛市| 浦东新区| 沅陵县| 扎兰屯市| 临朐县| 崇左市| 汉沽区| 黄大仙区| 宝丰县| 柳河县| 德州市|