Centos 7 支持NTFS文件系统

我们知道默认大部分linux是不支持NTFS

如果有需要,我们需要安装ntfs-3g 来让系统支持ntfs

centos 默认的源中是没有nfts-3g的,需要额外加载

  1. 添加源,这里 …
点击查看更多…

mongodb启动不了:child process failed, exited with error number 100

  1. 发现公司的一个数据服务器,mongodb 无法qidong

运行 service mongod start 出现如下错误

[root@CNSHAS-JD05 mongo]# service mongod start
Starting mongod: about to fork child process, waiting until server is ready for connections.
forked process: 2484 …
点击查看更多…

ssh 免密码登陆

Permalink: 2016-07-08 10:50:00+08:00 by terry in Linux tags: ssh
  1. linux Server 运行下面命令:
ssh-keygen -t rsa -P ''

例如:

[root@vcentos .ssh]# ssh-keygen -t rsa -P ''
Generating public/private rsa key pair.
Enter file in which to save the key (/root/.ssh/id_rsa):
Your identification has been saved in /root/.ssh/id_rsa.
Your public key …
点击查看更多…

nginx+ php 配置 access denied

之前配置nginx+php的时候,每次,访问html页面是正常的,但是一旦访问php的页面就出现acces denied.

后来发现是nginx配置问题/etc/nginx/conf.d/default.conf

server {
    listen       80;
    server_name  localhost;

    #charset koi8-r;
    #access_log  /var/log/nginx/log/host.access.log  main;

    location / {
        root   /data …
点击查看更多…

centos 修改时区

1. 查看当前时区
date -R
2. 修改设置时区
方法(1)
tzselect
方法(2) 仅限于RedHat Linux 和 CentOS系统
timeconfig
方法(3) 适用于Debian
dpkg-reconfigure tzdata

方法(4)

(将Asia/shanghai-上海时区写入当前时区)#cp -f /usr/share …

点击查看更多…