内容简介:新主机配置清单
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-----
扫码关注,或者搜索微信公众号:码农悟凡
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持 码农网
本站部分资源来源于网络,本站转载出于传递更多信息之目的,版权归原作者或者来源机构所有,如转载稿涉及版权问题,请联系我们。
嵌入式Linux应用开发完全手册
韦东山 主编 / 人民邮电出版社 / 2008-8 / 69.00元
本书全部实例代码及相关工具。 基于ARM 9+Linux 206平台,从基础讲起,引导读者快速入门,实例丰富,可直接应用于工程实践。 本书全面介绍了嵌入式Linux系统开发过程中,从底层系统支持到上层GUI应用的方方面面,内容涵盖Linux操作系统的安装及相关工具的使用、配置,嵌入式编程所需要的基础知识(交叉编译工具的选项设置、Makefile语法、ARM汇编指令等),硬件部件的使用及......一起来看看 《嵌入式Linux应用开发完全手册》 这本书的介绍吧!
JS 压缩/解压工具
在线压缩/解压 JS 代码
HTML 编码/解码
HTML 编码/解码