啥也没写
发布时间:2019-07-19 15:23:10
wget https://binaries.sonarsource.com/Distribution/sonarqube/sonarqube-7.7.zipunzip sonarqube-7.7.zipcd sonarqube-7.7mysql创建数据库create database sonar;cat conf/sonar.properties |grep -Ev "^#|^$"sonar.jdbc.username=rootsonar.jdbc.password=rootsonar.jdbc.url=jdbc:mysql://localhost:3306/so.........【阅读全文】
发布时间:2019-07-08 10:25:16
创建虚拟环境conda create -n sentry python=2.7source activate sentry安装sentry/usr/local/anaconda2/bin/pip install sentry初使化/usr/local/anaconda2/bin/sentry init /etc/sentry创建数据库[一定要innodb]mysql -uroot -prekfan -e 'create database sentry;'cd /etc/sentry修改相关参数安装mysq.........【阅读全文】
发布时间:2019-07-03 09:18:04
centos7strings /usr/lib64/libstdc++.so.6 | grep GLIBC#找到不libstd++wget https://adbin.top/packages/lib64.tar.gztar xf lib64.tar.gzexport LD_LIBRARY_PATH=/root/code-server1.1156-vsc1.33.1-linux-x64/lib64:$LD_LIBRARY_PATHcd code-server1.1156-vsc1.33.1-linux-x64./code-server就可以正常启动了.........【阅读全文】
发布时间:2019-06-10 15:05:31
celery==3.1.26Django==1.11.21django-celery==3.3.0flower==0.9.3kombu==3.0.37redis==2.10.6创建项目django-admin.py startproject celery_test创建apppython manange.py startapp kecelety在app中创建tasks.pycelery_test]# cat kecelety/tasks.py#!/usr/bin/env python#coding:utf-8import djangodj.........【阅读全文】
发布时间:2019-05-27 13:43:56
项目:https://github.com/imperador/chromefyofficial Chrome OS recovery image 下载chromeos恢复镜像https://cros-updates-serving.appspot.com/2013(eve)wget https://dl.google.com/dl/edgedl/chromeos/recovery/chromeos_11895.95.0_eve_recovery_stable-channel_mp.bin.zipunzip chromeos_11895.95.0_eve_reco.........【阅读全文】