之前一直想写一个论坛或者wiki,不过最近感觉想先部署着,以后慢慢改了。
安装Moinmoin
1 2 3 4 5 6 7 8
| curl http://static.moinmo.in/files/moin-1.9.9.tar.gz -o moin-1.9.9.tar.gz python2.7 wikiserver.py
# 开放端口 iptables -A INPUT -p tcp --dport 18082 -j ACCEPT /etc/rc.d/init.d/iptables save /etc/init.d/iptables restart
|
安装Mysql(虽然最后这个框架没用到)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
| wget https://dev.mysql.com/get/mysql80-community-release-el6-1.noarch.rpm yum localinstall mysql80-community-release-el6-1.noarch.rpm
yum repolist enabled | grep "mysql.*-community.*"
sudo yum install mysql-community-server
service mysqld start
sudo grep 'temporary password' /var/log/mysqld.log
# passwd: 5!iozIn&t;Vw mysql -uroot -p ALTER USER 'root'@'localhost' IDENTIFIED BY 'fighton';
# executing pip3.6 install -r requirements.txt # 缺少mysql_config
yum install mysql-devel
python3 manage.py runserver -h 0.0.0.0
|
reference
- Installing MySQL on Linux Using the MySQL Yum Repository
最后更新时间:
欢迎评论~