The following tutorial column of Pagoda Installation will introduce you to some basic operations of summarizing the pagoda. I hope it will be helpful to friends in need!
Some basic operations of the pagoda
1: Stop the pagoda
/etc/init.d/bt stop
2: Start the pagoda
/etc/init.d/bt start
3: Restart Pagoda
/etc/init.d/bt restart
4: Uninstall Pagoda
/etc/init.d/bt stop && chkconfig --del bt && rm -f /etc/init.d/bt && rm -rf /www/server/panel
5: View current Pagoda panel port
cat /www/server/panel/data/port.pl
6: Modify Pagoda panel port number
echo '8881' > /www/server/panel/data/port.pl && /etc/init.d/bt restart
7: Modify the panel password, if you want to change it to 123456
cd /www/server/panel && python tools.py panel 123456
8: View Pagoda log
cat /tmp/panelBoot.pl
For more Pagoda panel technical articles, please visit Pagoda Tutorial column!
The above is the detailed content of Some basic operations of the pagoda [Summary]. For more information, please follow other related articles on the PHP Chinese website!