One Day 日报链接:http://waltershe.github.io/ribao/ 在此感谢原作者。
1,安装nodejs
apt-get install nodejs
nodejs
apt install redis-server
apt方法安装可能不是最新版,用源代码安装,下载源码包。
1)解压
tar xzvf /home/jpcc/下载/redis-stable 3.2.8.tar.gz
make
make test
make install
创建目录,cp文件,修改文件
mkdir /etc/redis
cp /opt/redis-stable/redis.conf /etc/redis
vim /etc/redis/redis.conf
找到dir 行,配置数据库的保存目录 /var/lib/redis
修改daemonize为yes,即默认以后台程序方式运行 daemonize no
修改生成默认日志文件位置 logfile "/home/jpcc/logs/redis.log"
4)启动时指定配置文件
redis-server /etc/redis/redis.conf
5)启动/检查/关闭 redis
redis-service /etc/redis/redis.conf #这个是配置文件启动
shutdown redis
redis-cli shutdown
redis-cli
下载源码:https://github.com/WalterShe/dailyreport/zipball/master
解压
unzip /home/jpcc/下载/WalterShe-dailyReport-e3fcff6.zip
cp xxxxxxxxxx /var/www/html
cd /var/www/html
npm install
node app.js
看到输出了端口号后就可以用了
地址:127.0.0.1:3000/install
手机版:127.0.0.1:3000/m
默认管理员:admin 密码:1234567
【转】
1
2
3
4
|
/var/www/html/views/admin/users
.hbs
#这里面改的只是提示"至少2个,最多25个字符"
/var/www/html/public/js/admin/users
.js
#第16行un.length >= 6 改成 un.length >= 2
/var/www/html/public/js/admin/users
.coffee
#这个应该是编译初期留下来的文件
修改以上三个文件内容<真正起到作用的貌似是第二个文件>
|
另外参考的一些网页:
http://maxbon.blog.51cto.com/6304762/1625782/ 一天日报系统部署
http://www.tuicool.com/articles/aQbQ3u redis启动方式
http://www.linuxdiyf.com/linux/22527.html redis安装