linux学习笔记
无形myself
这个作者很懒,什么都没留下…
展开
-
CentOS 7 64位 LNMP(yum安装)相关安装目录
CentOS 7 64位 LNMP(yum安装)相关安装目录:php源代码:/usr/lib64/php php.ini路径:/etc php扩展模块都在/usr/lib64/php/moudules目录下。 扩展模块的配置文件一般都在/etc/php.d目录下usr/bin/mysql 是指:mysql的运行路径 var/lib/mysql 是指:mysql数据库文件的存放路径 u原创 2017-08-31 14:33:49 · 778 阅读 · 0 评论 -
Ubuntu 16.04 安装php7.1的扩展
安装php扩展包(扩展包根据个人需求安装,这里我只演示安装curl,其余的安装包安装的照葫芦画瓢) apt-cache search php7.1 查看php扩展包 sudo apt install php7.1-curl 安装curl参考:https://www.cnblogs.com/xuecong/p/7496918.html...转载 2018-07-10 15:18:43 · 2269 阅读 · 0 评论 -
Ubuntu18在编译php7.1的时候出现的一些问题以及解决方案
1.error: Please reinstall the BZip2 distribution 我已经安装了bzip2,应该是需要安装bzip2-dev,可是运行命令sudo apt-get install bzip2-dev 结果是:E: 无法定位软件包 bzip2-dev 最后在Ubuntu bzip2 package 发现该库在Ubuntu的真正名字是libbz2-dev,所以执...原创 2018-06-06 14:09:52 · 748 阅读 · 0 评论 -
Ubuntu16.04 apache2配置虚拟主机
1.首先在“/etc/hosts”文件中加入当前主机的IP地址和需要设置的虚拟主机名: 比如 192.168.100.100 www.test.com 2.在“/etc/apache2/sites-available”目录下有“000-default.conf” ,将000-default.conf 复制一份叫做 test.conf 3.进入test.conf ServerNa...转载 2018-04-28 09:53:05 · 609 阅读 · 0 评论 -
ubuntu16.04 apache下去掉php项目的index.php
1.首先启动mod_rewrite 终端输入:sudo a2enmod rewrite 2.更改/etc/apache2/apache2.conf(ubuntu16.04没有httpd.conf文件,配置文件是apache2.conf)文件,主要是 AllowOverride None 改为AllowOverride All 3.在项目根目录下新建一个.htaccess文件,内容写:&...原创 2018-04-28 09:28:40 · 625 阅读 · 0 评论 -
ubuntun16安装的mysql5.7.22编码设置问题
我在虚拟机安装了Ubuntu16,并在Ubuntu下安装了mysql5.7.22,使用命令登录mysql,执行 SHOW VARIABLES LIKE 'char%'; 命令结果是: 这个教程我只解决了character_set_database的编码】(https://blog.csdn.net/qq_32144341/article/details/51318390)我的是5.7版本所...原创 2018-04-26 16:29:23 · 247 阅读 · 2 评论 -
Centos 7搭建LAMP环境遇到的apache不识别PHP7
Apache是2.2版本,搭建过程如下: 【安装Apache】cd /usr/local/src/wget http://syslab.comsenz.com/downloads/linux/httpd-2.2.11.tar.gzuseradd www (增加 Apache运行账户)tar zvxf httpd-2.2.11.tar.bz2cd httpd-2.2.11...原创 2018-04-20 21:01:03 · 3275 阅读 · 0 评论 -
centos下nginx虚拟主机的配置
1.打开hosts文件vim /etc/hosts2.在文本内容的最后增加一行,其中的域名是自定义的。127.0.0.1 www.testci.com4.打开nginx的配置文件,按照文件中已有代码的格式添加一个server,我们暂时只修改下面标注的三处即可,如下:vim /user/local/nginx/conf/nginx.conf#user nob...原创 2018-03-28 15:24:32 · 453 阅读 · 0 评论 -
Centos 7搭建LNMP环境
1.安装必要的依赖软件yum -y install bzip2-devel curl-devel freetype-devel gcc libjpeg-devel libpng-devel libxslt-devel libxml2-devel openssl-devel pcre-devel pcre-devel zlib-devel2.下载php 下载地址:http://php....转载 2018-03-28 15:11:09 · 223 阅读 · 0 评论 -
CentOs 7 64位 安装Navicat
相关环境:CentOs 7 64位 参考文章:http://blog.csdn.net/u010824591/article/details/50496553 http://blog.csdn.net/u011402032/article/details/53843999 http://tieba.baidu.com/p/3转载 2017-08-31 13:29:23 · 3018 阅读 · 0 评论 -
Ubuntu 16.04 下搭建 LNMP环境安装php7.1的小坑
我之前参考;https://www.cnblogs.com/xuecong/p/7496918.html 安装nginx成功后,也访问到了nginx界面然后我参考他安装php 安装成功后,再去访问127.0.0.1的时候,呈现的界面居然是apache的,从头开始我就没有安装apache, 后来仔细看来下:sudo apt-get install php7.1命令出现的数据: 看图...原创 2018-09-07 10:43:56 · 571 阅读 · 0 评论