新主机配置清单

栏目: 服务器 · Nginx · 发布时间: 8年前

内容简介:新主机配置清单

openresty

官网:https://openresty.org/cn/linux-packages.html

vim /etc/yum.repos.d/OpenResty.repo:

[openresty]
name=Official OpenResty Repository
baseurl=https://copr-be.cloud.fedoraproject.org/results/openresty/openresty/epel-$releasever-$basearch/
skip_if_unavailable=True
gpgcheck=1
gpgkey=https://copr-be.cloud.fedoraproject.org/results/openresty/openresty/pubkey.gpg
enabled=1
enabled_metadata=1

yum install openresty

Vim

插件管理工具: https://github.com/VundleVim/Vundle.vim

MySQL:

yum install mariadb-server mariadb -y yum install mysql-devel systemctl enable mariadb

vim /etc/my.conf:

[mysqld]
# 省略其他,增加下面一行配置
character-set-server = utf8

[mysql]
# 省略其他,增加下面一行配置
default-character-set = utf8

systemctl start mariadb /usr/bin/mysqladmin -u root password 'new-password' mysql -uroot -p 'new-password'

create database myblog;
GRANT ALL PRIVILEGES ON myblog.* TO 'the5fire'@'localhost' IDENTIFIED BY '123456';

导入数据: mysql -uthe5fire -p '123456'

> user myblog
> source myblog.sql

Python

yum install python-devel yum install python-setuptools easy_install pip pip install virtualenv

Redis

yum install redis

no root user

useradd the5fire passwd 'suibianshishenmeba'

su - the5fire
chmod 700 ~/.ssh
chmod 600 ~/.ssh/authorized_keys

----EOF-----

扫码关注,或者搜索微信公众号:码农悟凡

新主机配置清单

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持 码农网

查看所有标签

本站部分资源来源于网络,本站转载出于传递更多信息之目的,版权归原作者或者来源机构所有,如转载稿涉及版权问题,请联系我们

Foundations of PEAR

Foundations of PEAR

Good, Nathan A./ Kent, Allan / Springer-Verlag New York Inc / 2006-11 / $ 50.84

PEAR, the PHP Extension and Application Repository, is a bountiful resource for any PHP developer. Within its confines lie the tools that you need to do your job more quickly and efficiently. You need......一起来看看 《Foundations of PEAR》 这本书的介绍吧!

图片转BASE64编码
图片转BASE64编码

在线图片转Base64编码工具

随机密码生成器
随机密码生成器

多种字符组合密码

URL 编码/解码
URL 编码/解码

URL 编码/解码