2017年过半,我们身处的风口和泡沫(转自 辩手李慕阳)

“听说共享经济更火了,我家门口都有共享充电宝了!”
“那可不是,我家门口都有共享篮球了!”
“那你最近还直播吗,赚得怎样了?”
“直播个屁呀,经纪公司欠我的钱还没清呢,我现在做短视频!”
“那是,我也不做VR了,我在做人工智能!”
……

这样的对话,也许就在你的家门口、某个星巴克的角落,但是你已经见怪不怪,这语气在过去三年里再熟悉不过。

整个上半年,速生速死,我们的商科科技创投圈,在不时出现的细小“风口”和迅速证伪的破灭中交替度过。

在过去一年的资本寒冬中,泡沫崩裂,公司倒闭,大多数“炮灰”们学会了冷静和聪明,不会脑子一热就跟。

但是他们也渐渐迷茫。回顾这半年,有哪些明显的趋势呢?

继续阅读“2017年过半,我们身处的风口和泡沫(转自 辩手李慕阳)”

CentOS7安装配置sendmail汇总——仍然没有配置成功

1. CentOS 7 默认安装了sendmail,直接命令行可以运行。

which sendmail,如下:
/usr/sbin/sendmail
关闭IPV6(默认是开启的,IPV4和IPv6的地址不一样,关闭后记得检查IP地址)
sysctl -w net.ipv6.conf.all.disable_ipv6=1
sysctl -w net.ipv6.conf.default.disable_ipv6=1

继续阅读“CentOS7安装配置sendmail汇总——仍然没有配置成功”

CentOS 7上MySQL 5.7.18莫名其妙Crash原因分析及解决

一、Centos中查看nginx、apache、php、mysql配置文件路径

1、判断apache
首先执行命令找到httpd路径
ps aux | grep httpd
如httpd路径为 /usr/local/apache/bin/httpd
然后执行以下命令
/usr/local/apache/bin/httpd -V | grep “SERVER_CONFIG_FILE”
即可找到编译时加载的配置文件路径 httpd.conf
-V 参数可以看到编译时配置的参数

继续阅读“CentOS 7上MySQL 5.7.18莫名其妙Crash原因分析及解决”

除IE和EDGE外,Chrome Firefox 和 iOS系统不再信任StartSSL提供的免费证书……

来自StartSSL官方的回复如下:

SSL Certificates issued after 21.10.2016 are distrusted in Chrome 56+, Firefox 51+,safari and latest version of IOS system. All certificates are distrusted in chrome 57. Official document about distrust > https://blog.mozilla.org/security/2016/10/24/distrusting-new-wosign-and-startcom-certificates/
     We are working hard on remediation plan (https://bugzilla.mozilla.org/show_bug.cgi?id=1311832), and we are doing everything to regain trust ASAP.
We create new root certificate now, You need to wait the root certificate audit by the main browser so it can be trusted in the main browser,it will take several months.
As an interim solution, if you pass the class 3 validation or EV validation(with full payment) you can get 1 trusted certificate(issued by Camerfirma)  that can be trusted in all browser.

mysql_connect(): Headers and client library minor version mismatch. Headers:

mysql_connect(): Headers and client library minor version mismatch. Headers:这样的错误是由于高版本的MySQL,低版本的MySQL Client API引起的,我在CentOS 7上安装MySQL-Server的时候出现了这个错误,解决办法:

卸载PHP-mysql

  1. yum remove phpmysql y

安装php-mysqlnd

  1. yum install phpmysqlnd y     ->    yum install php70w-mysqlnd -y

重启httpd

  1. systemctl restart httpd.service
php7版本需要安装php70w-mysqlnd,而不是php-mysqlnd