您好,登錄后才能下訂單哦!
這篇文章將為大家詳細講解有關VirtualBox安裝建立CentOS虛擬系統配置其他文件的過程是怎樣的,文章內容質量較高,因此小編分享給大家做個參考,希望大家閱讀完這篇文章后對相關知識有一定的了解。
特別值得一提的是CentOS有很多值得學習的地方,這里我們主要介紹VirtualBox安裝中配置,包括介紹VirtualBox安裝等方面。CentOS社區的Linux發行版本被稱為CentOS Linux,由于使用了由RHEL的源代碼重新編譯生成新的發行版本,CentOS Linux具有與RHEL產品非常好的兼容性,并且與生俱來地擁有RHEL的諸多優秀特性。
最近需要配置一個php的環境,當然windows也可以,不過還是選擇安裝一個CentOS,經過很長一段時間的摸索,終于配置完成了.VirtualBox安裝中配置CentOS 5.3+Apache+MySql5+php5
1.到http://www.virtualbox.org/下載***版的virtualbox[直接下載=>http://download.virtualbox.org/virtualbox/3.0.2/VirtualBox-3.0.2-49928-Win.exe].
2.到http://www.centos.org/下載iso文件[直接下載=>http://mirror.averse.net/centos/5.3/isos/i386/CentOS-5.3-i386-bin-DVD.iso].
3.VirtualBox安裝.
4.建立一個CentOS的虛擬系統,并VirtualBox安裝操作系統,按提示操作即可.
5.進入系統后,選擇系統窗口的[設備->安裝增強包],載入VirtualBox安裝的增強包iso.
6.按[ctrl+alt+f1]進入命令行界面,以root身份登錄.
7.運行以下命令安裝增強包,即可成功安裝增強包.:
yum install kernel-devel
yum install gcc
ln -s /usr/src/kernels/2.6.18-92.1.18.el5-i686 /usr/src/linux
sh VBoxLinuxAdditions-x86.run
8.以下安裝apache,mysql,php:
yum -y install httpd php mysql mysql-server php-mysql httpd-manual mod_ssl mod_perl mod_auth_mysql php-mcrypt php-gd php-xml php-mbstring php-ldap php-pear php-xmlrpc mysql-connector-odbc mysql-devel libdbi-dbd-mysql
9.安裝php擴展:
yum -y install php-gd php-xml php-mbstring php-ldap php-pear php-xmlrpc
10.安裝apache擴展:
yum -y install httpd-manual mod_ssl mod_perl mod_auth_mysql
11.啟動mysql:
/etc/init.d/mysqld start
12.設置mysql的root密碼:
mysqladmin -u root password '你的密碼'
13.按[ctrl+alt+f7]切換到圖形界面.
14.配置apache多站點,找到/etc/httpd/conf/httpd.conf,用文本編輯器打開,找到[#NameVirtualHost *:80],去掉前面的[#]號.
15.找到[DirectoryIndex index.html index.shtml],增加一個[index.php].
16.在[/etc/httpd/conf.d]文件夾內新建一個[vhosts.conf]文件,內容格式如下(假設我要建立兩個站點http://www.yomeier.com/ / http://www.k2046.cn/),對應的網站文件則應放在[/var/www/yomeier]和[/var/www/k2046]目錄下.:
<VirtualHost *:80>
ServerAdmin xxx@live.com
DocumentRoot /var/www/yomeier
ServerName www.yomeier.com
AddDefaultCharset UTF-8
<Directory "/var/www/yomeier">
Options All
AllowOverride All
Order allow,deny
Allow from all
</Directory>
</VirtualHost>
<VirtualHost *:80>
ServerAdmin xxx@live.com
DocumentRoot /var/www/k2046
ServerName www.k2046.cn
AddDefaultCharset UTF-8
<Directory "/var/www/k2046">
Options All
AllowOverride All
Order allow,deny
Allow from all
</Directory>
</VirtualHost>
17.打開終端.
啟動apache:/etc/init.d/httpd start
18.設置apache自啟動:
chkconfig --add httpd
chkconfig --level 345 httpd on
19.設置mysql自啟動:
chkconfig --add mysqld
chkconfig --level 345 mysqld on
20.修正centos在VirtualBox安裝里全屏時分辨率的問題:
用文本編輯器打開[/etc/X11/xorg.conf]
找到:
SubSection "Display"
Modes "1280x800" "800x600" #這里按屏幕需要改就可以了
EndSubSection完成!
關于VirtualBox安裝建立CentOS虛擬系統配置其他文件的過程是怎樣的就分享到這里了,希望以上內容可以對大家有一定的幫助,可以學到更多知識。如果覺得文章不錯,可以把它分享出去讓更多的人看到。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。