国产xxxx99真实实拍_久久不雅视频_高清韩国a级特黄毛片_嗯老师别我我受不了了小说

資訊專欄INFORMATION COLUMN

centos7 下配置lnmp

RiverLi / 900人閱讀

摘要:安裝安裝增加一個(gè)配置文件配置如下連接還有連接配置文件位置修改下載安裝源設(shè)置開機(jī)啟動(dòng)重載所有修改過的配置文件安裝完成之后,生成的默認(rèn)密碼在文件中。或者修改為允許遠(yuǎn)程連接不推薦添加一個(gè)允許遠(yuǎn)程連接的帳戶

rpm -Uvh http://nginx.org/packages/cen...

安裝 yum install nginx

systemctl start nginx.service

rpm -Uvh https://dl.fedoraproject.org/...

rpm -Uvh https://mirror.webtatic.com/y...

安裝php yum install -y php70w php70w-mysql.x86_64 php70w-gd.x86_64 php70w-ldap.x86_64 php70w-mbstring.x86_64 php70w-mcrypt.x86_64 php70w-fpm

systemctl start php-fpm.service

增加一個(gè)nginx配置文件配置如下

server {
listen 80;
server_name test.com;
root /usr/share/nginx/html;

index index.html index.htm index.php;

charset utf-8;

location / {

try_files $uri $uri/ /index.php?$query_string;

}

location = /favicon.ico { access_log off; log_not_found off; }
location = /robots.txt { access_log off; log_not_found off; }

access_log off;

client_max_body_size 100m;

location ~ .php$ {

fastcgi_pass   127.0.0.1:9000;   #tcp連接 還有socket連接
fastcgi_split_path_info ^(.+.php)(/.+)$;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
include        fastcgi_params;

}

location ~* .(otf|eot|svg|ttf|woff)$ {

add_header Access-Control-Allow-Origin *;

}

location ~* ^.+.(jpg|jpeg|gif|png|swf|rar|zip|css|js|pdf|ico|html)$ {

access_log off;
expires 30d;
break;

}

location ~ /.ht {

deny all;

}
}

systemctl restart nginx

php-fpm配置文件位置:(/etc/php-fpm.d/www.conf)
? 修改

user =nginx
?group=nginx

systemctl restart php-fpm.service

mysql
下載
wget https://dev.mysql.com/get/mys...

安裝 mysql 源
yum localinstall mysql57-community-release-el7-11.noarch.rpm

yum install -y mysql-community-server

systemctl start mysqld

systemctl status mysqld

設(shè)置開機(jī)啟動(dòng)
shell> systemctl enable mysqld
重載所有修改過的配置文件
shell> systemctl daemon-reload

mysql 安裝完成之后,生成的默認(rèn)密碼在 /var/log/mysqld.log 文件中。使用 grep 命令找到日志中的密碼。

shell> grep "temporary password" /var/log/mysqld.log

首次通過初始密碼登錄后,使用以下命令修改密碼

shell> mysql -uroot -p
mysql> ALTER USER "root"@"localhost" IDENTIFIED BY "MyNewPass4!";

默認(rèn)只允許root帳戶在本地登錄,如果要在其它機(jī)器上連接mysql,必須添加一個(gè)允許遠(yuǎn)程連接的帳戶。或者修改 root 為允許遠(yuǎn)程連接(不推薦)
添加一個(gè)允許遠(yuǎn)程連接的帳戶
mysql> GRANT ALL PRIVILEGES ON . TO "zhangsan"@"%" IDENTIFIED BY "Zhangsan2018!"

文章版權(quán)歸作者所有,未經(jīng)允許請(qǐng)勿轉(zhuǎn)載,若此文章存在違規(guī)行為,您可以聯(lián)系管理員刪除。

轉(zhuǎn)載請(qǐng)注明本文地址:http://specialneedsforspecialkids.com/yun/31658.html

相關(guān)文章

  • 虛擬機(jī)Linux Centos7搭建web環(huán)境(LNMP

    摘要:本文內(nèi)容是,如何在下快速搭建環(huán)境。虛擬機(jī)實(shí)體機(jī)環(huán)境都可以。按照提示,輸入。 本文內(nèi)容是,如何在Linux centos7下快速搭建LNMP環(huán)境。虛擬機(jī)、實(shí)體機(jī)環(huán)境都可以。另外,安裝教程參考的是,下面這篇文章進(jìn)行文字排版和內(nèi)容擴(kuò)充,感謝hcchanqing作者。CentOS6.2 yum安裝配置LNMP服務(wù)器(Nginx+PHP+MySQL) 特別提醒:本文系統(tǒng)用的Centos7,是7!...

    Enlightenment 評(píng)論0 收藏0
  • 虛擬機(jī)Linux Centos7搭建web環(huán)境(LNMP

    摘要:本文內(nèi)容是,如何在下快速搭建環(huán)境。虛擬機(jī)實(shí)體機(jī)環(huán)境都可以。按照提示,輸入。 本文內(nèi)容是,如何在Linux centos7下快速搭建LNMP環(huán)境。虛擬機(jī)、實(shí)體機(jī)環(huán)境都可以。另外,安裝教程參考的是,下面這篇文章進(jìn)行文字排版和內(nèi)容擴(kuò)充,感謝hcchanqing作者。CentOS6.2 yum安裝配置LNMP服務(wù)器(Nginx+PHP+MySQL) 特別提醒:本文系統(tǒng)用的Centos7,是7!...

    Cristic 評(píng)論0 收藏0

發(fā)表評(píng)論

0條評(píng)論

最新活動(dòng)
閱讀需要支付1元查看
<