07 2016 档案

摘要:1. yum install httpd 2. config /etc/httpd/conf/httpd.conf ServerName www.linuxidc.local DocumentRoot /wwwroot/www/ Requireall granted 3.systemctl enable httpd.service 4.systemctl start httpd.ser... 阅读全文
posted @ 2016-07-28 19:28 Alex~ 阅读(199) 评论(0) 推荐(0)
摘要:centOS7 x64 1. install gd-devel 2. ./configure --prefix=/usr/local/nginx --with-http_image_filter_module --add-module=fastdfs-nginx-module-master/src/ 3. make && make install 4. cp /usr/local/nginx/s... 阅读全文
posted @ 2016-07-25 13:50 Alex~ 阅读(212) 评论(0) 推荐(0)
摘要:1. rpm -Uvh http://nginx.org/packages/centos/7/noarch/RPMS/nginx-release-centos-7-0.el7.ngx.noarch.rpm 2. yum install -y nginx 3. systemctl start nginx.service 阅读全文
posted @ 2016-07-15 16:29 Alex~ 阅读(167) 评论(0) 推荐(0)
摘要:storage install nginx 1. update dependency packageyum -y install pcre-devel openssl openssl-devel gcc 2. wget https://codeload.github.com/happyfish100/fastdfs-nginx-module/zip/master3. unzip fastdf... 阅读全文
posted @ 2016-07-12 16:27 Alex~ 阅读(351) 评论(0) 推荐(0)
摘要:Version: os: centos7 x64 FastDFS: 5.05 libfastcommon: latest 1. dwonload libfastcommon https://github.com/happyfish100/libfastcommon.git install A) ./make.sh B) ./make.sh install 2.... 阅读全文
posted @ 2016-07-11 20:26 Alex~ 阅读(277) 评论(0) 推荐(0)
摘要:安装docker 1、yum install docker 方法一: 1、 docker pull redis 2、docker run -d --name redis-1 -p 7001:6379 redis 3、docker inspect redis-1 | grep IPA "SecondaryIPAddresses": null, "IPAddress": "1... 阅读全文
posted @ 2016-07-07 19:23 Alex~ 阅读(1657) 评论(0) 推荐(0)
摘要:1. yum install docker 2. set docker : systemctl enable docker.service 3. docker pull registry 4. docker run -d -v /data/docker/registry -p 5000:5000 --restart=always --name registry registry 5. docker... 阅读全文
posted @ 2016-07-07 15:26 Alex~ 阅读(246) 评论(0) 推荐(0)