linux下Apache的簡單操作

2021-07-02 12:48:33 字數 613 閱讀 6378

ps:今天突然發現我的ubuntu裝了apache2,占用了80埠。好奇怪,我貌似沒有裝啊。。。。

一、start apache 2 server /啟動apache服務

/etc/init.d/apache2 start

or

sudo /etc/init.d/apache2 start
二、 restart apache 2 server /重啟apache服務

/etc/init.d/apache2 restart
or

sudo /etc/init.d/apache2 restart
三、stop apache 2 server /停止apache服務

/etc/init.d/apache2 stop
or

sudo /etc/init.d/apache2 stop
四、安裝和配置檔案目錄:在/etc/apache2

方法其實很簡單,有需要的同學可以備案一下。

linux下apache的安裝

二 apache的提取 編譯與安裝 在linux下的軟體的安裝並不看windows下那麼簡單,要經過一系列的指令才能完成安裝。cd root downloads tar xzf httpd 2.2.22.tar.gz 提取後會生成httpd 2.2.22資料夾 cd httpd 2.2.22 進入h...

linux下的apache安裝

先講講apache的安裝吧 sftp user ip 例 zxg 10.32.80.108 put 檔名 推送資料 get 檔名 獲取資料 2 在linux上解壓 tar xjf httpd 2.2.22.tar.bz2 4 指定安裝路徑和載入的模組 指定安裝路徑為 usr local apache...

linux下Apache的安裝

3.解壓檔案 tar zxvf httpd 2.2.13.tar.gz為檔案httpd 2.2.13.4.mkdir p usr local apache 建立要安裝的目的地的資料夾。5.mv root httpd 2.2.13 usr local src 將安裝包放到src下,利於管理。6.到 u...