您好,登錄后才能下訂單哦!
本篇內容主要講解“ubuntu14.04.1怎么配置apache與yum”,感興趣的朋友不妨來看看。本文介紹的方法操作簡單快捷,實用性強。下面就讓小編來帶大家學習“ubuntu14.04.1怎么配置apache與yum”吧!
1、安裝apahce
apt-get install apache2
2、默認網站根目錄
Apache的安裝路徑為/var
默認的網站根目錄的路徑為/var/www/html
3、配置apache自啟動
Apache2.conf 位置: /etc/apache2/apache2.conf
vim /etc/apache2/apache2.conf
在打開的apache2.conf文件尾部添加如下信息:
#ServerName
ServerName [ip地址]
4、重啟apache
目錄:/etc/init.d/apache2 restart
./apache2 restart
5、重啟電腦,檢測服務能否自啟動;本機訪問
瀏覽器輸 http:[之前配置的ip地址] 回車之后看到
配置基于http的包更新源
1、在終端窗口中輸入"sudo vi /etc/apache2/apache2.conf" ,回車,找到"<Directory /var/www/>"的位置,更改"/var/www/"為新的根目錄就可以了
<Directory />
Options FollowSymLinks
AllowOverride None
Require all denied
</Directory>
<Directory /usr/share>
AllowOverride None
Require all granted
</Directory>
<Directory /var/www/>
Options Indexes FollowSymLinks
AllowOverride None
Require all granted
</Directory>
2,在終端窗口中輸入"sudo vi /etc/apache2/sites-available/000-default.conf"-->回車-->找到"DocumentRoot /var/www/html"的位置-->更改"/var/www/html"為新的根目錄就可以了,這里我把它更改為"/var/www/" 或者也可以自己新建一個repo_server.conf,里面配置如下:
<VirtualHost :28000>
ServerAdmin webmaster@dummy-host.example.com
DocumentRoot /var/www/repo
<Directory '/var/www/repo'>
Options Includes FollowSymLinks MultiViews
AllowOverride None
Require all granted
</Directory>
ErrorLog /var/log/apache2/repo_server-error.log
CustomLog /var/log/apache2/repo_server.log common
</VirtualHost>
注:repo下要拷貝iso上的dists目錄過來
3、配置端口
在/etc/apache2/ports.conf
輸入Listen :28000
保存退出
第六步:重啟Apache:
在終端窗口中輸入"sudo /etc/init.d/apache2 restart" 回車,輸入root用戶密碼,回車,重啟成功
客戶端配置
1、找到/etc/apt/sources.list
2、輸入deb [arch=amd64] http://11.11.177.72:28000 (dists)ngiam main
3、保存退出即可
到此,相信大家對“ubuntu14.04.1怎么配置apache與yum”有了更深的了解,不妨來實際操作一番吧!這里是億速云網站,更多相關內容可以進入相關頻道進行查詢,關注我們,繼續學習!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。