directadmin

ERROR 2002 (HY000): Can't connect to MySQL server on 'myserverIP' (115)

不打扰是莪最后的温柔 提交于 2020-03-06 09:44:52
问题 i was trying to access remotly to mysql mariaDB this is my my.cnf file # # This group is read both both by the client and the server # use it for options that affect everything # [client-server] # # include all files from the config directory # !includedir /etc/my.cnf.d [mysqld] #skip-networking #bind-address = <some ip-address> something missing in client-server section maybe ? i restarted mysqld with this command systemctl restart mysqld there's only one user (the one i used to connect from

How to point domain B tot domain A without redirect in directadmin keeping HTTPS/SSL?

半腔热情 提交于 2020-01-30 11:22:07
问题 I'd like to point bla.com to bla.org without a redirect using directadmin on a shared hosting. How would I do this? Are there things to consider regarding SEO? I use a ALIAS pointer at the moment (Domain pointer -> Create as an Alias). However if I type https://bla.com it won't work. 回答1: It's impossible to redirect from a https domain unless you provide a valid certificate for this domain in the first place. The certificate must match the domain you access even if you just want to redirect

2020国外VPS推荐,支持支付宝/微信付款

﹥>﹥吖頭↗ 提交于 2020-01-07 13:21:10
【推荐】2019 Java 开发者跳槽指南.pdf(吐血整理) >>> 购买国外VPS,绝大多数商家都只是支持信用卡和PayPal付款,如果国外VPS商家能支持“支付宝、微信”付款的话那就求之不得了。实际上,国外VPS商家也是有少量支持支付宝和微信付款的。主机测评这里收集了一些商家,仅供参考,需要代购之类联系我QQ:1178880677 bandwagonhost.com 10Gbps带宽,CN2 GIA线路,超快直连国内 IT7旗下VPS品牌,VPS具有一键备份VPS、一键转移机房等自动化功能,目前有:香港、洛杉矶( CN2 GT,CN2 GIA ),凤凰城,费利蒙,佛罗里达,荷兰,香港(三网直连,速度最好),这6个可选机房。适合个人建站等),可以支付宝,官方网站: www.bandwagonhost.com , 最新促销优惠戳这里 www.vultr.com ,按小时计费,多机房的云主机 choopa旗下VPS品牌,目前在全球有 16个机房 (包括日本、新加坡、美国等),基于KVM虚拟,1000M端口,纯SSD硬盘,免费50G备份,后台允许购买Windows系统的VPS,免费50G备份空间,支持Alipay( 支付宝 等)、PayPal等。官方网站: www.vultr. c om www.racknerd.com ,价格便宜、大流量 提供美国洛杉矶

how to install gitlab on a directadmin server

♀尐吖头ヾ 提交于 2019-12-24 20:53:31
问题 I have a VPS with directadmin and few other websites on it, i want to install gitlab without damaging other sites. currently tried but it will show up on all domains. it seems external_url is ignored completely. 回答1: it took me a day to figure out how to do it and i'm gonna share it with others, hope it helps! if you're a beginner like me you should know these two things: 1- all the configurations are in /etc/gitlab/gitlab.rb 2- every time you change gitlab.rb you have to run gitlab-ctl

“access denied for user” after moving MySQL database to remote server

◇◆丶佛笑我妖孽 提交于 2019-12-02 22:57:18
问题 I have some problems with accessing my database. The script worked before on my localhost. I imported it in another server and the other server is giving me an access denied message. The message that is given is: Access denied for user 'root'@'10.4.1.163' (using password: YES) The script I am using is: <?php // Connect to database server mysql_connect("localhost", "root", "password") or die (mysql_error ()); // Select database mysql_select_db("database") or die(mysql_error()); // SQL query

“access denied for user” after moving MySQL database to remote server

本小妞迷上赌 提交于 2019-12-02 13:12:28
I have some problems with accessing my database. The script worked before on my localhost. I imported it in another server and the other server is giving me an access denied message. The message that is given is: Access denied for user 'root'@'10.4.1.163' (using password: YES) The script I am using is: <?php // Connect to database server mysql_connect("localhost", "root", "password") or die (mysql_error ()); // Select database mysql_select_db("database") or die(mysql_error()); // SQL query $strSQL = "SELECT * FROM users WHERE user_id='". $_SESSION['USER_ID'] ."'"; // Execute the query (the