九色国产,午夜在线视频,新黄色网址,九九色综合,天天做夜夜做久久做狠狠,天天躁夜夜躁狠狠躁2021a,久久不卡一区二区三区

打開APP
userphoto
未登錄

開通VIP,暢享免費電子書等14項超值服

開通VIP
CentOS7 的lamp的安裝方法

一、mariadb

下面的操作之前一定要記得先啟動mariadb:

systemctl  start  mariadb

登錄數(shù)據(jù)庫:

$mysql -u root -p

初始密碼為空。


注意,這里的root和linux的root沒半毛錢關(guān)系.maria的初始密碼默認(rèn)是空的。需要你改一下的。

[root@ns ~]# mysqladmin -uroot -p password zhelitianmima  

Enter password: 

后面那個zhelitianmima是你要改的密碼。Enter password那里直接回車就好了。

補充一點。mysql的密碼都在mysql這個庫里面,有一張表叫user,這里管理了可以登陸數(shù)據(jù)庫的用戶


介紹幾個基本的命令

show databases;                  顯示數(shù)據(jù)庫
use mysql;                            進(jìn)入數(shù)據(jù)庫
show tables;                         顯示示數(shù)據(jù)庫中的表
desc user;                            查看user表的數(shù)據(jù)結(jié)構(gòu)
flush privileges;                    刷新數(shù)據(jù)庫信息
select host.user,password from user;     查詢user表中的host,user,password字段

create database westos;                        創(chuàng)建westos數(shù)據(jù)庫
use westos;                            
create table linux(                                   創(chuàng)建表,username,password字段
username varchar(15) not null,
password varchar(15) not null
);
select * from mysql.user;                           查詢mysql庫下的user表中的所以
alter table linux add age varchar(4);          添加age字段到linux表中
ALTER TABLE linux DROP age                刪除age字段
ALTER TABLE linux ADD age  VARCHAR(5)  AFTER name        在name字段后添加字段age




為了安全,看看端口上有沒有mysql的端口:

  1. [root@ns etc]# nmap localhost  
  2.   
  3. Starting Nmap 6.40 ( http://nmap.org ) at 2016-11-27 22:24 CST  
  4. Nmap scan report for localhost (127.0.0.1)  
  5. Host is up (0.000026s latency).  
  6. Other addresses for localhost (not scanned): 127.0.0.1  
  7. Not shown: 995 closed ports  
  8. PORT     STATE SERVICE  
  9. 21/tcp   open  ftp  
  10. 22/tcp   open  ssh  
  11. 25/tcp   open  smtp  
  12. 80/tcp   open  http  
  13. 3306/tcp open  mysql 

改了之后退出來殺掉所有跟mysql相關(guān)的進(jìn)程。咋殺我就不說了阿。

那我要是不想別人遠(yuǎn)程登陸我的數(shù)據(jù)庫怎么辦呢

修改/etc/my.cnf  在第11行加上skip-networking=1,再重啟mysql。

systemctl restart mariadb

  1. 1 [mysqld]  
  2.  2 datadir=/var/lib/mysql  
  3.  3 socket=/var/lib/mysql/mysql.sock  
  4.  4 # Disabling symbolic-links is recommended to prevent assorted security risks  
  5.  5 symbolic-links=0  
  6.  6 # Settings user and group are ignored when systemd is used.  
  7.  7 # If you need to run mysqld under a different user or group,  
  8.  8 # customize your systemd unit file for mariadb according to the  
  9.  9 # instructions in http://fedoraproject.org/wiki/Systemd  
  10. 10  
  11. 11 skip-networking=1  
  12. 12 [mysqld_safe]  
  13. 13 log-error=/var/log/mariadb/mariadb.log  
  14. 14 pid-file=/var/run/mariadb/mariadb.pid  
  15. 15 #  
  16. 16 # include all files from the config directory  
  17. 17 #  
  18. 18 !includedir /etc/my.cnf.d  
  19. 19   





二、關(guān)于數(shù)據(jù)庫的sql語句就不在這里細(xì)說了。直接說如何直接以圖形的方式管理數(shù)據(jù)庫吧

1.現(xiàn)在網(wǎng)上下一個phpMyAdmin-3.4.0-all-languages.tar.bz2這個軟件包

2.再在yum安裝php php-mysql http 這3款軟件

3.在/var/www/html下解壓縮phpMyAdmin

4.在phpMyAdmin-3.4.0-all-languages這個目錄中的config.sample.inc.php下找個

$cfg['blowfish_secret'] = '隨便填個值’ 并將config.sample.inc.php    改名為config.inc.php

三、安裝php的擴展
yum install php-mysql php-gd php-imap php-ldap php-odbc php-pear php-xml php-xmlrpc

安裝完擴展之后需要再次重啟apache
以上命令可以激活PHP,因此phpmyadmin可用

四、關(guān)閉防火墻。

sudo systemctl stop firewalld.service



五、關(guān)閉selinux

查看SELinux狀態(tài):

(1)、/usr/sbin/sestatus -v      ##如果SELinux status參數(shù)為enabled即為開啟狀態(tài)

SELinux status:                 enabled

關(guān)閉SELinux:

(2)臨時關(guān)閉(不用重啟機器):

setenforce 0                  ##設(shè)置SELinux 成為permissive模式

                              ##setenforce 1 設(shè)置SELinux 成為enforcing模式

(3)、修改配置文件需要重啟機器:

修改/etc/selinux/config 文件

將SELINUX=enforcing改為SELINUX=disabled

重啟機器即可



六、APPache服務(wù)器的安裝

yum install httpd

安裝httpd會自動安裝一下依賴包:這是要下載的依賴包

選擇y及安裝已下載好的安裝包。安裝大概需要30秒左右。

配置

進(jìn)入配置界面vi httpd.conf(位置:/etc/httpd/conf/http.conf)

把里面的 AllowOverride None 全部修改為 AllowOverride All

順便在 DirectoryIndex index.html 后面加上 index.htm index.php index.shtml

這個是配置默認(rèn)首頁的

:wq 保存退出 service httpd restart 重啟 apache 服務(wù),再訪問一下。果然可以訪問了。

重啟服務(wù)器

  1. systemctl start httpd.service #啟動apache

    systemctl stop httpd.service #停止apache

    systemctl restart httpd.service #重啟apache

    systemctl enable httpd.service #設(shè)置apache開機啟動

  2. 七、測試php是否安裝成功

    #sudo vim /var/www/html/info.php

    里面寫入代碼

    <?php

    phpinfo();

    ?>

    然后保存退出

    :wq!

    在瀏覽器中輸入http://your server's IP address/info.php

    就能看到自己的php信息了

  3. 八、在瀏覽器中輸入:

  4. http://localhost/phpmyadmin/

  5. 可以管理數(shù)據(jù)庫。



本站僅提供存儲服務(wù),所有內(nèi)容均由用戶發(fā)布,如發(fā)現(xiàn)有害或侵權(quán)內(nèi)容,請點擊舉報
打開APP,閱讀全文并永久保存 查看更多類似文章
猜你喜歡
類似文章
CentOS 7下搭建LAMP平臺環(huán)境
2-Preparations before Install Cacti
centos7下安裝itop
pandownload涼了?教你自己搭建一個私人網(wǎng)盤...
Centos7.4搭建WordPress個人站點
centos7用yum搭建LAMP環(huán)境
更多類似文章 >>
生活服務(wù)
熱點新聞
分享 收藏 導(dǎo)長圖 關(guān)注 下載文章
綁定賬號成功
后續(xù)可登錄賬號暢享VIP特權(quán)!
如果VIP功能使用有故障,
可點擊這里聯(lián)系客服!

聯(lián)系客服