CentOS 部署项目
因为电脑配置不行,并且部署原环境为CentOS,为了避免其他的部署问题.还CentOS试试
电脑配置不高,所以选择了Minimal(600M+).还有个Everthing(7.4+G),一个DVD(4G+)
网络
首先ifconfig命令无法使用
正确使用方式是
ip addr
然后会发现并没有获取的ip
于是需要修改一下网卡配置
之前的版本默认网卡都是eth0,新的改为enoxxx
$vi /etc/sysconfig/network-script/ifcfg-enoxxxxxxxxxx //编辑修改ifcfg-enoxxxx
ONBOOT="yes" //开机自动启动eth0网卡
MM_Controlled="no" //不通过NetworkManager控制eth0
BOOTPROTO="dhcp" //通过dhcp自动获得ip
$service network restart
此时你应该已经有网了~
centos minimal安装不能联网的解决办法
wget
wget也没有
好吧,安装一下
yum -y install wget
然后就可以愉快的wget阿里的源了~
mysql
yum -y install mysql
yum -y install mysql-devel
yum -y install mariadb-server mariadb
systemctl start mariadb #启动MariaDB
systemctl stop mariadb #停止MariaDB
systemctl restart mariadb #重启MariaDB
systemctl enable mariadb #设置开机启动
- mysql -u root -p
#默认没密码
---------------------
set password for 用户名@localhost = password('新密码');
#修改密码
GRANT ALL PRIVILEGES ON *.* TO root@'%' IDENTIFIED BY 'mypassword' WITH GRANT OPTION;
#远程连接权限
FLUSH PRIVILEGES;
#刷新权限
----------------------
go/git
yum -y install go
yum -y install git
yum -y install emacs
yum -y install samba samba-client samba-common
然后要调整samba才能在windows下看到.为了省略屌同步环节
在配置文件中/etc/samba/smb.conf添加
[workspace]
comment = samba share dir
path = /opt/src/wps.cn/
public = yes
writable = yes
printable = no
read only = no
browseable = yes
[centos]
comment = samba share dir
path = /
public = yes
writable = yes
printable = no
read only = no
browseable = yes
然后重启之
smbpasswd -a 你的用户名 //设置访问用的用户,会提示输入密码
systemctl restart smb
chkconfig smb on //设置开机自启
中间尝试了很多次.其实问题重启电脑之后就解决了.简直玄学
第二个’/’是为了方便我这边管理文件的,至此可以完美切换使用了,也不用强行去学习emasc了~
cd /usr/src
wget http://download.redis.io/releases/redis-3.0.6.tar.gz
tar xzf redis-3.0.6.tar.gz
cd redis-3.0.6
make
这里要补两句.这里成功了也没有success字样.只有
INSTALL install 若干行..一直以为没安装成功呢
3.0之后才可以组集群,所以选择的3.0之后逇版本
yum -y install ruby
yum -y install net-tools
redis集群启动工具需要ruby
netstat查看redis状态,这个也需要安装net-tools
包含redis安装已经详细的测试方法
运行建表的程序报错
in `require': cannot load such file -- redis (LoadError)
找了老半天的问题
redis-cluster安装和配置
“说明Ruby的redis接口没有安装,可以通过sudo gem install redis 进行安装”
sudo gem install redis
建表可能会超时,多运行几次即可