The following is an introduction to the Linux server installation Pagoda and some pitfalls from the Pagoda Linux panel tutorial column. I hope it will be helpful to friends in need!
First run this command under linuxyum install -y wget && wget -O install.sh http://download.bt.cn/install/ install_6.0.sh && bash install.sh
Then wait for the security to be completed. When the installation is completed, your account and password will be displayed on the Linux panel. Don’t close it yet. Remember this account and password. password. This is the account number and password you will need to enter the pagoda interface later.
The first arrow points to the one you accessed on your local browser, but before accessing, Because mine is Alibaba Cloud Service, I first go to the Alibaba Cloud server and configure a security group
, which is probably similar to this, and then you copy the address. Accessed. Secondly, if you want to use phpmyadmin, you have to go to the security group to configure a port with port 888/888
2. After normal access, the interface will prompt you to install an environment. Just choose to install lamp and lnmp
, don’t worry about anything else
3. If a 10038 problem occurs when connecting to mysql on the server locally, you need to go to the server first
Log in to mysql
Execute the following two commands and change the username and password to your own
grant all privileges on *.* to '用户名'@'%' identified by '密码' with grant option; flush privileges;
For more programming related content, please pay attention to the php Chinese websiteIntroduction to Programming Column!
The above is the detailed content of Linux server installation pagoda and some pitfalls. For more information, please follow other related articles on the PHP Chinese website!