烏班圖18.04 LTS 版LAMP環境配置記錄

-- 2018.06.07
-- liujunhang php


lamp 環境包括:Apache服務器、php、Mysql數據庫,linux服務器架構在虛擬機中。
Tip:在進行環境配置以前最好進行鏡像存儲。
1. 系統更新
  在安裝以前須要執行下面的三條命令進行系統內部更新:
  sudo apt-get update 得到最新資源包
  sudo apt-get upgrade 更新本機所有軟件
  sudo apt-get dist-upgrade 本機系統軟件更新html


2. 安裝apache服務器 mysql

  sudo apt install apache2 -y
 檢查apapache狀態
  systemctl status apache2 linux

 開啓、關閉或者重啓apache
  sudo /etc/init.d/apache2 start
  sudo /etc/init.d/apache2 stop
  sudo /etc/init.d/apache2 restartweb

經過ifconfig查看服務器ip,在瀏覽器中輸入ip地址能夠查看Apache服務器是否安裝成功!sql

3. 安裝mysql
  sudo apt install mysql-server mysql-client數據庫

須要注意的,若是你的烏班圖是無界面版的服務器版本,那麼在安裝的時候是不會出現mysql密碼設置的界面,咱們在安裝完成後mysql5.7會隨機生成一個密碼, 咱們想要登錄mysql就必須重置一個密碼。
執行以下命令:
  cd /etc/mysql/mysql.conf.d
  sudo vi mysqld.cnf
 在代碼裏面加入:skip-grant-tables 做用是跳過mysql的密碼驗證,從而不須要密碼而登錄mysql
 重啓mysql服務器 :sudo /etc/init.d/mysql restart
  進入mysql後,use mysql;
  而後執行命令:update user set plugin='mysql_native_password';
  update user set authentication_string=password('123456') where user='root' and host='localhost';
  flush privileges; 刷新
  退出mysql,而後註釋掉skip-grant-tables
  重啓mysql服務器 sudo /etc/init.d/mysql restart
4. 安裝php
  sudo apt-get install -y php7.2 apache

  安裝完成後查看版本 php -v瀏覽器

  安裝其餘服務器

  apt-get install php7.0 libapache2-mod-php7.0

5. 安裝phpmyadmin 

  sudo apt install phpmyadmin
安裝完成後建立軟鏈接到web目錄
  sudo ln -s /usr/share/phpmyadmin /var/www/html/phpmyadmin

測試: ip地址/phpmyadmin

相關文章
相關標籤/搜索