一区二区三区在线-一区二区三区亚洲视频-一区二区三区亚洲-一区二区三区午夜-一区二区三区四区在线视频-一区二区三区四区在线免费观看

服務(wù)器之家:專注于服務(wù)器技術(shù)及軟件下載分享
分類導(dǎo)航

Linux|Centos|Ubuntu|系統(tǒng)進(jìn)程|Fedora|注冊(cè)表|Bios|Solaris|Windows7|Windows10|Windows11|windows server|

服務(wù)器之家 - 服務(wù)器系統(tǒng) - Centos - 詳解CentOS 7.0源碼包搭建LNMP 實(shí)際環(huán)境搭建

詳解CentOS 7.0源碼包搭建LNMP 實(shí)際環(huán)境搭建

2021-12-09 15:41juestnow Centos

本篇文章主要介紹了Centos7+Nginx1.11.7+MySQL5.7.16+PHP7.1.0+openssl-1.1.0c,具有一定的參考價(jià)值,有興趣的可以了解一下。

Centos7+Nginx1.11.7+MySQL5.7.16+PHP7.1.0+openssl-1.1.0c

一、linux 系統(tǒng)限制配置

1、關(guān)閉系統(tǒng)防火墻    

?
1
2
systemctl stop firewalld.service 關(guān)閉防火墻
systemctl disable firewalld.service 禁用防火墻

2、關(guān)閉SElinux

?
1
2
sed -i 's/SELINUX=.*/SELINUX=disabled/g' /etc/selinux/config
setenforce 0 selinux 立即生效

二、系統(tǒng)安裝約定

軟件源代碼包存放位置:/usr/local/src

源碼包編譯安裝位置:/usr/local/軟件名字

三、下載軟件包

1、下載nginx最新穩(wěn)定版本

?
1
wget -P /usr/local/src http://nginx.org/download/nginx-1.11.7.tar.gz

2、下載mysql-boost-5.7.16 帶 boost 如果不帶源碼安裝如果網(wǎng)絡(luò)環(huán)境不會(huì)可能會(huì)出現(xiàn)錯(cuò)誤

?
1
wget -P /usr/local/src http://cdn.mysql.com/Downloads/MySQL-5.7/mysql-boost-5.7.16.tar.gz

3、下載php-7.1.0版本

?
1
wget -P /usr/local/src http://cn2.php.net/distributions/php-7.1.0.tar.gz

4、下載libmemcached-1.0.18

?
1
wget -P /usr/local/src https://launchpadlibrarian.net/165454254/libmemcached-1.0.18.tar.gz

5、下載php-memcached

?
1
2
3
yum -y install git
cd /usr/local/src
git clone -b php7 https://github.com/php-memcached-dev/php-memcached.git

6、下載openssl-1.1.0c

?
1
wget -P /usr/local/src https://www.openssl.org/source/openssl-1.1.0c.tar.gz

四、安裝編譯器及依賴

?
1
2
3
4
5
6
7
yum -y insyall epel-release
yum -y install patch gcc gcc-c++ readline-devel zlib-devel libffi-devel \
 openssl openssl-devel make autoconf automake libtool bison libxml2 \
 libxml2-devel libxslt-devel libyaml-devel python python-docutils \
 cmake imake expat-devel libaio libaio-devel bzr ncurses-devel wget \
 libjpeg libjpeg-devel libpng libpng-devel freetype freetype-devel \
 pcre-devel curl-devel libmcrypt libmcrypt-devel

五、編譯安裝mysql-boost-5.7.16 方便再次安裝創(chuàng)建mysql_install.sh腳本

1、mysql_install.sh內(nèi)容

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
#!/bin/bash
#yum update -y
#yum install -y cmake gcc-c++ ncurses-devel gcc make openssl*
#mysql安裝腳本
DBDIR='/data/mysql' #mysql數(shù)據(jù)存儲(chǔ)目錄
MYSQLDIR='/usr/local/mysql' # mysql安裝目錄
PASSWD='123456' # mysql root密碼 安裝完成可遠(yuǎn)程ip登陸
[ -d $DBDIR ] || mkdir $DBDIR -p
id mysql &> /dev/null
if [ $? -ne 0 ];then
 useradd mysql -s /sbin/nologin -M
fi
chown -R mysql:mysql $DBDIR
cd /usr/local/src
tar -xvf mysql-boost-5.7.16.tar.gz
cd mysql-5.7.16
cmake . -DCMAKE_INSTALL_PREFIX=$MYSQLDIR \
-DMYSQL_DATADIR=$DBDIR \
-DSYSCONFDIR=/etc \
-DWITH_INNOBASE_STORAGE_ENGINE=1 \
-DWITH_ARCHIVE_STORAGE_ENGINE=1 \
-DWITH_BLACKHOLE_STORAGE_ENGINE=1 \
-DWITH_READLINE=1 \
-DWITH_LIBWRAP=0 \
-DMYSQL_UNIX_ADDR=/tmp/mysql.sock \
-DWITH_SSL=system \
-DWITH_ZLIB=system \
-DWITH_BOOST=/usr/local/src/mysql-5.7.16/boost/boost_1_59_0 \
-DDEFAULT_CHARSET=utf8 \
-DDEFAULT_COLLATION=utf8_general_ci
if [ $? != 0 ];then
 echo "cmake error!"
 exit 1
fi
make && make install
if [ $? -ne 0 ];then
 echo "install mysql is failed!" && /bin/false
fi
sleep 2
chown -R mysql:mysql $MYSQLDIR
chown -R root:root $MYSQLDIR
cp $MYSQLDIR/support-files/my-default.cnf /etc/my.cnf
echo export PATH=$PATH:$MYSQLDIR/bin:$MYSQLDIR/lib >>/etc/profile
source /etc/profile
cat >> /etc/my.cnf << EOF
character_set_server = utf8
basedir = $MYSQLDIR
datadir = $DBDIR
port = 3306
server_id = 1
socket = /tmp/mysql.sock
explicit_defaults_for_timestamp=true
EOF
sed -i 's/sql_mode=.*/sql_mode=NO_ENGINE_SUBSTITUTION,STRICT_TRANS_TABLES,NO_AUTO_CREATE_USER/g' /etc/my.cnf
  source /etc/profile
  sleep 5
  cd $MYSQLDIR
  cp support-files/mysql.server /etc/init.d/mysqld
  chmod 700 /etc/init.d/mysqld
  mysql_ssl_rsa_setup
  rm -rf $DBDIR
  mysqld --initialize --user=mysql
  if [ $? -ne 0 ];then
 echo "install mysql is failed!" && /bin/false
fi
#/etc/init.d/mysqld stop
  mysqld_safe --user=mysql --skip-grant-tables --skip-networking &
  sleep 5
  echo "update user set authentication_string=Password('$PASSWD') where user='root'; flush privileges;" | mysql mysql
 
  echo "set password=Password('$PASSWD'); flush privileges;" | mysql -u root -p$PASSWD --connect-expired-password
  sleep 5
  echo "GRANT ALL PRIVILEGES ON *.* TO root@'%' IDENTIFIED BY '$PASSWD'; FLUSH PRIVILEGES; " | mysql -u root -p$PASSWD
  /etc/init.d/mysqld restart
  if [ $? -ne 0 ];then
 echo "install mysql is failed!" && /bin/false
fi
IDSO=`cat /etc/ld.so.conf| grep $MYSQLDIR/lib | wc -l `
if [ $IDSO -eq 0 ];then
echo "$MYSQLDIR/lib" >> /etc/ld.so.conf
ldconfig
fi
chkconfig mysqld on

2、給 mysql_install.sh  可執(zhí)行權(quán)限

?
1
chmod +x mysql_install.sh

3、運(yùn)行mysql_install.sh 

?
1
./mysql_install.sh

六、編譯安裝php7  創(chuàng)建php安裝腳本php7_install.sh

1、vim php7_install.sh

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
#!/bin/bash
if [ $( find / -name mysql | wc -l ) -gt 1 ];then
echo " mysql is install "
else
yum install -y mysql
fi
cd /usr/local/src
tar -xzvf php-7.1.0.tar.gz
cd ./php-7.1.0
./configure \
--prefix=/usr/local/php7 \
--exec-prefix=/usr/local/php7 \
--with-config-file-path=/usr/local/php7/etc \
 --with-curl \
 --with-freetype-dir \
 --with-gd \
 --with-gettext \
 --with-iconv-dir \
 --with-kerberos \
 --with-libdir=lib64 \
 --with-libxml-dir \
 --with-mysqli \
 --with-openssl \
 --with-pcre-regex \
 --with-pdo-mysql \
 --with-pdo-sqlite \
 --with-pear \
 --with-png-dir \
 --with-xmlrpc \
 --with-xsl \
 --with-zlib \
 --with-zlib-dir \
 --with-mhash \
 --with-mcrypt \
 --with-openssl-dir \
 --with-jpeg-dir \
 --enable-fpm \
 --enable-bcmath \
 --enable-libxml \
 --enable-inline-optimization \
 --enable-gd-native-ttf \
 --enable-mbregex \
 --enable-mbstring \
 --enable-opcache \
 --enable-pcntl \
 --enable-shmop \
 --enable-soap \
 --enable-sockets \
 --enable-sysvsem \
 --enable-xml \
 --enable-zip
make && make install
 
# 中文php畫圖取消這個(gè)參數(shù),不然會(huì)出現(xiàn)亂碼
# --enable-gd-jis-conv \

2、給 php7_install.sh 可執(zhí)行權(quán)限

?
1
chmod +x php7_install.sh

3、執(zhí)行 php7_install.sh

?
1
./php7_install.sh

4、編譯安裝libmemcached-1.0.18

vim libmemcached_install.sh

?
1
2
3
4
5
6
7
8
9
#/!bin/bash
cd /usr/local/src
tar -zxvf libmemcached-1.0.18.tar.gz
cd ./libmemcached-1.0.18
./configure --prefix=/usr/local/libmemcached
make && make install
 
chmod +x libmemcached_install.sh
./libmemcached_install.sh

5、編譯安裝php-memcached

vim memcached_install.sh

?
1
2
3
4
5
6
7
8
9
10
#!/bin/bash
cd /usr/local/src/php-memcached
/usr/local/php7/bin/phpize
./configure --with-libmemcached-dir=/usr/local/libmemcached \
 --with-php-config=/usr/local/php7/bin/php-config \
 --disable-memcached-sasl
make && make install
 
chmod +x memcached_install.sh
./memcached_install.sh

留意編完成生成文件路徑

?
1
Installing shared extensions:  /usr/local/php7/lib/php/extensions/no-debug-non-zts-20160303/

七、編譯安裝openssl-1.1.0c

vim openssl_install.sh

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#!/bin/bash
#openssl install
cd /usr/local/src
tar -xvf openssl-1.1.0c.tar.gz
cd /usr/local/src/openssl-1.1.0c
./config --openssldir=/usr/local/ssl
make && make install
./config shared --openssldir=/usr/local/ssl
make clean
make && make install
IDSO=`cat /etc/ld.so.conf| grep /usr/local/lib64 | wc -l `
if [ $IDSO -eq 0 ];then
echo "/usr/local/lib64" >> /etc/ld.so.conf
fi
ldconfig
 
chmod +x openssl_install.sh
./openssl_install.sh

八、編譯安裝nginx-1.11.7

vim nginx_install.sh

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
#!/bin/bash
# nginx install
id nginx &> /dev/null
if [ $? -ne 0 ];then
 groupadd -r nginx
 useradd -g nginx -r nginx
fi
cd /usr/local/src
tar -xvf nginx-1.11.7.tar.gz
cd /usr/local/src/nginx-1.11.7
./configure --prefix=/usr/local/nginx \
--sbin-path=/usr/sbin/nginx \
--conf-path=/etc/nginx/nginx.conf \
--error-log-path=/var/log/nginx/error.log \
--http-log-path=/var/log/nginx/access.log \
--pid-path=/var/run/nginx.pid \
--lock-path=/var/run/nginx.lock \
--http-client-body-temp-path=/var/cache/nginx/client_temp \
--http-proxy-temp-path=/var/cache/nginx/proxy_temp \
--http-fastcgi-temp-path=/var/cache/nginx/fastcgi_temp \
--http-uwsgi-temp-path=/var/cache/nginx/uwsgi_temp \
--http-scgi-temp-path=/var/cache/nginx/scgi_temp \
--user=nginx \
--group=nginx \
--with-http_ssl_module \
--with-http_realip_module \
--with-http_addition_module \
--with-http_sub_module \
--with-http_dav_module \
--with-http_flv_module \
--with-http_mp4_module \
--with-http_gunzip_module \
--with-http_gzip_static_module \
--with-http_random_index_module \
--with-http_secure_link_module \
--with-http_stub_status_module \
--with-http_auth_request_module \
--with-threads \
--with-stream \
--with-openssl=/usr/local/src/openssl-1.1.0c \ # openssl 源碼解壓路徑
--with-stream_ssl_module \
--with-http_slice_module \
--with-mail \
--with-mail_ssl_module \
--with-file-aio \
--with-http_v2_module \
--with-ipv6
mkdir -pv /var/cache/nginx/{client_temp,proxy_temp,fastcgi_temp,uwsgi_temp,scgi_temp}
make && make install

2、給nginx_install.sh可執(zhí)行權(quán)限

?
1
2
chmod +x nginx_install.sh
./nginx_install.sh

九、配置PHP7

/usr/local/php7/lib/php/extensions/no-debug-non-zts-20160303/memcached.so

這個(gè)路徑是 隨機(jī)可變的所以要注意

留意變完成生成文件路徑

Installing shared extensions:     /usr/local/php7/lib/php/extensions/no-debug-non-zts-20160303/

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
cd /usr/local/src/php-7.1.0
cp php.ini-production /usr/local/php7/etc/php.ini
cp /usr/local/php7/etc/php-fpm.conf.default /usr/local/php7/etc/php-fpm.conf
cp /usr/local/php7/etc/php-fpm.d/www.conf.default /usr/local/php7/etc/php-fpm.d/www.conf
sed -i "s/user = .*/user = nginx/g" /usr/local/php7/etc/php-fpm.d/www.conf
sed -i "s/group = .*/group = nginx/g" /usr/local/php7/etc/php-fpm.d/www.conf
cp ./sapi/fpm/init.d.php-fpm /etc/init.d/php-fpm
chmod +x /etc/init.d/php-fpm
chkconfig php-fpm on
cat >> /usr/local/php7/etc/php.ini<< EOF
soap.wsdl_cache_enabled=1
max_input_time = 600
max_execution_time = 300
date.timezone = Asia/Shanghai
post_max_size = 32M
memory_limit = 128M
mbstring.func_overload = 1
extension=/usr/local/php7/lib/php/extensions/no-debug-non-zts-20160303/memcached.so
EOF
cat > /usr/local/nginx/html/index.php<<EOF
<?php
phpinfo();
?>
EOF
service php-fpm start

十、配置nginx

1、重命名:/etc/nginx/nginx.conf

?
1
mv /etc/nginx/nginx.conf /etc/nginx/nginx.conf.back

2、新建/etc/nginx/nginx.conf

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
cat > /etc/nginx/nginx.conf << EOF
user nginx;
worker_processes 1;
 
error_log /var/log/nginx/error.log warn;
pid  /var/run/nginx.pid;
 
 
events {
 worker_connections 1024;
}
 
 
http {
 include  /etc/nginx/mime.types;
 default_type application/octet-stream;
 
 log_format main '\$remote_addr - \$remote_user [\$time_local] "\$request" '
      '\$status \$body_bytes_sent "\$http_referer" '
      '"\$http_user_agent" "\$http_x_forwarded_for"';
 
 access_log /var/log/nginx/access.log main;
 
 sendfile  on;
 #tcp_nopush  on;
 
 keepalive_timeout 65;
 
 #gzip on;
 
 include /etc/nginx/conf.d/*.conf;
}
EOF

3、創(chuàng)建/etc/nginx/conf.d

?
1
mkdir -p /etc/nginx/conf.d

4、創(chuàng)建支持php-fpm web nginx配置

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
cat > /etc/nginx/conf.d/default.conf << EOF
server {
  listen  80;
  server_name localhost;
 
  #charset koi8-r;
 
  #access_log logs/host.access.log main;
 
  location / {
   root /usr/local/nginx/html;
   index index.php index.html index.htm;
  }
 
  #error_page 404    /404.html;
 
  # redirect server error pages to the static page /50x.html
  #
  error_page 500 502 503 504 /50x.html;
  location = /50x.html {
   root html;
  }
 
  # proxy the PHP scripts to Apache listening on 127.0.0.1:80
  #
  #location ~ \.php$ {
  # proxy_pass http://127.0.0.1;
  #}
 
  # pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000
  #
  location ~ \.php$ {
   root   /usr/local/nginx/html;
   fastcgi_pass 127.0.0.1:9000;
   fastcgi_index index.php;
   fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
   include  fastcgi_params;
  }
  location ~* ^.+\.(jpg|jpeg|gif|png|bmp)$ {
   access_log off;
   root  opencart;
   expires  30d;
      break;
  }
}
EOF

5、創(chuàng)建nginx啟動(dòng)腳本

vim /etc/init.d/nginx

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
# chkconfig: 2345 10 90
# description: Start and Stop nginx
 
PATH=/usr/local/bin:/sbin:/usr/bin:/bin
 
EXEC=/usr/sbin/nginx
PIDFILE=/var/run/nginx.pid
CONF="/etc/nginx/nginx.conf"
AUTH="1234"
 
case "$1" in
  start)
    if [ -f $PIDFILE ]
    then
      echo "$PIDFILE exists, process is already running or crashed."
    else
      echo "Starting nginx server..."
      $EXEC -c $CONF &
    fi
    if [ "$?"="0" ]
    then
      echo "nginx is running..."
    fi
    ;;
  stop)
    if [ ! -f $PIDFILE ]
    then
      echo "$PIDFILE exists, process is not running."
    else
      PID=$(cat $PIDFILE)
      echo "Stopping..."
      kill -9 $PID
      PID=$(pidof nginx)
      kill -9 $PID
      rm -rf /var/run/nginx.pid
      sleep 2
      while [ -x $PIDFILE ]
      do
        echo "Waiting for nginx to shutdown..."
        sleep 1
      done
      echo "nginx stopped"
    fi
    ;;
  reload)
 
   $EXEC -s reload
    ;;
  restart|force-reload)
    ${0} stop
    ${0} start
    ;;
  *)
    echo "Usage: /etc/init.d/nginx {start|stop|restart|force-reload|reload}" >&2
    exit 1
esac

6、給 /etc/init.d/nginx 可執(zhí)行權(quán)限

?
1
chmod +x /etc/init.d/nginx

7、設(shè)置開機(jī)啟動(dòng)

?
1
chkconfig nginx on

8、啟動(dòng)nginx

?
1
service nginx start

十一、測(cè)試

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
[root@QKA169 src]# openssl version 
OpenSSL 1.1.0c 10 Nov 2016
mysql -u root -p123456
mysql> show databases;
+--------------------+
| Database   |
+--------------------+
| information_schema |
| mysql    |
| performance_schema |
| sys    |
+--------------------+
4 rows in set (0.00 sec)
看看是否登陸成功。遠(yuǎn)程帶IP是否登陸成功
mysql -u root -h192.168.1.69 -p123456
mysql> show databases;
+--------------------+
| Database   |
+--------------------+
| information_schema |
| mysql    |
| performance_schema |
| sys    |
+--------------------+
4 rows in set (0.00 sec)
 
mysql: [Warning] Using a password on the command line interface can be insecure.
Welcome to the MySQL monitor. Commands end with ; or \g.
Your MySQL connection id is 6
Server version: 5.7.16 Source distribution
 
Copyright (c) 2000, 2016, Oracle and/or its affiliates. All rights reserved.
 
Oracle is a registered trademark of Oracle Corporation and/or its
affiliates. Other names may be trademarks of their respective
owners.
 
Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.
 
mysql>

測(cè)試nginx 是否能打開

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
[root@QKA169 html]# ps -ef | grep php-fpm
root  337433  1 0 18:03 ?  00:00:00 php-fpm: master process (/usr/local/php7/etc/php-fpm.conf)
nobody 337434 337433 0 18:03 ?  00:00:00 php-fpm: pool www
nobody 337435 337433 0 18:03 ?  00:00:00 php-fpm: pool www
root  337454 37888 0 18:12 pts/0 00:00:00 grep --color=auto php-fpm
[root@QKA169 html]# ps -ef | grep nginx
root  337400  1 0 18:01 ?  00:00:00 nginx: master process /usr/sbin/nginx -c /etc/nginx/nginx.conf
nginx  337401 337400 0 18:01 ?  00:00:00 nginx: worker process
root  337456 37888 0 18:13 pts/0 00:00:00 grep --color=auto nginx
[root@QKA169 html]# netstat -nalp | grep 80
tcp  0  0 0.0.0.0:80    0.0.0.0:*    LISTEN  337400/nginx: maste
tcp  0  0 192.168.1.69:80   192.168.6.6:54714  TIME_WAIT -    
tcp  0  0 192.168.1.69:80   192.168.6.6:54709  TIME_WAIT -
遠(yuǎn)程打開    
http://192.168.1.69/

以上就是本文的全部?jī)?nèi)容,希望對(duì)大家的學(xué)習(xí)有所幫助,也希望大家多多支持服務(wù)器之家。

原文鏈接:http://juestnow.blog.51cto.com/1515305/1883133

延伸 · 閱讀

精彩推薦
  • CentosCentOS 6.6實(shí)現(xiàn)永久修改DNS地址的方法

    CentOS 6.6實(shí)現(xiàn)永久修改DNS地址的方法

    這篇文章主要介紹了CentOS 6.6實(shí)現(xiàn)永久修改DNS地址的方法,涉及針對(duì)CentOS配置文件的相關(guān)設(shè)置技巧,具有一定參考借鑒價(jià)值,需要的朋友可以參考下 ...

    Linux社區(qū)4472020-08-21
  • CentosCentOS7設(shè)置日期和時(shí)間方法以及基本概念介紹

    CentOS7設(shè)置日期和時(shí)間方法以及基本概念介紹

    這篇文章主要介紹了CentOS7設(shè)置日期和時(shí)間方法以及基本概念介紹,本文講解使用CentOS7中的新命令timedatectl設(shè)置日期時(shí)間方法,需要的朋友可以參考下 ...

    CentOS之家6522019-09-19
  • CentosCentOS6.5下Redis安裝與配置詳細(xì)步驟

    CentOS6.5下Redis安裝與配置詳細(xì)步驟

    本篇文章主要介紹了CentOS6.5下Redis安裝與配置詳細(xì)步驟,詳細(xì)介紹redis單機(jī)單實(shí)例安裝與配置,服務(wù)及開機(jī)自啟動(dòng)。有興趣的可以了解一下。...

    飛流11452021-12-24
  • Centoscentos不小心刪除/root目錄該如何解決?

    centos不小心刪除/root目錄該如何解決?

    一些朋友最近在問小編centos不小心刪除/root目錄該如何解決?今天小編就為大家分享centos不小心刪除/root目錄解決辦法;希望對(duì)大家會(huì)有幫助,有需要的朋友...

    腳本之家8022019-05-29
  • Centoscentos 安裝與操作方法

    centos 安裝與操作方法

    這篇文章主要介紹了centos 安裝與操作方法,需要的朋友可以參考下...

    centos之家5272019-07-11
  • CentosCentos 7開啟網(wǎng)卡自動(dòng)獲取IP的詳細(xì)方法

    Centos 7開啟網(wǎng)卡自動(dòng)獲取IP的詳細(xì)方法

    本篇文章主要介紹了Centos 7開啟網(wǎng)卡自動(dòng)獲取IP的詳細(xì)方法,小編覺得挺不錯(cuò)的,現(xiàn)在分享給大家,也給大家做個(gè)參考。一起跟隨小編過來看看吧...

    凌鋒8972021-12-29
  • CentosCentOS下Uptime命令詳解

    CentOS下Uptime命令詳解

    在Linux下,我們可以使用uptime命令,而且此命令不必使用root權(quán)限。uptime命令在系統(tǒng)中已經(jīng)默認(rèn)安裝了。今天小編為大家?guī)淼氖荂entOS下Uptime命令詳解;希望...

    CentOS之家11482019-06-19
  • CentosCentos7運(yùn)用/dev/shm進(jìn)行網(wǎng)站優(yōu)化

    Centos7運(yùn)用/dev/shm進(jìn)行網(wǎng)站優(yōu)化

    這篇文章主要介紹了LINUX中Centos7運(yùn)用/dev/shm進(jìn)行網(wǎng)站優(yōu)化相關(guān)知識(shí)點(diǎn),對(duì)此有興趣的朋友參考學(xué)習(xí)下。...

    彬菌9912022-03-02
主站蜘蛛池模板: 亚洲欧洲网站 | 女人用粗大自熨喷水在线视频 | 叛佛 作者满栀小说免费阅读 | 国产传媒在线播放 | 超强台风免费观看完整版视频 | 四虎精品成人免费视频 | 成人影院视频 | 韩剧在线免费观看 | 欧美理论片手机在线观看片免费 | 扒开腿开嫩苞 | 涩涩屋在线播放 | 国模孕妇季玥全部人体写真 | 九九热在线免费观看 | 美女黑人做受xxxxxⅹ | 91久久线看在观草草青青 | 秋霞宅宅236理论片 秋霞一级黄色片 | 办公室大战秘书呻吟 | 国内精品久久久久久久久久久久 | 丁香网五月天 | 久久99re2在线视频精品 | 精品精品国产自在现拍 | 黑人群性xxx | 免费的强动漫人物的 | 青青青青久久国产片免费精品 | a天堂中文在线 | 久久久久久久久a免费 | 久久青草免费91线频观看站街 | 国内精品国语自产拍在线观看55 | 日本亚欧乱色视频在线观看 | 和老外3p爽粗大免费视频 | 国产午夜精品不卡视频 | 久久亚洲国产成人影院 | 性色香蕉AV久久久天天网 | 亚洲精品电影天堂网 | 欧美日韩1区 | 风间由美m3u8在线 | 午夜国产精品视频在线 | 精品国产品国语在线不卡丶 | 久久精品国产亚洲AV麻豆欧美玲 | 很黄的孕妇a级黄毛片 | 性一交一乱一伧老太 |