linux学完lamp的架构之后,就可以搭建自己的博客了,搭建自己的博客有几个好处:
发布的内容自己决定,不用别人监管更好的推广个人品牌自由设置域名今天我们就来跟大家一起搭建一个属于自己的博客,之前我们学的都是yum安装,今天我们来使用编译安装lamp,编译安装的难度就算整个运维学习中最难的部分了。
如果这部分你都觉得不难,那基本没有什么可以难住你的技术了。
我使用的是:
华为云: 2核4G云服务器
域名 : www.zmkjedu.cn
系统:centos7
本次使用的架构是LAMP, 以后可以在升级
搭建LAMP架构一 . 编译apache1. 安装依赖包a. 安装环境依赖[root@ecs-c13b ~]# yum -y install make gcc gcc-c++ openssl openssl-devel expat-devel
b. 编译安装依赖包apr[root@ecs-c13b ~]# wget http://archive.apache.org/dist/apr/apr-1.6.2.tar.gz[root@ecs-c13b ~]# tar xf apr-1.6.2.tar.gz [root@ecs-c13b ~]# cd apr-1.6.2[root@ecs-c13b apr-1.6.2]# ./configure --prefix=/usr/local/apr[root@ecs-c13b apr-1.6.2]# make && make install
c. 安装apr-util依赖包[root@ecs-c13b ~]# wget http://archive.apache.org/dist/apr/apr-util-1.6.0.tar.gz[root@ecs-c13b ~]# tar xf apr-util-1.6.0.tar.gz [root@ecs-c13b ~]# cd apr-util-1.6.0[root@ecs-c13b apr-util-1.6.0]# ./configure --prefix=/usr/local/apr-util --with-apr=/usr/local/apr/bin/apr-1-config[root@ecs-c13b apr-util-1.6.0]# make && make install
d. 安装pcre依赖包[root@ecs-c13b ~]# tar xf pcre-8.41.tar.gz
[root@ecs-c13b pcre-8.41]# cd pcre-8.41
root@ecs-c13b pcre-8.41]# ./configure --prefix=/usr/local/pcre
root@ecs-c13b pcre-8.41]# ./configure --prefix=/usr/local/pcre
[root@ecs-c13b ~]# wget https://mirrors.aliyun.com/apache/httpd/httpd-2.4.43.tar.gz
b. 解压编译[root@ecs-c13b ~]# tar xf httpd-2.4.43.tar.gz [root@ecs-c13b ~]# cd httpd-2.4.43[root@ecs-c13b httpd-2.4.43]#
[root@ecs-c13b httpd-2.4.43]# ./configure --prefix=/usr/local/apache --enable-so --enable-rewrite --enable-ssl --with-apr=/usr/local/apr --with-apr-util=/usr/local/apr-util --with-pcre=/usr/local/pcre --enable-modules=most --enable-mpms-shared=all --with-mpm=event
选项说明:
参数 | 说明 |
---|---|
–prefix=/usr/local/apache | 安装路径 |
–enable-so | 支持动态加载模块 |
–enable-rewrite | 支持网站地址重写 |
–enable-ssl | 支持SSL加密 |
–with-pcre=/usr/local/pcre | pcre路径 |
–with-apr=/usr/local/apr | apr路径 |
–with-apr-util=/usr/local/apr-util | apr-util路径 |
[root@ecs-c13b httpd-2.4.43]# make && make install
c. 配置文件及相应目录配置文件路径: /usr/local/apache2/conf/httpd.conf
网站根目录: /usr/local/apache/htdocs/
root@ecs-c13b ~]# cp /usr/local/apache/bin/apachectl /etc/init.d/
[root@ecs-c13b ~]# chmod +x /etc/init.d/apachectl
[root@ecs-c13b ~]#
[root@ecs-c13b ~]# /etc/init.d/apachectl restart ## 启动方法一(简单快捷)
vim /usr/lib/systemd/system/apache.service[Unit]Description=apacheAfter=network.target[Service]Type=forkingExecStart=/etc/init.d/apachectl startExecReload=/etc/init.d/apachectl restartExecStop=/etc/init.d/apachectl stopPrivateTmp=true[Install]WantedBy=multi-user.target
systemctl start apache.service
3. 测试是否启动[root@ecs-c13b ~]# lsof -i:80COMMAND PID USER FD TYPE DEVICE SIZE/OFF NODE namehttpd 1579 root 4u IPv6 58850 0t0 TCP *:http (ListEN)httpd 1580 daemon 4u IPv6 58850 0t0 TCP *:http (ListEN)httpd 1581 daemon 4u IPv6 58850 0t0 TCP *:http (ListEN)httpd 1582 daemon 4u IPv6 58850 0t0 TCP *:http (ListEN)[root@ecs-c13b ~]#
4. 浏览器端测试二. 源码编译MysqL1. 下载MysqL包[root@ecs-c13b ~]# wget http://www.MysqL.com/Downloads/MysqL-5.7/MysqL-5.7.19.tar.gz
2. 下载boost库MysqL从5.7版本之后,boost是必须的,建议把系统自带的boost库卸载,源码编译安装高版本
[root@ecs-c13b ~]# ls boost_1_59_0.tar.gz
boost_1_59_0.tar.gz
[root@ecs-c13b ~]# yum install -y cmake make gcc gcc-c++ bison ncurses ncurses-devel
4. 添加MysqL用户和用户组[root@ecs-c13b ~]# groupadd MysqL
[root@ecs-c13b ~]# useradd -M -s /sbin/nologin -r -g MysqL MysqL
[root@ecs-c13b ~]# tar xf boost_1_59_0.tar.gz -C /usr/local/src/
[root@ecs-c13b ~]# tar xf MysqL-5.7.19.tar.gz -C /usr/local/src/
规划安装目录:
安装目录: /var/lib/MysqL
数据目录: /var/lib/MysqL/data
创建规划目录并给权限:
[root@ecs-c13b ~]# mkdir -p /var/lib/MysqL/data
[root@ecs-c13b ~]# chown -R MysqL:MysqL /var/lib/MysqL/
[root@ecs-c13b ~]#
进入相应目录
[root@ecs-c13b ~]# cd /usr/local/src/[root@ecs-c13b src]# pwd/usr/local/src[root@ecs-c13b src]# cd MysqL-5.7.19/[root@ecs-c13b MysqL-5.7.19]#
cmake:
cmake -DCMAKE_INSTALL_PREFIX=/var/lib/MysqL \-DMysqL_DATADIR=/var/lib/MysqL/data \-DSYSconfdIR=/etc \-DWITH_MYISAM_STORAGE_ENGINE=1 \-DWITH_INNOBASE_STORAGE_ENGINE=1 \-DWITH_MEMORY_STORAGE_ENGINE=1 \-DWITH_READliNE=1 \-DMysqL_UNIX_ADDR=/var/lib/MysqL/MysqL.sock \-DMysqL_TCP_PORT=3306 \-DENABLED_LOCAL_INfile=1 \-DWITH_PARTITION_STORAGE_ENGINE=1 \-DEXTRA_CHARSETS=all \-DDEFAulT_CHARSET=utf8 \-DDEFAulT_ColLATION=utf8_general_ci \-DDOWNLOAD_BOOST=1 \-DWITH_BOOST=/usr/local/src/boost_1_59_0
参数从哪里找:
http://www.MysqL.com→→documentation→→选择对应的版本(5.7)Installation & Upgrades→→Installing MysqL from Source →→MysqL Source-Configuration Options
直接点击url: https://dev.mysql.com/doc/refman/5.7/en/source-configuration-options.html
[root@ecs-c13b MysqL-5.7.19]# make -j 4
编译时间很长,无聊的抽根烟等等吧
[root@ecs-c13b MysqL-5.7.19]# make install
7. 编辑MysqL配置文件a . 默认是没有的,需要手动输入[root@ecs-c13b ~]# cat /etc/my.cnf [MysqLd]basedir=/var/lib/MysqLdatadir=/var/lib/MysqL/dataport=3306socket=/var/lib/MysqL/MysqL.sockcharacter-set-server=utf8log-error=/var/log/MysqLd.logpID-file=/tmp/MysqLd.pID[MysqL]socket=/var/lib/MysqL/MysqL.sock [clIEnt]socket=/var/lib/MysqL/MysqL.sock[root@ecs-c13b ~]#
b. 添加path路径,让系统能够读到MySQL命令[root@ecs-c13b ~]# cat !$cat /etc/profile.d/MysqL.shexport PATH=/var/lib/MysqL/bin:$PATH
c. 设置生效root@ecs-c13b ~]# . /etc/profile.d/MysqL.sh
d. 生成启动脚本[root@ecs-c13b ~]# cp /var/lib/MysqL/support-files/MysqL.server /etc/init.d/MysqLd
[root@ecs-c13b ~]# chmod +x /etc/init.d/MysqLd
[root@ecs-c13b ~]#
[root@ecs-c13b ~]# chown -R MysqL:MysqL /var/lib/MysqL[root@ecs-c13b ~]# /var/lib/MysqL/bin/MysqLd --initialize-insecure --user=MysqL --basedir=/var/lib/MysqL --datadir=/var/lib/MysqL/data
f. 启动MysqL测试[root@ecs-c13b ~]# /etc/init.d/MysqLd startStarting MysqL.. ERROR! The server quit without updating PID file (/tmp/MysqLd.pID).[root@ecs-c13b ~]# cd /var/lib/MysqL/data/[root@ecs-c13b data]# lsauto.cnf ib_buffer_pool ibdata1 ib_logfile0 ib_logfile1[root@ecs-c13b data]# rm -rf ./*[root@ecs-c13b data]# /var/lib/MysqL/bin/MysqLd --initialize-insecure --user=MysqL --basedir=/var/lib/MysqL --datadir=/var/lib/MysqL/data[root@ecs-c13b data]# /etc/init.d/MysqLd startStarting MysqL. SUCCESS!
这里第一次启动失败了,然后删除data目录下的内容,重新初始化,之后启动成功
g. 修改数据库密码[root@ecs-c13b ~]# MysqLMysqL> set password for root@localhost=password('12345678');query OK, 0 rows affected, 1 warning (0.00 sec)MysqL> flush privileges;query OK, 0 rows affected (0.00 sec)
三. 编译PHP1. 下载PHP7的包[root@ecs-c13b ~]# wget http://jp2.PHP.net/distributions/PHP-7.1.24.tar.gz
2. 安装依赖包[root@ecs-c13b ~]# yum -y install PHP-mcrypt libmcrypt libmcrypt-devel autoconf freetype gd libmcrypt libpng libpng-devel libjpeg libxml2 libxml2-devel zlib curl curl-devel re2c PHP-pear
3. 编译安装PHPa. 解压[root@zmgaosh ~]# tar xf PHP-7.1.24.tar.gz -C /usr/local/src [root@zmgaosh ~]# cd /usr/local/src/PHP-7.1.24/
b. 编译[root@ecs-c13b PHP-7.1.24]# ./configure --prefix=/usr/local/PHP/ --with-apxs2=/usr/local/apache/bin/apxs --enable-mbstring --with-curl --with-gd --enable-fpm --enable-MysqLnd --with-pdo-MysqL=MysqLnd --with-config-file-path=/usr/local/PHP/etc/ --with-MysqLi=MysqLnd --with-MysqL-sock=/var/lib/MysqL/MysqL.sock --enable-maintainer-zts [root@ecs-c13b PHP-7.1.24]# make -j 4 && make install
c. 生成配置文件root@ecs-c13b PHP-7.1.24]# cp PHP.ini-production /usr/local/PHP/etc/PHP.ini
编译apache配置文件,使其支持PHP
[root@ecs-c13b PHP-7.1.24]# vim /usr/local/apache/conf/httpd.conf AddType application/x-httpd-PHP .PHPAddType application/x-httpd-PHP-source .PHPs
DirectoryIndex index.PHP index.HTML
d. 创建测试页面测试[root@ecs-c13b PHP-7.1.24]# cd /usr/local/apache/htdocs/[root@ecs-c13b htdocs]# pwd/usr/local/apache/htdocs[root@ecs-c13b htdocs]# vim index.PHP[root@ecs-c13b htdocs]# /etc/init.d/apachectl restart[root@ecs-c13b htdocs]# cat index.PHP <?PHP PHPinfo();?>
四. wordpress安装1. 上传wordpress中文版2. 解压[root@ecs-c13b htdocs]# ls
index.HTML index.PHP wordpress-5.4.2-zh_CN.zip
[root@ecs-c13b htdocs]#
[root@ecs-c13b htdocs]# unzip wordpress-5.4.2-zh_CN.zip
[root@ecs-c13b blog]# mv wordpress blog
blog/wp-amdin/setup-config.PHP
b. 设置数据库这里在点击提交前,先创建一个数据库叫blog
[root@ecs-c13b blog]# MysqL -p12345678MysqL> create database blog;query OK, 1 row affected (0.00 sec)
创建完后点击提交
c. 创建文件wp-config.php[root@ecs-c13b blog]# vim wp-config.php
创建这个文件,然后把上图中的文本框内容复制进去
保存退出
然后点击现在安装
d. 设置博客安装信息点击安装WordPresse. 安装完毕,登陆后台安装主题
选择自己喜欢的主题并安装
总结
博客做完了,是不是花费了你将近一两个小时,下一篇文章我们开始设置域名
总结以上是内存溢出为你收集整理的【Linux】手把手教你搭建自己个人博客(boss版)全部内容,希望文章能够帮你解决【Linux】手把手教你搭建自己个人博客(boss版)所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)