# yum install httpd啟動apache
# systemctl start httpd.service訪問【主機位址】測試
參考mariadb資料庫管理系統是mysql的乙個分支,主要由開源社群在維護,採用gpl授權許可。開發這個分支的原因之一是:甲骨文公司收購了mysql後,有將mysql閉源的潛在風險,因此社群採用分支的方式來避開這個風險。mariadb
的目的是完全相容
mysql
,包括api
和命令列,使之能輕鬆成為
mysql
的代替品。
# yum install mariadb-server mariadb mariadb-devel安裝完成後預設管理員root密碼為空,登入資料庫:
資料庫管理員root與linux管理員的root只是名字相同,完全不是一回事。
# mysql -u root設定密碼,password替換為你要設定的密碼:
mariadb [(none)]> set password for 'root'@'localhost' = password('password');退出資料庫介面
mariadb [(none)]> exit下次使用密碼登入
# mysql -u root -p# systemctl status mariadb.service #檢視mariadb狀態
# systemctl start mariadb.service #啟動mariadb
# systemctl stop mariadb.service #停止mariadb
# systemctl status mariadb.service #重啟mariadb
# systemctl enable mariadb.service #設定開機啟動
# systemctl disable mariadb.service #禁用開機啟動
# yum -y install php php-devel php-mysql重新啟動httpd服務或者重新載入httpd的配置,使用下面兩個命令中的乙個。
$sudo service httpd restart #重啟httpd服務
$sudo service httpdgraceful #重新載入httpd配置
通過新建乙個php指令碼方法進行測試,在/var/www/html目錄下新建info.php檔案
# vi /var/www/html/info.php輸入如下指令碼並儲存:
Centos 7 安裝LAMP環境
一 安裝centos二 安裝apacheyum install httpd 根據提示,輸入y安裝即可成功安裝 systemctl start httpd.service 啟動apache systemctl stop httpd.service 停止apache systemctl restart ...
CentOS 7搭建LAMP環境
一 檢查環境 1.檢視centos版本 root localhost cat etc redhat release centos linux release 7.4.1708 core root localhost 2.檢查是否安裝相關應用 root localhost service httpd ...
CentOS7 配置環境
1.安裝centos 配置環境 1 虛擬機器中安裝centos,進入系統使用yum命令不止正常執行 原因 需要設定網絡卡啟用 解決方法 vi etc sysconfig network scripts ifcfg ens33 修改 onboot yes 重啟計算機 reboot 2 安裝openss...