簡易搭建lamp
成都創(chuàng)新互聯(lián)主要從事成都網(wǎng)站建設(shè)、成都網(wǎng)站制作、網(wǎng)頁設(shè)計、企業(yè)做網(wǎng)站、公司建網(wǎng)站等業(yè)務(wù)。立足成都服務(wù)赫山,十載網(wǎng)站建設(shè)經(jīng)驗,價格優(yōu)惠、服務(wù)專業(yè),歡迎來電咨詢建站服務(wù):028-86922220
環(huán)境說明:
server:CentOS7-192.168.230.202
client: win8.1-192.168.230.59
Apache/2.4.6
php Version 5.4.16
5.5.52-MariaDB
yum group install Development Tools
#安裝開發(fā)工具,GCC...
yum install httpd mariadb mariadb-server php php-MySQL php-gd libjpeg* php-imap php-ldap php-odbc php-pear php-xml php-xmlrpc php-mbstring php-mcrypt php-bcmath php-mhash libmcrypt -y
#安裝apache mariadb php以及各種運行庫和工具
service httpd start 啟動
在本地 curl是可以的,
在其他客戶端是與80無法通信
原因好簡單嘛
selinux 和firewalld
setenforce 0
#關(guān)閉selinux
systemctl stop firewalld
#關(guān)閉防火墻嘛
在客戶端本地hosts添加
192.168.230.202 www.rex.com
vi /etc/httpd/conf/httpd.conf #編輯
找到 #ServerName www.example.com:80
修改為 ServerName www.rex.com:80
找到
#<IfModule dir_module>
DirectoryIndex index.php index.html
</IfModule>
添加index.php
現(xiàn)在可以在工作目錄添加網(wǎng)頁
路徑為/var/www/html
[root@localhost ~]# vim /var/www/html/index.php [root@localhost ~]# cat /var/www/html/index.php <?php phpinfo(); ?>
systemctl restart httpd
#reload會報錯Empty reply from server,
刷新后就會顯示php 的版本及詳細(xì)內(nèi)容。
mysql
網(wǎng)上許多教程都是使用mysql
由于版本的問題,還是使用有開源協(xié)議的mariadb,使用方法與mysql一樣
上面的yum已經(jīng)一次性安裝了
cp /usr/share/mysql/my-huge.cnf /etc/my.cnf #拷貝配置文件(注意:如果/etc目錄下面默認(rèn)有一個my.cnf,直接覆蓋即可)
兩個文件還是有區(qū)別的
service mariadb start ##讓我啟動服務(wù)哈 Redirecting to /bin/systemctl start mariadb.service [root@localhost ~]# mysqladmin -u root password ##修改mysql的root密碼,當(dāng)然可以用 New password: rexhaha Confirm new password: rexhaha
在一遍帖子上看到的MySQL的簡單配置,我們用到主要有加密,以及授權(quán)
mysqladmin -u root password grant all privileges on *.* to 'root'@'192.168.230.%'; #%指的是shell的*字符,代表所有
用root賬號進入MySQL管理后臺,它會提示你輸入密碼: [root@localhost ~]# mysql -u root –p 創(chuàng)建本地用戶: mysql> create user '用戶名'@'localhost' identified by '密碼'; 創(chuàng)建新數(shù)據(jù)庫: mysql> create database 數(shù)據(jù)庫名; 將指定數(shù)據(jù)庫的所有權(quán)限授給指定用戶: mysql> grant all privileges on 數(shù)據(jù)庫名.* to '用戶名'@'localhost'; 刷新系統(tǒng)權(quán)限表: mysql> flush privileges; 進入mysql數(shù)據(jù)庫(系統(tǒng)自帶),并查詢是否存在指定用戶(如果有出現(xiàn)一堆東西,則表明存在): mysql> use mysql; mysql> select * from user where user = '用戶名'; 如果要刪除本地用戶,使用: mysql> drop user '用戶名'@'localhost'; 如果要刪除數(shù)據(jù)庫,使用: mysql> drop database 數(shù)據(jù)庫名; 查看存在的數(shù)據(jù)庫: mysql> show databases; 退出MySQL管理后臺: mysql> exit
[root@localhost ~]# mysql -uroot -p Enter password: Welcome to the MariaDB monitor. Commands end with ; or \g. Your MariaDB connection id is 9 Server version: 5.5.52-MariaDB MariaDB Server Copyright (c) 2000, 2016, Oracle, MariaDB Corporation Ab and others. Type 'help;' or '\h' for help. Type '\c' to clear the current input statement. MariaDB [(none)]> create user 'rex'@'localhost' identified by 'rexhaha' -> ; ##上面那句結(jié)尾忘記加;號了,所以到一下行才加上 Query OK, 0 rows affected (0.02 sec) ##執(zhí)行成功的反饋 MariaDB [(none)]> create database rexhome; ##創(chuàng)建rexhome數(shù)據(jù)庫 Query OK, 1 row affected (0.00 sec) MariaDB [(none)]> grant all privileges on *.* to 'rex' @ 'localhost'; ERROR 1064 (42000): You have an error in your SQL syntax; check the manual that corresponds to your MariaDB server version for the right syntax to use near ''localhost'' at line 1 ##報錯提示 MariaDB [(none)]> grant all privileges on rexhome.* to 'rex' @ 'localhost' ; ERROR 1064 (42000): You have an error in your SQL syntax; check the manual that corresponds to your MariaDB server version for the right syntax to use near ''localhost'' at line 1 ##加數(shù)據(jù)庫名測試了一下還是報錯 MariaDB [(none)]> grant all privileges on rexhome.* to 'rex'@'localhost' ; ##原來是在‘user’@‘host’地方加了空格 Query OK, 0 rows affected (0.02 sec) MariaDB [(none)]> grant all privileges on *.* to 'rex'@'localhost' ; ##授權(quán)給rex賬號,所有數(shù)據(jù)及所有表的權(quán)限 Query OK, 0 rows affected (0.00 sec) MariaDB [(none)]> flush privileges; 更新權(quán)限表 Query OK, 0 rows affected (0.00 sec)
測試數(shù)據(jù)庫是否已連接
vim /var/www/html/index.php
<?php $link=mysql_connect("localhost","rex","rexhaha"); if(!$link) echo "FAILD!連接錯誤,用戶名密碼不對"; else echo "OK!可以連接"; ?>
測試完后,因為這個頁面里面的信息還挺重要的,所以應(yīng)該把phpinfo.php這個檔案刪除。
網(wǎng)站名稱:CentOS7yum搭建lamp
當(dāng)前網(wǎng)址:http://jinyejixie.com/article12/iieedc.html
成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供網(wǎng)站制作、網(wǎng)站導(dǎo)航、靜態(tài)網(wǎng)站、面包屑導(dǎo)航、自適應(yīng)網(wǎng)站、外貿(mào)建站
聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請盡快告知,我們將會在第一時間刪除。文章觀點不代表本網(wǎng)站立場,如需處理請聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時需注明來源: 創(chuàng)新互聯(lián)