51
Dev开发社区
首页
文章
问答
工具
搜索
登录
注册
#cent
centos7.3查看时区
[root@iZ2ze3gf6h0zndx5dxyhqiZ~]#date-RFri,13Apr201814:44:25+0800 即可查看时区我们国家的东八区(+0800) [root@iZ2ze3gf6h0zndx5dxyhqiZ~]#cat/etc/sysconfig/clockZONE="As...
代码星球
·
2021-02-11
centos7.3
查看
时区
CentOS7 安装svn
1 yuminstallsubversion 2运行svn--version报错svn:errorwhileloadingsharedlibraries:libaprutil-1.so.0:cannotopensharedobjectfile:Nosuchfileordirectory找不到liba...
代码星球
·
2021-02-11
CentOS7
安装
svn
centos7使用tinyproxy搭建简单http(s)服务器,无用户密码验证
1 安装yuminstalltinyproxy 2查找配置文件地址whereistinyproxy.conf 3编辑配置文件vimtinyproxy.conf把allow127.0.0.1注释掉 意味着开启所有人可访问因为无用户和密码建议设置allow自己的IP解释:port:代...
代码星球
·
2021-02-11
centos7
使用
tinyproxy
搭建
简单
centos7.3给squid搭建代理服务器添加认证apache
证使用浏览器打开然后输入用户名和密码的方式所以使用基于web服务的apache的htpasswd1创建用户设置密码htpasswd-cd/etc/squid/passwordstest#提示输入密码,注意密码不要超过8位 2测试密码文件/usr/lib64/squid/basic_ncsa_auth/etc/...
代码星球
·
2021-02-11
centos7.3
squid
搭建
代理
服务器
centos7.3使用squid搭建代理服务器
centos7.3使用squid搭建代理服务器1安装yuminstallsquid2编辑vi/etc/squid/squid.conf3设置最底部增加如下http_accessallowall然后注释掉http_accessdenyall看到默认端口是31284启动servicesquidstart5输入命令查看监听n...
代码星球
·
2021-02-11
centos7.3
使用
squid
搭建
代理
centos7.3 快速安装 mariadb(mysql)
从最新版本的linux系统开始,默认的是Mariadb而不是mysql!使用系统自带的repos安装很简单:yuminstallmariadbmariadb-serversystemctlstartmariadb==>启动mariadbsystemctlenablemariadb==>开机自启动mysql_...
代码星球
·
2021-02-11
centos7.3
快速
安装
mariadb
mysql
Centos7修改profile错误导致命令行不能用,情况的解救方案,dir命令不能用
Linux修改profile文件改错了,恢复的方法Linux修改profile文件改错了,恢复的方法在改profile的时候,改出问题了,除了cd以外的命令基本都不能用了,连vi都不能用了,上网查了下,用exportPATH=/usr/bin:/usr/sbin:/bin:/sbin:/usr/X11R6/bin,然后...
代码星球
·
2021-02-11
命令
能用
Centos7
修改
profile
centos7.3安装zip,unzip
安装命令:yuminstall-yunzipzip ...
代码星球
·
2021-02-11
centos7.3
安装
zip
unzip
centos7.3安装zend guard loader3.3 for php5.6
1下载zendguardloader到这里选择自己的系统版本 我选择的64位forphp5.6.3 linuxhttp://www.zend.com/en/products/loader/downloads#Windows 2找到地址直接wgetwget-chttp://downloads...
代码星球
·
2021-02-11
centos7.3
安装
zend
guard
loader3.3
centos73下php5.6安装GD库
yum--enablerepo=remi-php56installphp-gdphp-mysqlphp-mbstringphp-xmlphp-mcrypt YUM安装的找到了源 分分钟搞得...
代码星球
·
2021-02-11
centos73
php5.6
安装
GD
centos中YUM安装后文件的常见路径
1php的相关1)ini的文件 /etc/php.ini2apache相关1)conf的文件/etc/httpd/conf2)错误日志 /etc/httpd/logs3)扩展文件 /etc/httpd/modules/3mysql相关1)配置文件/etc/my.cnf...
代码星球
·
2021-02-11
centos
YUM
安装
文件
常见
centos6.5 64练手安装memcached,PHP调试
思路 先安装memcached 然后安装php的基于扩展libmemcache,然后安装phpmemcache扩展包,然后把扩展添加到php.ini1yum安装简单方便yuminstallmemcached 安装完毕了2查看下memcached-h 3把memcached加入启动...
代码星球
·
2021-02-11
centos6.5
练手
安装
memcached
PHP
最近玩的centos7.3用的防火墙转载
1、firewalld简介firewalld是centos7的一大特性,最大的好处有两个:支持动态更新,不用重启服务;第二个就是加入了防火墙的“zone”概念 firewalld有图形界面和工具界面,由于我在服务器上使用,图形界面请参照官方文档,本文以字符界面做介绍 firewalld的字符界面管理...
代码星球
·
2021-02-11
最近
centos7.3
用的
防火墙
转载
centos7.3nginx配置二级域名过程
nginx1.10.21先检查/etc/nginx/nginx.conf是否include conf.dinclude/etc/nginx/conf.d/*.conf;默认都是包含的,如果没有把代码加上,如果有继续第二步2来到conf.d文件夹vimnginx.6328.net.conf把一下代码添加serv...
代码星球
·
2021-02-11
centos7.3nginx
配置
二级域名
过程
CentOS7.3下yum练手安装Nginx,支持php5.4
yuminstallphpphp-devel 安装的是5.4那么安装完毕了,怎么设置nginx和php解析1添加nginx 默认主页index.php vim.../etc/nginx/nginx.conf indexindex.htmlindex.htmindex.php&nb...
代码星球
·
2021-02-11
CentOS7.3
yum
练手
安装
Nginx
首页
上一页
...
16
17
18
19
20
...
下一页
尾页
按字母分类:
A
B
C
D
E
F
G
H
I
J
K
L
M
N
O
P
Q
R
S
T
U
V
W
X
Y
Z
其他